:root {
  --primary: #f43f5e;
  --primary-glow: rgba(244, 63, 94, 0.4);
  --secondary: #e11d48;
  --accent: #fb7185;
  --accent-glow: rgba(251, 113, 133, 0.3);
  --bg-start: #1c0a0d;
  --bg-mid: #2d1215;
  --bg-end: #0f0506;
  --card-bg: rgba(45, 18, 21, 0.6);
  --card-border: rgba(244, 63, 94, 0.2);
  --text: #ffffff;
  --text-muted: #d1d5db;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 5, 6, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

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

.logo-link {
  text-decoration: none;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.nav-menu a:hover {
  color: var(--primary);
  transform: scale(1.01);
}

.badge-18 {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 20px var(--primary-glow);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(28, 10, 13, 0.9) 0%, rgba(45, 18, 21, 0.8) 100%),
    url('/ban.jpeg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero p {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 8px 32px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 48px var(--primary-glow);
}

/* Section Styles */
.section {
  padding: 100px 20px;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Download Section */
.download-section {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.download-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.email-input {
  padding: 18px 24px;
  font-size: 16px;
  border: 2px solid var(--card-border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  transition: all 0.2s ease-in-out;
}

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

.success-message {
  display: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 24px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: scale(1.01);
  border-color: var(--primary);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

/* About Section */
.about-content {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 60px 40px;
  backdrop-filter: blur(10px);
}

.about-content h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.2s ease-in-out;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Point System Table */
.points-table {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 0;
  backdrop-filter: blur(10px);
}

.points-table table {
  width: 100%;
  border-collapse: collapse;
}

.points-table th {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 20px;
  text-align: left;
  font-weight: 700;
}

.points-table td {
  padding: 20px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-muted);
}

.points-table tr:last-child td {
  border-bottom: none;
}

.points-value {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.tip-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.tip-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 20px;
}

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

/* Footer */
.footer {
  background: rgba(15, 5, 6, 0.95);
  border-top: 2px solid var(--card-border);
  padding: 60px 20px 40px;
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.footer-links a:hover {
  color: var(--primary);
  transform: scale(1.01);
}

.footer-badge-large {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 16px 32px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 24px;
  display: inline-block;
  box-shadow: 0 0 32px var(--primary-glow);
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
}

/* Disclaimer Section */
.disclaimer-section {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  margin: 80px 20px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}

.disclaimer-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 24px;
}

.disclaimer-section p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Age Verification Modal */
.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

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

.age-modal-content {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-start));
  border: 3px solid var(--primary);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 80px var(--primary-glow);
}

.age-modal-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.age-modal-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.age-modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.age-button {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.age-button.confirm {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.age-button.decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.age-button:hover {
  transform: scale(1.01);
}

/* Privacy & Terms Pages */
.content-page {
  padding: 120px 20px 60px;
}

.content-page h1 {
  font-size: 48px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-page h2 {
  font-size: 32px;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-page p, .content-page li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-page ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: rgba(15, 5, 6, 0.98);
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    border-left: 2px solid var(--card-border);
  }

  .nav-menu.active {
    right: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .download-section {
    padding: 40px 24px;
  }

  .section {
    padding: 60px 20px;
  }

  .age-modal-content {
    margin: 20px;
    padding: 40px 24px;
  }

  .age-modal-buttons {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .points-table {
    overflow-x: auto;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }
}