/* ============================================
   rollzonebzz.cfd — Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Base Colors */
  --bg-primary: #140f1f;
  --bg-secondary: #1f1630;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.08);

  /* Accent Colors */
  --accent-primary: #fb7185;
  --accent-secondary: #c084fc;
  --accent-highlight: #facc15;
  --accent-mint: #34d399;
  --accent-peach: #fdba74;

  /* Text */
  --text-primary: #f8fafc;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;

  /* Gradients */
  --gradient-candy: linear-gradient(135deg, #fb7185, #c084fc, #facc15);
  --gradient-pink-purple: linear-gradient(135deg, #fb7185, #c084fc);
  --gradient-glow: linear-gradient(135deg, rgba(251, 113, 133, 0.3), rgba(192, 132, 252, 0.3));

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1400px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-normal);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

.text-gradient {
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-candy);
  color: #140f1f;
  box-shadow: 0 4px 20px rgba(251, 113, 133, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 113, 133, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 42px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 15, 31, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(251, 113, 133, 0.1);
  transition: background var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-highlight {
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-normal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-candy);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.hamburger-line {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--section-padding) 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(192, 132, 252, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(251, 113, 133, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(250, 204, 21, 0.04) 0%, transparent 50%),
              var(--bg-primary);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.12) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: floatParticle 15s linear infinite;
}

.particle-1 { left: 5%; animation-delay: 0s; animation-duration: 18s; }
.particle-2 { left: 15%; animation-delay: 2s; animation-duration: 22s; }
.particle-3 { left: 25%; animation-delay: 4s; animation-duration: 16s; }
.particle-4 { left: 40%; animation-delay: 1s; animation-duration: 20s; }
.particle-5 { left: 55%; animation-delay: 3s; animation-duration: 17s; }
.particle-6 { left: 65%; animation-delay: 5s; animation-duration: 21s; }
.particle-7 { left: 75%; animation-delay: 0.5s; animation-duration: 19s; }
.particle-8 { left: 85%; animation-delay: 2.5s; animation-duration: 23s; }
.particle-9 { left: 35%; animation-delay: 6s; animation-duration: 15s; }
.particle-10 { left: 50%; animation-delay: 7s; animation-duration: 24s; }
.particle-11 { left: 90%; animation-delay: 1.5s; animation-duration: 18s; }
.particle-12 { left: 10%; animation-delay: 4.5s; animation-duration: 20s; }

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

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-disclaimer {
  padding: 16px 24px;
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.15);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin: 0 auto;
}

.hero-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

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

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
  padding: var(--section-padding) 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(192, 132, 252, 0.06) 0%, transparent 60%),
              var(--bg-secondary);
}

.game-page-section {
  padding: var(--section-padding) 0 60px;
  background: radial-gradient(ellipse at 50% 30%, rgba(192, 132, 252, 0.06) 0%, transparent 60%),
              var(--bg-secondary);
}

.game-container {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(31, 22, 48, 0.8);
  border: 1px solid rgba(251, 113, 133, 0.15);
  box-shadow: 0 0 60px rgba(251, 113, 133, 0.1),
              0 0 120px rgba(192, 132, 252, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.game-container:hover {
  transform: scale(1.005);
  box-shadow: 0 0 80px rgba(251, 113, 133, 0.15),
              0 0 160px rgba(192, 132, 252, 0.08);
}

.game-container-full {
  width: 95%;
  max-width: 1300px;
}

.game-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: var(--gradient-candy);
  opacity: 0.15;
  z-index: -1;
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}

.game-iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius-xl);
  background: #0a0812;
}

.game-info {
  text-align: center;
  margin-top: 40px;
}

.game-disclaimer {
  text-align: center;
  margin-top: 40px;
  padding: 16px 24px;
  background: rgba(251, 113, 133, 0.06);
  border: 1px solid rgba(251, 113, 133, 0.1);
  border-radius: var(--radius-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.game-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Game Tips */
.game-tips-section {
  padding: 80px 0 var(--section-padding);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tip-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-normal);
}

.tip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 113, 133, 0.2);
  background: var(--surface-hover);
}

.tip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-candy);
  color: #140f1f;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
}

.tip-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.tip-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: var(--section-padding) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-candy);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 113, 133, 0.2);
  background: var(--surface-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 113, 133, 0.15);
  background: var(--surface-hover);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  background: var(--surface-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.review-name {
  font-size: 1rem;
  font-weight: 600;
}

.review-stars {
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-padding) 0;
}

.cta-box {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(251, 113, 133, 0.15);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

.cta-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(192, 132, 252, 0.06) 0%, transparent 60%),
              var(--bg-primary);
}

.page-hero-sm {
  padding: 140px 0 60px;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: var(--section-padding) 0;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.content-block p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-block ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-block ul li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
  position: relative;
  padding-left: 8px;
}

.content-block ul li::before {
  content: '•';
  color: var(--accent-primary);
  font-weight: bold;
  position: absolute;
  left: -16px;
}

.content-block a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(251, 113, 133, 0.3);
  transition: text-decoration-color var(--transition-normal);
}

.content-block a:hover {
  text-decoration-color: var(--accent-primary);
}

.content-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* Legal Content */
.legal-content .content-block {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--surface-border);
}

.legal-content .content-block:last-child {
  border-bottom: none;
}

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.about-feature-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.about-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 113, 133, 0.15);
}

.about-feature-card .feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.about-feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.about-feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   REWARDS PAGE
   ============================================ */
.rewards-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.reward-big-card {
  display: flex;
  gap: 30px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 30px;
  transition: all var(--transition-normal);
}

.reward-big-card:hover {
  border-color: rgba(251, 113, 133, 0.15);
  transform: translateY(-2px);
}

.reward-big-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.reward-big-content h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.reward-big-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.reward-list {
  padding-left: 0;
}

.reward-list li {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.reward-list li::before {
  content: none;
}

.rewards-disclaimer {
  margin-top: 40px;
  padding: 20px;
  background: rgba(251, 113, 133, 0.06);
  border: 1px solid rgba(251, 113, 133, 0.1);
  border-radius: var(--radius-md);
  text-align: center;
}

.rewards-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
}

.contact-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-links h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.contact-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-links a {
  color: var(--accent-primary);
  font-size: 0.95rem;
  transition: color var(--transition-normal);
}

.contact-links a:hover {
  color: var(--accent-secondary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.form-disclaimer a {
  color: var(--accent-primary);
}

.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.responsible-banner {
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

.responsible-banner-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.responsible-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.responsible-banner p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.responsible-facts {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.responsible-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: var(--radius-md);
}

.fact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.responsible-fact p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--surface-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-age {
  font-size: 0.9rem;
  color: var(--accent-primary);
  font-weight: 600;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-normal), padding-left var(--transition-normal);
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--surface-border);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Fade in animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-container {
    width: 95%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .reward-big-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 50px;
  }

  .header-inner {
    height: 70px;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 15, 31, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .game-container,
  .game-container-full {
    width: 100%;
    border-radius: var(--radius-md);
  }

  .game-iframe {
    border-radius: var(--radius-md);
  }

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

  .reward-big-card {
    padding: 28px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .cta-box {
    padding: 50px 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero-sm {
    padding: 120px 0 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .review-card {
    padding: 24px;
  }
}