/* ============================================
   FENIX CASINO — STYLES
   ============================================ */

:root {
  --bg-primary: #0a0e14;
  --bg-secondary: #0f1520;
  --bg-card: #131b28;
  --bg-card-hover: #1a2436;
  --bg-sidebar: #0c1018;
  --bg-header: rgba(10, 14, 20, 0.92);

  --accent: #d4522b;
  --accent-hover: #e06535;
  --accent-glow: rgba(212, 82, 43, 0.35);
  --accent-gradient: linear-gradient(135deg, #bf3a2a, #d4522b, #e87330);

  --text-primary: #ffffff;
  --text-secondary: #8a96a8;
  --text-muted: #4a5568;

  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(212, 82, 43, 0.3);

  --sidebar-width: 260px;
  --header-height: 64px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px var(--accent-glow);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
  filter: brightness(1.1);
}

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

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--text-muted) transparent;
}

.sidebar::-webkit-scrollbar {
  width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar-logo a {
  display: block;
  line-height: 0;
}

.logo-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.sidebar-nav {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.nav-item.active {
  color: var(--text-primary);
  background: rgba(232, 138, 26, 0.08);
}

.nav-item.active::before {
  height: 24px;
}

.nav-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-item.active .nav-icon {
  opacity: 1;
  stroke: var(--accent);
}

/* ============================================
   SIDEBAR OVERLAY (Mobile)
   ============================================ */

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  backdrop-filter: blur(4px);
}

/* ============================================
   MAIN WRAPPER
   ============================================ */

.main-wrapper {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: var(--header-height);
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-register {
  padding: 9px 22px;
  border-radius: 24px;
  font-size: 13px;
}

.btn-login {
  padding: 9px 18px;
  border: none;
  font-size: 13px;
  color: var(--text-secondary);
}

.btn-login:hover {
  color: var(--text-primary);
  border-color: transparent;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.social-vk {
  background: rgba(39, 135, 245, 0.12);
  color: #4a9af5;
  border: 1px solid rgba(39, 135, 245, 0.2);
}

.social-vk:hover {
  background: rgba(39, 135, 245, 0.2);
}

.social-tg {
  background: rgba(36, 161, 222, 0.12);
  color: #24a1de;
  border: 1px solid rgba(36, 161, 222, 0.2);
}

.social-tg:hover {
  background: rgba(36, 161, 222, 0.2);
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
  padding: 20px 24px 4px;
}

.intro-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.intro-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 860px;
}

.intro-text strong {
  color: var(--accent);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  margin: 20px 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 2px transparent,
    0 0 32px rgba(212, 82, 43, 0.2),
    0 4px 24px rgba(0, 0, 0, 0.5);
  background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
              linear-gradient(135deg, #bf3a2a 0%, #e87330 50%, #bf3a2a 100%) border-box;
  border: 2px solid transparent;
}

.hero-content {
  display: flex;
  align-items: center;
  padding: 48px 48px;
  min-height: 320px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(232, 138, 26, 0.15);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 0%, #ddd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-desc .highlight {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.hero-promo {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.promo-code {
  font-weight: 700;
  color: var(--accent);
  background: rgba(232, 138, 26, 0.1);
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-hero {
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 14px;
}

.hero-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.hero-banner-img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  margin-right: -12px;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 14, 20, 0.92) 0%,
    rgba(10, 14, 20, 0.75) 40%,
    rgba(10, 14, 20, 0.4) 65%,
    rgba(10, 14, 20, 0.15) 100%
  );
}


/* ============================================
   PROMO CARDS
   ============================================ */

.promo-section {
  padding: 0 24px 8px;
}

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

.promo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.promo-card-bg {
  position: absolute;
  inset: 0;
}

.promo-freespins .promo-card-bg {
  background: linear-gradient(135deg, #0f1a2e 0%, #162840 50%, #1e3555 100%);
}

.promo-cashback .promo-card-bg {
  background: linear-gradient(135deg, #1a2a0a 0%, #2a4a1a 50%, #3a6a2a 100%);
}

.promo-codes .promo-card-bg {
  background: linear-gradient(135deg, #3a1a0a 0%, #5a2a1a 50%, #8a3a1a 100%);
}

.promo-card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.promo-card-value {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 30px var(--accent-glow);
}

.promo-card-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-top: 6px;
}

.promo-card-title {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.promo-card-percent {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 30px var(--accent-glow);
}

/* ============================================
   GAMES SECTION
   ============================================ */

.games-section {
  padding: 24px 24px 0;
}

.games-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-secondary);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  width: fit-content;
  margin-bottom: 20px;
}

.game-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.game-tab:hover {
  color: var(--text-primary);
}

.game-tab.active {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 2px 8px var(--accent-glow);
}

.tab-icon {
  width: 16px;
  height: 16px;
}

.game-tab.active .tab-icon {
  stroke: #fff;
}

.games-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.games-category {
  margin-bottom: 36px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.category-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.show-all-link {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  transition: var(--transition);
}

.show-all-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.game-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-accent);
}

.game-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.game-card:hover .game-img {
  transform: scale(1.06);
  filter: brightness(0.6);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.btn-play {
  padding: 6px 22px;
  border-radius: 16px;
  font-size: 11px;
}

.btn-demo {
  padding: 5px 16px;
  border-radius: 16px;
  font-size: 10px;
}

.game-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
}

.badge-new {
  background: var(--accent-gradient);
  color: #fff;
}

.game-card-info {
  padding: 8px 10px 10px;
}

.game-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 10px;
  color: var(--text-muted);
}

