/* ============================================
   Cut N Crash - Candy-Themed Crash Game Site
   Light Blue + Neon Pink Design
   ============================================ */

/* CSS Variables */
:root {
  --sky-blue: #B8E8F5;
  --sky-blue-dark: #87CEEB;
  --sky-blue-light: #DCF0F8;
  --neon-pink: #FF6EC7;
  --neon-pink-dark: #FF1493;
  --neon-pink-light: #FFB8E0;
  --white: #FFFFFF;
  --dark-text: #1a1a2e;
  --medium-text: #4a4a68;
  --light-text: #6b6b8a;
  --yellow-accent: #FFD700;
  --orange-accent: #FF8C42;
  --green-accent: #4CAF50;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-neon: 0 0 20px rgba(255,110,199,0.4);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, var(--sky-blue-light) 0%, var(--sky-blue) 100%);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Cloud Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/bg-clouds.webp') repeat;
  background-size: 800px auto;
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

/* Floating Candy Decorations */
.candy-float {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  animation: float 20s ease-in-out infinite;
}

.candy-float img {
  width: 120px;
  height: auto;
}

.candy-float:nth-child(1) { top: 10%; left: 2%; animation-delay: 0s; }
.candy-float:nth-child(2) { top: 30%; right: 3%; animation-delay: -5s; }
.candy-float:nth-child(3) { top: 60%; left: 5%; animation-delay: -10s; }
.candy-float:nth-child(4) { top: 80%; right: 5%; animation-delay: -15s; }

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--dark-text); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--medium-text); }
h4 { font-size: 1.1rem; color: var(--medium-text); }

p {
  margin-bottom: 1rem;
  color: var(--medium-text);
  font-size: 1.05rem;
}

a {
  color: var(--neon-pink-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--neon-pink);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--neon-pink);
  color: var(--white);
  padding: 8px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(184, 232, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--neon-pink-light);
  box-shadow: 0 2px 20px rgba(255, 110, 199, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark-text);
  text-shadow: 0 0 10px rgba(255, 110, 199, 0.3);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--dark-text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: var(--transition);
}

.nav-desktop a:hover {
  background: var(--neon-pink-light);
  color: var(--dark-text);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--medium-text);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.lang-switcher a:hover {
  background: var(--neon-pink-light);
  color: var(--dark-text);
}

.lang-switcher a.active {
  background: var(--neon-pink);
  color: var(--white);
  border-color: var(--neon-pink-dark);
}

.lang-flag {
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark-text);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-pink-dark));
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-neon);
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.hero h1 span {
  color: var(--neon-pink-dark);
  text-shadow: 0 0 15px rgba(255, 110, 199, 0.4);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--medium-text);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 1rem 1.8rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--neon-pink-light);
  min-width: 140px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neon-pink-dark);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-pink-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4), var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5), 0 0 30px rgba(255, 110, 199, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--yellow-accent), var(--orange-accent));
  color: var(--dark-text);
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
  color: var(--dark-text);
}

.btn-outline {
  background: transparent;
  color: var(--neon-pink-dark);
  border: 2px solid var(--neon-pink);
}

.btn-outline:hover {
  background: var(--neon-pink);
  color: var(--white);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 3.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Card Style */
.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 110, 199, 0.15);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(255, 110, 199, 0.3);
}

/* ============================================
   GAME INFO TABLE
   ============================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.info-table th,
.info-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 110, 199, 0.15);
}

.info-table th {
  background: linear-gradient(135deg, var(--neon-pink-light), rgba(255, 110, 199, 0.2));
  font-weight: 700;
  color: var(--dark-text);
  width: 35%;
}

.info-table td {
  color: var(--medium-text);
  font-weight: 600;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td {
  background: rgba(255, 110, 199, 0.05);
}

/* ============================================
   HOW TO PLAY STEPS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--border-radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 110, 199, 0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--neon-pink-light);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-pink-dark));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.step-card h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.step-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--border-radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 110, 199, 0.12);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--neon-pink-light);
}

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

.feature-card h4 {
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   GAME SYMBOLS
   ============================================ */
.symbols-category {
  margin-bottom: 2.5rem;
}

.symbols-category h3 {
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--neon-pink-light);
  display: inline-block;
}

