/* ============================================
   POP! Slots DE — Global Styles
   Brand: Purple #3D1A8E | Pink #FF3B6E | Gold #FFB800
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Nunito:wght@400;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --brand-purple:    #4B1FBF;
  --brand-purple-d:  #2D0E80;
  --brand-purple-l:  #7B3FF5;
  --brand-pink:      #FF3B6E;
  --brand-pink-d:    #CC1F50;
  --brand-gold:      #FFB800;
  --brand-gold-d:    #CC8C00;
  --neon-glow:       #9B59F5;
  --bg-dark:         #0D0520;
  --bg-mid:          #160835;
  --bg-card:         #1E0E45;
  --bg-card-hover:   #271358;
  --text-white:      #FFFFFF;
  --text-light:      #E0D6FF;
  --text-muted:      #9B89C4;
  --border-subtle:   rgba(155, 89, 245, 0.2);
  --border-glow:     rgba(255, 59, 110, 0.4);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       22px;
  --radius-xl:       32px;
  --shadow-card:     0 8px 32px rgba(75, 31, 191, 0.3);
  --shadow-glow:     0 0 40px rgba(255, 59, 110, 0.25);
  --transition:      0.28s cubic-bezier(.4,0,.2,1);
  --max-width:       1200px;
  --header-h:        90px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-pink); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin-bottom: 1rem; color: var(--text-light); }
section { padding: 80px 0; }

/* ---- Accessibility ---- */
/* Skip to main */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand-pink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-to-main:focus { top: 8px; color: #fff; }

/* Focus outline for all interactive elements */
:focus-visible {
  outline: 3px solid var(--brand-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 8, 53, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 20px 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-banner p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 700px;
}
.cookie-banner p a { color: var(--brand-gold); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity var(--transition);
}
.cookie-accept:hover { opacity: 0.9; }
.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover { color: var(--text-white); border-color: var(--text-muted); }

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

/* ---- Gradient Backgrounds ---- */
.bg-gradient-main {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a0840 50%, var(--bg-dark) 100%);
}
.bg-gradient-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}
.bg-gradient-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, #241060 100%);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 59, 110, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(255, 59, 110, 0.55);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
}
.btn-secondary:hover {
  background: var(--brand-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--brand-gold) 0%, #FF8C00 100%);
  color: var(--bg-dark);
  box-shadow: 0 6px 24px rgba(255, 184, 0, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(255, 184, 0, 0.55);
  color: var(--bg-dark);
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-pink { background: rgba(255,59,110,0.15); color: var(--brand-pink); border: 1px solid rgba(255,59,110,0.3); }
.badge-gold { background: rgba(255,184,0,0.15); color: var(--brand-gold); border: 1px solid rgba(255,184,0,0.3); }
.badge-purple { background: rgba(155,89,245,0.15); color: var(--neon-glow); border: 1px solid rgba(155,89,245,0.3); }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-pink);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.gradient-text {
  background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155,89,245,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13, 5, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 60px; width: auto; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--brand-gold);
  background: rgba(255, 184, 0, 0.08);
}
.header-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile-only reg button in header */
.mobile-reg-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,59,110,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-white);
  border-radius: 4px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(13,5,32,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
  width: 260px;
  text-align: center;
}
.mobile-nav a:hover { background: rgba(255,59,110,0.12); color: var(--brand-pink); }
.mobile-nav .mobile-cta {
  margin-top: 16px;
  width: 260px;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 14px 20px;
  font-size: 1rem;
  white-space: normal;
  line-height: 1.3;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { color: var(--brand-gold); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text-white); }

