:root {
  --gold: #d4af37;
  --dark-gold: #b8941f;
  --light-gold: #f4e4bc;
  --black: #0a0a0a;
  --dark-bg: #1a1a1a;
  --light-text: #ffffff;
  --gray-text: #b8b8b8;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--black);
  color: var(--light-text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.age-notice {
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  color: var(--black);
  text-align: center;
  padding: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold) !important;
}

.nav-link {
  color: var(--gray-text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold) !important;
}

.btn-nav-register {
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  color: var(--black) !important;
  border-radius: 0.5rem;
  margin-left: 0.5rem;
  font-weight: 700;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-bg) 100%);
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  border: none;
  color: var(--black);
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 0.75rem;
}

.luxury-card {
  background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid var(--gold);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.card-amount {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
}

.section-title i {
  color: var(--gold);
}

.luxury-card-item {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-bg) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.luxury-card-item:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
}

.luxury-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--black);
}

.site-footer {
  background: var(--black);
  border-top: 2px solid var(--gold);
  padding: 4rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.site-footer p {
  color: var(--gray-text);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-text);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-img {
  max-width: 140px;
  height: auto;
  border-radius: 0.75rem;
  transition: var(--transition);
  opacity: 0.85;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem;
  background: rgba(212, 175, 55, 0.05);
}

.footer-img:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  border-color: var(--gold);
}

.footer-img-invert {
  background: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  filter: brightness(0.95);
}

.footer-bottom {
  color: var(--gray-text);
  font-size: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 3rem;
}

/* Membership Benefits Section */
.membership-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-bg) 100%);
  position: relative;
}

.membership-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.membership-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.membership-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.membership-header h2 i {
  color: var(--gold);
  margin-right: 1rem;
}

.membership-header p {
  font-size: 1.25rem;
  color: var(--gray-text);
}

.membership-tier {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.membership-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
  opacity: 0;
  transition: var(--transition);
}

.membership-tier:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.membership-tier:hover::before {
  opacity: 1;
}

.tier-badge {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-badge i {
  color: var(--gold);
  font-size: 1.25rem;
}

.tier-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--light-text);
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tier-features li {
  padding: 0.75rem 0;
  color: var(--gray-text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li i {
  color: var(--gold);
  font-size: 1.125rem;
  min-width: 20px;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--black) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.cta-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
  border: 2px solid var(--gold);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-box h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--light-text);
  position: relative;
  z-index: 1;
}

.cta-box h2 i {
  color: var(--gold);
  margin-right: 1rem;
}

.cta-box p {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.btn-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  border: none;
  color: var(--black);
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991px) {
  .membership-header h2 {
    font-size: 2.5rem;
  }
  
  .tier-title {
    font-size: 1.75rem;
  }
  
  .cta-box h2 {
    font-size: 2.25rem;
  }
  
  .membership-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  .membership-header h2 {
    font-size: 2rem;
  }
  
  .membership-tier {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .cta-box {
    padding: 3rem 2rem;
  }
  
  .cta-box h2 {
    font-size: 1.75rem;
  }
}

/* How It Works Section */
.steps-section {
  padding: 6rem 0;
  background: var(--black);
  position: relative;
}

.steps-header {
  text-align: center;
  margin-bottom: 5rem;
}

.steps-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.steps-header h2 i {
  color: var(--gold);
  margin-right: 1rem;
}

.steps-header p {
  font-size: 1.25rem;
  color: var(--gray-text);
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.steps-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps-icon-large {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  color: var(--black);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.5);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.steps-icon-large::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, var(--gold), var(--light-gold), var(--gold));
  border-radius: 2rem;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step-item {
  position: relative;
  padding-left: 0;
}

.step-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.step-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--light-text);
  font-family: 'Playfair Display', serif;
}

.step-description {
  font-size: 1.125rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.step-item::after {
  content: '';
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.step-item:last-child::after {
  display: none;
}

/* Additional Features Section */
.features-grid-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--black) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--light-gold) 50%, var(--gold) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--black);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.feature-card p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin: 0;
}

/* Responsive for Steps Section */
@media (max-width: 991px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .steps-icon-large {
    width: 250px;
    height: 250px;
    font-size: 8rem;
  }
  
  .steps-header h2 {
    font-size: 2.5rem;
  }
  
  .step-title {
    font-size: 1.75rem;
  }
  
  .steps-visual {
    order: -1;
  }
}

@media (max-width: 767px) {
  .steps-section {
    padding: 4rem 0;
  }
  
  .steps-header h2 {
    font-size: 2rem;
  }
  
  .steps-icon-large {
    width: 200px;
    height: 200px;
    font-size: 6rem;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
  
  .step-description {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}
