:root {
  --black: #080c0a;
  --dark: #0d1410;
  --dark2: #111a14;
  --emerald: #00c97a;
  --emerald-dark: #009a5c;
  --emerald-dim: #00c97a22;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dim: #d4a01722;
  --white: #f5f5f0;
  --gray: #8a9a8e;
  --card-bg: #111a14;
  --border: #1e2e22;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0,0,0,0.7);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--gold-light);
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #ffe080 100%);
  color: #0a0a0a;
  box-shadow: 0 6px 30px rgba(212,160,23,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}

.btn-outline:hover {
  background: var(--emerald);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(0,201,122,0.35);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.pulse-btn {
  animation: pulseBtnAnim 2.5s infinite;
}

@keyframes pulseBtnAnim {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,160,23,0.35); }
  50% { box-shadow: 0 4px 40px rgba(212,160,23,0.7), 0 0 0 8px rgba(212,160,23,0.1); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8,12,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.main-nav a {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--white);
  background: var(--emerald-dim);
}

.header-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 8px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-parallax {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #0d2e1a 0%, #080c0a 70%);
  z-index: 0;
  will-change: transform;
}

.hero-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,201,122,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(212,160,23,0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(0,201,122,0.07) 0%, transparent 40%);
}

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

.particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-110vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dim), var(--emerald-dim));
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

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

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInDown 0.9s 0.1s ease both;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeInDown 1s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInDown 1s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 1s 0.4s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--emerald);
  display: inline;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInDown 1s 0.8s ease both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--emerald);
  border-bottom: 2px solid var(--emerald);
  transform: rotate(45deg);
  animation: bounceArrow 1.5s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

.connect-section {
  background: var(--dark);
}

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

.connect-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.connect-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  opacity: 0;
  transition: opacity var(--transition);
}

.connect-card:hover {
  border-color: var(--emerald);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,201,122,0.15);
}

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

.connect-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.connect-card p {
  color: var(--gray);
  font-size: 0.95rem;
  flex: 1;
}

.connect-icon {
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.gold-icon {
  background: var(--gold-dim);
  color: var(--gold-light);
}

.emerald-icon {
  background: var(--emerald-dim);
  color: var(--emerald);
}

.bonuses-section {
  background: var(--black);
}

.parallax-bg {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,201,122,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.bonuses-section .container {
  position: relative;
  z-index: 1;
}

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

.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}

.bonus-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212,160,23,0.15);
}

.bonus-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px 4px 12px;
  border-radius: 4px 0 0 4px;
  z-index: 2;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.emerald-ribbon {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: #fff;
}

.bonus-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bonus-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-body-full {
  padding: 48px 24px 24px;
}

.bonus-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.bonus-body p {
  color: var(--gray);
  font-size: 0.93rem;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-list li {
  color: var(--gray);
  font-size: 0.88rem;
  padding-left: 18px;
  position: relative;
}

.bonus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

.slots-section {
  background: var(--dark);
}

.slots-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #0a0a0a;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

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

.slot-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(212,160,23,0.2);
}

.slot-img-wrap {
  position: relative;
  overflow: hidden;
}

.slot-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slot-card:hover .slot-img-wrap img {
  transform: scale(1.06);
}

.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,12,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.slot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
}

.hot-badge {
  background: #e84040;
  color: #fff;
}

.new-badge {
  background: var(--emerald);
  color: #0a0a0a;
}

.jackpot-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0a;
}

.slot-info {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slot-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.slot-rtp {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 600;
}

.slots-more {
  text-align: center;
}

.advantages-section {
  background: var(--black);
}

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

.adv-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.adv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.adv-card:hover {
  border-color: var(--emerald);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,201,122,0.12);
}

.adv-card:hover::after {
  transform: scaleX(1);
}

.adv-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--emerald-dim);
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold-dim), var(--emerald-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.adv-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.adv-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

.guide-section {
  background: var(--dark);
}

.guide-parallax {
  background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(212,160,23,0.06) 0%, transparent 70%);
}

.guide-section .container {
  position: relative;
  z-index: 1;
}

.guide-h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 48px 0 20px;
  padding-left: 16px;
  border-left: 3px solid var(--emerald);
}

.guide-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0a;
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-top: 6px;
}

.step-text strong {
  color: var(--white);
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-list li {
  color: var(--gray);
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
}

.guide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.guide-block p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.strategy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.strategy-table th {
  background: linear-gradient(135deg, #0d2e1a, #111a14);
  color: var(--gold-light);
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.strategy-table td {
  padding: 12px 18px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

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

.strategy-table tr:hover td {
  background: var(--emerald-dim);
  color: var(--white);
}

.faq-section {
  background: var(--black);
  padding: 0;
}

.faq-full-width {
  width: 100%;
  padding: 90px 0;
}

.faq-list-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 48px 22px 32px;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  line-height: 1.5;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--emerald);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-q:hover {
  color: var(--gold-light);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
  padding: 0 32px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 32px 22px;
}

.faq-a p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.cta-section {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-parallax {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,160,23,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 30% 60%, rgba(0,201,122,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

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

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-inner p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 64px 0 40px;
}

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

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

.footer-desc {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.badge-18 {
  background: #e84040;
  color: #fff;
}

.badge-ssl {
  background: var(--emerald-dim);
  color: var(--emerald);
  border: 1px solid var(--emerald);
}

.badge-license {
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}

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

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.88rem;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

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

.responsible {
  color: var(--gray);
  font-size: 0.78rem;
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 900px;
}

.copyright {
  color: #4a5a4e;
  font-size: 0.78rem;
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0a;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  box-shadow: 0 6px 30px rgba(212,160,23,0.6);
  transform: translateY(-3px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(13,20,16,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: var(--gray);
  font-size: 0.85rem;
  flex: 1;
  min-width: 200px;
  line-height: 1.6;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.cookie-close:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .connect-grid,
  .bonuses-grid,
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .main-nav,
  .header-btns {
    display: none;
  }

  .burger {
    display: flex;
  }

  .connect-grid,
  .bonuses-grid,
  .adv-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-stats {
    gap: 24px;
  }

  .faq-q {
    padding: 18px 44px 18px 20px;
    font-size: 0.93rem;
  }

  .faq-q::after {
    right: 20px;
  }

  .faq-a {
    padding: 0 20px;
  }

  .faq-item.open .faq-a {
    padding: 0 20px 18px;
  }

  .guide-block {
    padding: 20px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .slots-grid {
    grid-template-columns: 1fr;
  }

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

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

  .scroll-top {
    bottom: 80px;
    right: 16px;
  }
}