/* Footer help list - label IS the clickable link */
.footer-help-list { display: flex; flex-direction: column; gap: 12px !important; }
.footer-help-list li { display: flex; flex-direction: column; }
.footer-link-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-block;
}
.footer-link-label:hover { color: var(--brand-gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }
.footer-disclaimer {
  background: rgba(255,184,0,0.05);
  border: 1px solid rgba(255,184,0,0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 28px;
}
.footer-disclaimer p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ---- Author Block ---- */
.author-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 60px 0 0;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--brand-purple-l);
}
.author-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--brand-purple-l);
}
.author-info { flex: 1; }
.author-info .author-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-pink);
  margin-bottom: 4px;
}
.author-info .author-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  text-decoration: none;
}
.author-info .author-name:hover { color: var(--brand-gold); }
.author-info .author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.author-info p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-section { background: var(--bg-gradient-section); }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-glow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(155,89,245,0.15);
  border: 1px solid rgba(155,89,245,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--neon-glow);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--brand-pink); border-color: var(--brand-pink); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-light); font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- Tables ---- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.styled-table thead th {
  background: linear-gradient(135deg, var(--brand-purple-d), var(--brand-purple));
  color: var(--text-white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.styled-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.styled-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.styled-table tbody tr { border-bottom: 1px solid var(--border-subtle); transition: background var(--transition); }
.styled-table tbody tr:hover { background: rgba(155,89,245,0.07); }
.styled-table tbody td { padding: 14px 20px; color: var(--text-light); vertical-align: middle; }
.styled-table tbody td:first-child { color: var(--text-white); font-weight: 600; }
.table-wrap { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); }

/* ---- Stats Row ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  transition: all var(--transition);
}
.stat-item:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ---- Rating Stars ---- */
.stars { color: var(--brand-gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ---- Progress Bars (for ratings) ---- */
.progress-bar-wrap { margin-bottom: 14px; }
.progress-bar-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.88rem; }
.progress-bar-label span:first-child { color: var(--text-light); }
.progress-bar-label span:last-child { color: var(--brand-gold); font-weight: 700; }
.progress-bar-track { width: 100%; height: 8px; background: rgba(155,89,245,0.15); border-radius: 4px; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--brand-purple-l), var(--brand-pink)); transition: width 1.2s ease; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--brand-gold); }
.breadcrumb .sep { color: var(--border-subtle); }
.breadcrumb .current { color: var(--brand-gold); font-weight: 600; }

/* ---- Hero ---- */
.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e0845 50%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,59,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(75,31,191,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,59,110,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,59,110,0.6); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-fade-up { animation: fadeInUp 0.7s ease forwards; opacity: 0; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll-triggered animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: 0;
}

/* ---- Feature Grid ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

/* game-card as <a> link reset */
a.game-card {
  text-decoration: none;
  color: var(--text-white);
  display: block;
  cursor: pointer;
}
a.game-card:hover { color: var(--text-white); }

/* ---- SEO Article ---- */
.article-content { max-width: 900px; margin: 0 auto; }
.article-content h2 { margin: 2rem 0 1rem; position: relative; padding-left: 18px; }
.article-content h2::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 60%;
  background: linear-gradient(180deg, var(--brand-pink), var(--brand-purple));
  border-radius: 2px;
}
.article-content h3 { margin: 1.6rem 0 0.8rem; color: var(--brand-gold); }
.article-content ul { list-style: disc; padding-left: 24px; margin-bottom: 1rem; }
.article-content ul li { color: var(--text-light); margin-bottom: 6px; }
.article-content .highlight-box {
  background: rgba(155,89,245,0.08);
  border-left: 4px solid var(--brand-purple-l);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.article-content .highlight-box p { margin: 0; }

/* ---- Two-col layout ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---- Neon Accent Line ---- */
.neon-line {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-gold));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ---- Check List ---- */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  min-width: 22px;
  background: var(--brand-pink);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 2px;
}

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  box-shadow: 0 4px 20px rgba(255,59,110,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); }

/* ---- Mobile CTA (header) ---- */
.mobile-header-cta {
  display: none;
}

/* catalog-game-card as <a> link reset */
a.catalog-game-card {
  text-decoration: none;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
a.catalog-game-card:hover { color: var(--text-white); }
a.catalog-game-card h3 { color: var(--text-white); }
a.catalog-game-card p { color: var(--text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .two-col { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-header-cta { display: block; }
  .mobile-reg-btn { display: inline-flex !important; }
  
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .three-col { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  
  /* Hero sections with images */
  .page-hero [style*="grid-template-columns:1fr 1fr"],
  .app-hero-layout,
  section [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .page-hero [style*="grid-template-columns:1fr 1fr"] > div:last-child,
  section [style*="grid-template-columns:1fr 1fr"] > div:last-child {
    display: none;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .author-block { flex-direction: column; align-items: center; text-align: center; }
  
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .stats-row { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .styled-table { font-size: 0.82rem; }
  .styled-table thead th, .styled-table tbody td { padding: 10px 12px; }
}