/* ============================================
   SEO SECTION
   ============================================ */

.seo-section {
  padding: 48px 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.seo-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, #e87330 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.seo-text {
  margin-bottom: 32px;
}

.seo-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.btn-cta {
  padding: 14px 40px;
  border-radius: 28px;
  font-size: 15px;
  border: 2px solid var(--accent);
}

/* ============================================
   BONUSES SECTION
   ============================================ */

.bonuses-section {
  padding: 0 24px 48px;
}

/* ============================================
   PROVIDERS SECTION
   ============================================ */

.providers-section {
  padding: 24px 24px 40px;
  border-top: 1px solid var(--border);
}

.providers-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 40px;
}

.provider-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  opacity: 0.5;
}

.provider-logo:hover {
  opacity: 1;
  color: var(--text-secondary);
}

/* ============================================
   INFO SECTIONS (Mirror, Promo, Payments)
   ============================================ */

.info-section {
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.info-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.info-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.info-text p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.info-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.info-text ul,
.seo-text ul,
.faq-list-inline {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  text-align: left;
}

.info-text ul li,
.seo-text ul li,
.faq-list-inline li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 4px;
  text-align: left;
}

.info-text ul li::before,
.seo-text ul li::before,
.faq-list-inline li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.info-section .btn-cta {
  margin-top: 12px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--border-accent);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-toggle:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}

.faq-item.open .faq-icon {
  color: var(--accent);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  text-align: left;
}

.faq-item.open .faq-body {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #080c12 100%);
  border-top: 1px solid var(--border);
  padding: 48px 24px 28px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(212, 82, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  width: 130px;
  height: auto;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: rgba(212, 82, 43, 0.12);
  border-color: var(--border-accent);
  color: var(--accent);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 2px 0;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.age-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #c43a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #c43a2a;
  flex-shrink: 0;
}

.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section,
.promo-section,
.games-section,
.seo-section,
.bonuses-section {
  animation: fadeInUp 0.6s ease-out;
}

.promo-card {
  animation: fadeInUp 0.6s ease-out;
}

.promo-card:nth-child(2) { animation-delay: 0.1s; }
.promo-card:nth-child(3) { animation-delay: 0.2s; }

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

@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-overlay.active {
    display: block;
  }

  .main-wrapper {
    margin-left: 0;
  }

  .burger-btn {
    display: flex;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content {
    padding: 36px 32px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-banner-img {
    max-height: 220px;
  }
}

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

  .header-social {
    display: none;
  }

  .hero-section {
    margin: 12px 16px;
  }

  .hero-content {
    padding: 32px 24px;
    flex-direction: column;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-img-wrap {
    margin-top: 24px;
  }

  .hero-banner-img {
    max-height: 180px;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(10, 14, 20, 0.9) 0%,
      rgba(10, 14, 20, 0.6) 50%,
      rgba(10, 14, 20, 0.2) 100%
    );
  }

  .promo-section {
    padding: 0 16px 8px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promo-card {
    min-height: 110px;
  }

  .games-section {
    padding: 20px 16px 0;
  }

  .games-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .seo-section {
    padding: 36px 16px;
  }

  .seo-title {
    font-size: 18px;
  }

  .bonuses-section {
    padding: 0 16px 36px;
  }

  .footer {
    padding: 36px 16px 24px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

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

  .promo-card-value {
    font-size: 32px;
  }

  .promo-card-percent {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .btn-register {
    padding: 8px 16px;
    font-size: 12px;
  }

  .btn-login {
    padding: 8px 12px;
    font-size: 12px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .game-name {
    font-size: 10px;
  }

  .hero-content {
    min-height: auto;
    padding: 24px 20px;
  }

  .hero-title {
    font-size: 20px;
  }

  .hero-banner-img {
    max-height: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }
}

/* ============================================
   SCROLLBAR GLOBAL
   ============================================ */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* ============================================
   SELECTION
   ============================================ */

::selection {
  background: var(--accent);
  color: #fff;
}