.symbols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}

.symbol-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--border-radius);
  padding: 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 110, 199, 0.1);
  transition: var(--transition);
}

.symbol-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
  border-color: var(--neon-pink-light);
}

.symbol-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border-radius: 12px;
}

.symbol-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--dark-text);
}

.symbol-card p {
  font-size: 0.8rem;
  color: var(--light-text);
  margin-bottom: 0;
}

/* ============================================
   CASINO SECTION
   ============================================ */
.casino-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,230,245,0.95));
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--neon-pink-light);
  text-align: center;
  margin-top: 2rem;
}

.casino-card img {
  max-width: 400px;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-medium);
}

.casino-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.casino-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--medium-text);
}

/* ============================================
   SIMILAR GAMES TABLE
   ============================================ */
.games-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.games-table th,
.games-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 110, 199, 0.15);
}

.games-table th {
  background: linear-gradient(135deg, var(--neon-pink-light), rgba(255, 110, 199, 0.2));
  font-weight: 700;
  color: var(--dark-text);
}

.games-table td {
  color: var(--medium-text);
}

.games-table tr:hover td {
  background: rgba(255, 110, 199, 0.05);
}

/* ============================================
   DEMO & APP SECTIONS
   ============================================ */
.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 110, 199, 0.12);
  margin-top: 2rem;
}

.showcase-card img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  width: 100%;
}

.showcase-content h3 {
  margin-bottom: 1rem;
}

.showcase-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.showcase-content li {
  margin-bottom: 0.5rem;
  color: var(--medium-text);
}

/* ============================================
   LEGAL & VERDICT
   ============================================ */
.verdict-box {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
  border: 2px solid var(--green-accent);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-top: 1.5rem;
}

.verdict-box.legal-yes {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(76, 175, 80, 0.05));
  border-color: var(--green-accent);
}

.verdict-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-accent);
  margin-bottom: 1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 110, 199, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--neon-pink-light);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 110, 199, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--neon-pink);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.2rem;
  max-height: 500px;
}

/* ============================================
   PLAY BUTTONS SECTION
   ============================================ */
.play-section {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 110, 199, 0.1), rgba(255, 20, 147, 0.1));
  border-radius: var(--border-radius-lg);
  margin: 2rem auto;
  max-width: 1100px;
  border: 2px solid rgba(255, 110, 199, 0.2);
}

.play-buttons-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 1));
  color: #b0b0c8;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.footer-brand span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

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

.footer-section a {
  color: #b0b0c8;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

.footer-contact p {
  color: #b0b0c8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--neon-pink-light);
}

.footer-contact a:hover {
  color: var(--neon-pink);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: #8888a8;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #8888a8;
  margin-bottom: 0;
}

.responsible-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.responsible-links a {
  font-size: 0.8rem;
  color: #8888a8;
}

/* ============================================
   NAV TABLE OF CONTENTS
   ============================================ */
.toc {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 110, 199, 0.12);
  margin: 2rem auto;
  max-width: 1100px;
}

.toc h3 {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.toc ul {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
}

.toc li {
  margin-bottom: 0.5rem;
  break-inside: avoid;
}

.toc a {
  color: var(--medium-text);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc a:hover {
  color: var(--neon-pink-dark);
}

.toc a::before {
  content: '🍬';
  font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-desktop {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
  }

  .nav-desktop.active {
    display: flex;
  }

  .nav-desktop a {
    padding: 0.6rem 1rem;
    width: 100%;
    text-align: center;
  }

  .lang-switcher {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero {
    padding: 2.5rem 1rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item {
    min-width: 100px;
    padding: 0.8rem 1.2rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .showcase-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase-card img {
    order: -1;
  }

  .toc ul {
    columns: 1;
  }

  .symbols-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }

  .play-buttons-grid {
    gap: 0.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }

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

  .stat-item {
    width: 100%;
    max-width: 200px;
  }

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

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

  .info-table th,
  .info-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .card {
    padding: 1.2rem;
  }

  .casino-card {
    padding: 1.5rem;
  }

  .play-section {
    padding: 2rem 1rem;
  }
}

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

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Accessibility - Respect user preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--neon-pink);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: var(--neon-pink-light);
  color: var(--dark-text);
}
