/* CSS Reset & Variables */
:root {
  --primary: #8b5cf6;
  --primary-glow: rgba(139, 92, 246, 0.5);
  --secondary: #7c3aed;
  --accent: #c4b5fd;
  --accent-glow: rgba(196, 181, 253, 0.3);
  --bg-start: #0d0221;
  --bg-mid: #1e0a3a;
  --bg-end: #080114;
  --card-bg: rgba(30, 10, 58, 0.7);
  --card-border: rgba(139, 92, 246, 0.25);
  --gold: #d4af37;
  --gold-light: #f4e4a6;
  --white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-dim: rgba(255, 255, 255, 0.7);
}

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

body {
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  font-weight: 400;
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-mid) 50%, var(--bg-end) 100%);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(13, 2, 33, 0.85);
  border-bottom: 1px solid var(--card-border);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.badge-18 {
  background: var(--gold);
  color: var(--bg-start);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('ban.jpg') center/cover;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 2, 33, 0.8) 0%, rgba(30, 10, 58, 0.9) 50%, rgba(8, 1, 20, 0.8) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--primary-glow) 0%, transparent 70%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: float 3s ease-in-out infinite;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-start);
  animation: pulse 2s ease-in-out infinite;
}

.btn-secondary {
  background: var(--card-bg);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 30px var(--primary-glow);
}

.btn:active {
  transform: scale(0.98);
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px var(--primary-glow);
  border-color: var(--primary);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* VIP Membership Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tier-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.tier-card:hover {
  transform: scale(1.05);
}

.tier-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tier-bronze .tier-badge { background: linear-gradient(135deg, #cd7f32, #b87333); }
.tier-silver .tier-badge { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); }
.tier-gold .tier-badge { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--bg-start); }
.tier-platinum .tier-badge { background: linear-gradient(135deg, #e5e4e2, #d4d4d4); }

.tier-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.tier-card ul {
  list-style: none;
  margin: 1rem 0;
  text-align: left;
}

.tier-card li {
  padding: 0.5rem 0;
  color: var(--text-dim);
  position: relative;
  padding-left: 1.5rem;
}

.tier-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Email Form */
.email-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid var(--card-border);
  background: var(--card-bg);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.email-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.email-form button {
  padding: 1rem 2rem;
}

/* Location Section */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.map-placeholder {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}

.contact-info {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
}

.contact-info h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 30px;
}

/* Age Verification Modal */
.age-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.age-modal.active {
  display: flex;
}

.age-modal-content {
  background: linear-gradient(135deg, var(--bg-start), var(--bg-mid));
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.age-modal-content h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.age-modal-content p {
  margin-bottom: 2rem;
  color: var(--text-dim);
  font-size: 1.1rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Disclaimer Section */
.disclaimer {
  background: rgba(139, 92, 246, 0.1);
  border-top: 2px solid var(--card-border);
  border-bottom: 2px solid var(--card-border);
  padding: 3rem 0;
  text-align: center;
}

.disclaimer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.disclaimer-icon {
  font-size: 4rem;
  color: var(--gold);
}

.disclaimer h3 {
  font-size: 2rem;
  color: var(--gold);
}

.disclaimer p {
  max-width: 800px;
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--bg-end), var(--bg-start));
  border-top: 1px solid var(--card-border);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-logo {
  font-size: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.footer-badge-18 {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-start);
  padding: 1rem 2rem;
  border-radius: 50%;
  font-weight: 900;
  font-size: 2rem;
  margin: 1rem 0;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6); }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Content Pages */
.content-page {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
}

.content-page h1 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}

.content-page h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-page p {
  margin-bottom: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.content-page ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-dim);
}

.content-page li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: rgba(13, 2, 33, 0.98);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    align-items: flex-start;
    border-left: 1px solid var(--card-border);
    transition: right 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .age-modal-content {
    margin: 1rem;
    padding: 2rem;
  }
  
  .email-form {
    flex-direction: column;
  }
  
  .email-form input,
  .email-form button {
    width: 100%;
  }
}