* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #0a0a0a;
  color: #ffffff;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 0 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #121212;
  padding: 18px 26px;
  border-radius: 18px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 215, 0, 0.08);
  flex-wrap: wrap;
  gap: 15px;
}

.logo img {
  height: 54px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #f5f5f5;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #f2c94c;
}

.hero {
  background: linear-gradient(135deg, #161616 0%, #1d1d1d 55%, #232323 100%);
  border-radius: 24px;
  padding: 60px 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(242, 201, 76, 0.09);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.08);
  top: -80px;
  right: -70px;
  filter: blur(10px);
}

.hero-logo {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.hero-logo img {
  height: 74px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  color: #dddddd;
  margin-bottom: 28px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.access-note {
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 760px;
  position: relative;
  z-index: 2;
  color: #f2c94c;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-right: 12px;
  margin-bottom: 10px;
  transition: 0.2s ease;
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: #f2c94c;
  color: #101010;
}

.btn-primary:hover {
  background: #ffd95e;
}

.btn-secondary {
  background: #ffffff;
  color: #101010;
}

.btn-secondary:hover {
  background: #f0f0f0;
}

.section {
  background: #141414;
  padding: 28px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.section h2 {
  font-size: 26px;
  margin-bottom: 14px;
  color: #f2c94c;
}

.section p,
.section li {
  color: #dedede;
  font-size: 15px;
  line-height: 1.8;
}

.section ul,
.section ol {
  padding-left: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.info-card {
  background: #141414;
  border: 1px solid rgba(242, 201, 76, 0.06);
  padding: 24px;
  border-radius: 18px;
}

.info-card h3 {
  color: #f2c94c;
  margin-bottom: 12px;
  font-size: 19px;
}

.info-card p {
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.8;
}

/* Added for footer links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 14px 10px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links a {
  color: #f2c94c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  color: #9f9f9f;
  padding: 24px 0 8px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-logo img {
    height: 62px;
  }
}