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

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

:root {
  --c-header: #2A3040;
  --c-footer: #2A3040;
  --c-bg: #1C202D;
  --c-btn-primary: #63D377;
  --c-btn-secondary: #2A3040;
  --c-text: #E8EAF0;
  --c-text-muted: #9BA3B8;
  --c-border: rgba(255,255,255,0.08);
  --c-card: #232838;
  --c-card2: #252b3a;
  --c-accent: #63D377;
  --c-accent-dark: #4ab862;
  --c-gold: #f0c040;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
}

html { scroll-behavior: smooth; background: var(--c-bg); }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent-dark); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: #fff;}
p { color: var(--c-text); line-height: 1.7; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--c-btn-primary); color: #0f1520; }
.btn--primary:hover { background: #74e589; box-shadow: 0 6px 22px rgba(99,211,119,0.4); color: #0f1520; }
.btn--secondary { background: var(--c-btn-secondary); color: #fff; border: 1px solid rgba(255,255,255,0.12); }
.btn--secondary:hover { background: #333c50; color: #fff; }
.btn--lg { padding: 14px 32px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 14px;
  min-height: 66px;
  justify-content: space-between;
}
.header-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-logo img { height: 42px; width: auto; border-radius: 6px; }
.header-logo .logo-text { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: 0.02em; }
.header-logo .logo-text span { color: var(--c-accent); }

.header-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  color: #c2cde0;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.header-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

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

.online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  padding: 5px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  white-space: nowrap;
}
.online-dot {
  width: 7px; height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 23px;
  height: 2px;
  background: #c2cde0;
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 14px 0 20px;
  flex-direction: column;
  z-index: 950;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 14px;
  color: #c2cde0;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.mobile-menu a svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-menu-divider { height: 1px; background: var(--c-border); margin: 6px 0; }
.mobile-menu-actions { display: flex; gap: 10px; padding: 10px 20px 0; flex-wrap: wrap; }
.mobile-menu-actions .btn { flex: 1; min-width: 130px; }

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/img/the-pokies-net-hero.webp') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,32,45,0.94) 0%, rgba(28,32,45,0.65) 100%);
}
.hero .container { position: relative; z-index: 1; padding: 56px 20px; }
.hero-content { display: flex; align-items: flex-start; gap: 36px; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 260px; }
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,211,119,0.14);
  color: var(--c-accent);
  border: 1px solid rgba(99,211,119,0.28);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-text h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); color: #fff; margin-bottom: 16px; text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.hero-text p { color: rgba(255,255,255,0.78); font-size: 15px; margin-bottom: 26px; max-width: 500px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-bonus-card,
.bonus-card {
  background: rgba(42,48,64,0.92);
  border: 1px solid rgba(99,211,119,0.28);
  border-radius: var(--radius);
  padding: 26px 24px;
  min-width: 240px;
  max-width: 290px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  animation: fadeInRight 0.65s ease;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-bonus-card .bc-label,
.bonus-card .bonus-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.hero-bonus-card .bc-amount,
.bonus-card .bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-bonus-card .bc-desc,
.bonus-card .bonus-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.hero-bonus-card .bc-plus,
.bonus-card .bonus-plus {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.hero-bonus-card .bc-note,
.bonus-card .bonus-note {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 10px;
}
.bonus-card .btn {
  margin-top: 4px;
}

.breadcrumbs-wrap {
  background: rgba(42,48,64,0.45);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  list-style: none;
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: '/'; color: var(--c-text-muted); }
.breadcrumbs a { color: var(--c-text-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs .bc-current { color: var(--c-text); font-weight: 600; }

.section { padding: 52px 0; }
.section + .section { padding-top: 0; }

.section-head,
.section-title {
  margin-bottom: 32px;
  padding: 0;
}
.section-head h2,
.section-title h2 {
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  margin-bottom: 8px;
}
.section-head p,
.section-title p {
  color: var(--c-text-muted);
  font-size: 14px;
  max-width: 580px;
}

.section-divider,
.divider {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.advantages-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.adv-card {
  flex: 1;
  min-width: 175px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(99,211,119,0.28); }
.adv-icon {
  width: 46px; height: 46px;
  background: rgba(99,211,119,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-icon svg { width: 24px; height: 24px; color: var(--c-accent); }
.adv-card h3 { font-size: 14px; margin: 0; color: #fff; }
.adv-card p { font-size: 13px; color: var(--c-text-muted); margin: 0; line-height: 1.6; }

.app-section .container > .app-inner {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px;
}

.app-section-inner {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px;
}
.app-inner { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.app-table-wrap { flex: 1; min-width: 280px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.app-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 260px; }
.app-table th, .app-table td { padding: 11px 15px; text-align: left; border: 1px solid var(--c-border); vertical-align: top; }
.app-table th { background: rgba(99,211,119,0.09); color: var(--c-accent); font-weight: 700; font-size: 12.5px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em; }
.app-table tr:nth-child(even) td { background: rgba(255,255,255,0.025); }
.app-table td:first-child { color: var(--c-text-muted); font-weight: 600; width: 40%; }
.app-table td:last-child { color: #fff; font-weight: 500; }

.app-buttons { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }

.app-store-btn,
.app-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.app-store-btn:hover,
.app-btn:hover {
  border-color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99,211,119,0.18);
  color: inherit;
}
.app-store-btn svg,
.app-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--c-accent);
}
.app-store-btn .asb-sub,
.app-btn .app-btn-sub,
.app-btn-text .app-btn-sub {
  font-size: 11px;
  color: var(--c-text-muted);
  display: block;
}
.app-store-btn .asb-name,
.app-btn .app-btn-name,
.app-btn-text .app-btn-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.bonuses-grid { display: flex; gap: 18px; flex-wrap: wrap; }
.bonus-tile {
  flex: 1;
  min-width: 220px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--c-accent); }
.bonus-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bonus-tile .bt-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-accent); }
.bonus-tile .bt-amount { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1.1; }
.bonus-tile .bt-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; flex: 1; }
.bonus-tile .bt-terms { font-size: 11px; color: var(--c-text-muted); margin-top: 6px; }

.games-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.game-card {
  flex: 1;
  min-width: 175px;
  max-width: calc(33.333% - 13px);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.game-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-thumb img { transform: scale(1.06); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.game-info h3 { font-size: 14px; margin: 0; color: #fff; }
.game-info .game-provider { font-size: 12px; color: var(--c-text-muted); }
.game-actions { display: flex; gap: 7px; margin-top: auto; }
.game-actions .btn { flex: 1; font-size: 12px; padding: 7px 10px; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.28s ease;
}
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--c-border); flex-shrink: 0; }
.modal-header h3 { font-size: 15px; margin: 0; }
.modal-close { background: none; border: none; color: var(--c-text-muted); cursor: pointer; padding: 4px 6px; font-size: 20px; line-height: 1; transition: color var(--transition); }
.modal-close:hover { color: #fff; }
.modal-body { flex: 1; overflow: auto; min-height: 0; }
.modal-body iframe { width: 100%; height: 480px; border: none; display: block; }
.modal-footer { padding: 13px 20px; border-top: 1px solid var(--c-border); display: flex; justify-content: center; flex-shrink: 0; }

.slider-container { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 18px; transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1); }
.slider-nav { display: none; justify-content: center; gap: 7px; margin-top: 14px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); cursor: pointer; transition: background var(--transition), transform var(--transition); border: none; padding: 0; }
.slider-dot.active { background: var(--c-accent); transform: scale(1.3); }
.slider-arrows { display: none; justify-content: center; gap: 10px; margin-top: 12px; }
.slider-arrow { background: var(--c-card); border: 1px solid var(--c-border); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color var(--transition), background var(--transition); }
.slider-arrow:hover { border-color: var(--c-accent); background: rgba(99,211,119,0.1); }
.slider-arrow svg { width: 14px; height: 14px; }

.review-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.review-block p { color: var(--c-text); margin-bottom: 14px; line-height: 1.8; }
.review-block h2, .review-block h3, .review-block h4 { margin-top: 26px; margin-bottom: 12px; color: #fff; }
.review-block h2 { font-size: clamp(1.15rem,3vw,1.5rem); }
.review-block h3 { font-size: clamp(1rem,2.5vw,1.25rem); color: #e0e8f0; }
.review-block h4 { font-size: 1rem; color: var(--c-accent); }
.review-block ul, .review-block ol { padding-left: 22px; margin-bottom: 14px; color: var(--c-text); line-height: 1.8; }
.review-block li { margin-bottom: 6px; }
.review-block table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 14px; display: block; overflow-x: auto; }
.review-block table th { background: rgba(99,211,119,0.1); color: var(--c-accent); padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); }
.review-block table td { padding: 10px 14px; border: 1px solid var(--c-border); color: var(--c-text); }
.review-block table tr:nth-child(even) td { background: rgba(255,255,255,0.025); }
.review-block a { color: var(--c-accent); text-decoration: underline; }
.review-block blockquote { border-left: 3px solid var(--c-accent); padding-left: 18px; color: var(--c-text-muted); font-style: italic; margin-bottom: 14px; }
.review-block strong, .review-block b { color: #fff; }
.review-block code { background: rgba(99,211,119,0.1); color: var(--c-accent); padding: 2px 6px; border-radius: 4px; font-size: 13px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(99,211,119,0.28); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  user-select: none;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(99,211,119,0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--c-accent); }
.faq-icon svg { width: 12px; height: 12px; color: var(--c-accent); }
.faq-item.open .faq-icon svg { color: #111; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.28s ease;
  padding: 0 18px;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 18px 18px; }
.faq-answer p { color: var(--c-text-muted); font-size: 14px; line-height: 1.75; margin: 0; }
.faq-answer a { color: var(--c-accent); }

.author-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-photo { flex-shrink: 0; width: 86px; height: 86px; border-radius: 50%; object-fit: cover; border: 3px solid var(--c-accent); }
.author-info { flex: 1; min-width: 200px; }
.author-info h3 { font-size: 17px; margin-bottom: 3px; }
.author-info .author-role,
.author-info .author-title {
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 11px;
}
.author-info p { font-size: 13px; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 13px; }
.author-links { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 13px; }
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #c2cde0;
  text-decoration: none;
  border: 1px solid var(--c-border);
  transition: border-color var(--transition), color var(--transition);
}
.author-link:hover { border-color: var(--c-accent); color: var(--c-accent); }
.author-link svg { width: 14px; height: 14px; }
.author-dates { font-size: 12px; color: var(--c-text-muted); display: flex; gap: 16px; flex-wrap: wrap; }
.author-dates span b { color: var(--c-text); }

.site-footer { background: var(--c-footer); border-top: 1px solid var(--c-border); margin-top: auto; }
.footer-main { padding: 44px 0 28px; display: flex; flex-wrap: wrap; gap: 32px; border-bottom: 1px solid var(--c-border); }
.footer-brand { flex: 2; min-width: 220px; }
.footer-logo {display: block;width: fit-content;}
.footer-brand .footer-logo-link,
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-brand .footer-logo-link img,
.footer-brand .footer-logo img {
  height: 42px;
  width: auto;
  border-radius: 6px;
}
.footer-brand .flg-text,
.footer-brand .footer-logo-text {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.footer-brand .flg-text span,
.footer-brand .footer-logo-text span {
  color: var(--c-accent);
}

.footer-brand p { font-size: 13px; color: var(--c-text-muted); line-height: 1.7; max-width: 300px; }
.footer-flag { display: flex; align-items: center; gap: 7px; margin: 12px 0; font-size: 13px; color: var(--c-text-muted); }
.footer-flag .ff-flag { font-size: 1.3rem; }

.footer-social,
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--c-border);
}
.social-link:hover { background: var(--c-accent); color: #0f1520; border-color: var(--c-accent); }
.social-link svg { width: 15px; height: 15px; }

.footer-col { flex: 1; min-width: 140px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: var(--c-text-muted); text-decoration: none; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--c-accent); }

.footer-logos-section { padding: 22px 0; border-bottom: 1px solid var(--c-border); }
.footer-logos-section h4 { font-size: 11.5px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; }
.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.logo-badge svg { width: 14px; height: 14px; color: var(--c-accent); }
.logo-badge.lb-green,
.logo-badge.logo-badge-green {
  border-color: rgba(99,211,119,0.28);
  color: var(--c-accent);
}

.footer-bottom { padding: 18px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; justify-content: space-between; }
.footer-bottom .copyright { font-size: 12px; color: var(--c-text-muted); line-height: 1.6; }
.footer-bottom .copyright a { color: var(--c-text-muted); }
.footer-bottom .copyright a:hover { color: var(--c-accent); }

.footer-warning {
  width: 100%;
  background: rgba(240,192,64,0.07);
  border: 1px solid rgba(240,192,64,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 12px;
  color: rgba(240,192,64,0.82);
  line-height: 1.65;
  margin-top: 18px;
}
.footer-warning strong {
  color: rgba(240,192,64,0.95);
}

.footer-legal {
  font-size: 11.5px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-top: 14px;
  padding: 14px 0 6px;
  border-top: 1px solid var(--c-border);
  opacity: 0.7;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(42,48,64,0.97);
  border-top: 2px solid var(--c-accent);
  backdrop-filter: blur(10px);
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 22px rgba(0,0,0,0.45);
  transition: transform 0.35s ease;
}
.sticky-widget.hidden { transform: translateY(100%); }
.sticky-widget-text { font-size: 13px; color: #fff; font-weight: 600; }
.sticky-widget-text span { color: var(--c-accent); }
.sticky-widget-close { background: none; border: none; color: var(--c-text-muted); cursor: pointer; font-size: 19px; padding: 4px 6px; flex-shrink: 0; transition: color var(--transition); }
.sticky-widget-close:hover { color: #fff; }
.sticky-widget-actions { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }

.mb-32 { margin-bottom: 32px; }
.tag { display: inline-flex; align-items: center; background: rgba(99,211,119,0.12); color: var(--c-accent); border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.rating-stars { color: #f5c518; letter-spacing: 2px; }

.wp-block-group { display: block; }
.elementor-section { position: relative; }
.elementor-widget-container { display: block; }
.x7k2f9 { display: none; }
.m3q8w1 { visibility: hidden; position: absolute; width: 0; height: 0; overflow: hidden; }

@media (max-width: 1024px) {
  .game-card { max-width: calc(50% - 9px); }
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .online-count { display: none; }
  .burger { display: flex; }
  .app-section .container > .app-inner {padding: 26px;}
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero .container { padding: 38px 18px; }
  .hero-bonus-card,
  .bonus-card { max-width: 100%; min-width: unset; }
  .games-grid { flex-wrap: nowrap; }
  .game-card { min-width: 72vw; max-width: 72vw; flex-shrink: 0; }
  .slider-nav { display: flex; }
  .slider-arrows { display: flex; }
  .bonuses-grid { flex-wrap: nowrap; }
  .bonus-tile { min-width: 80vw; flex-shrink: 0; }
  .adv-card { min-width: calc(50% - 7px); }
  .app-inner { flex-direction: column; }
  .app-buttons { flex-direction: row; flex-wrap: wrap; }
  .app-store-btn,
  .app-btn { flex: 1; min-width: 145px; }
  .review-block { padding: 22px 16px; }
  .author-block { flex-direction: column; }
  .footer-main { gap: 22px; }
  .footer-bottom-inner { flex-direction: column; }
  .section { padding: 36px 0; }
  .sticky-widget { gap: 10px; padding: 10px 14px; }
  .sticky-widget-text { font-size: 12px; }
  .modal-body iframe { height: 56vw; min-height: 240px; }
  .app-section .container > .app-inner {padding: 22px;}
}
@media (max-width: 480px) {
  .adv-card { min-width: 100%; }
  .game-card { min-width: 87vw; max-width: 87vw; }
  .hero-content { flex-direction: column; }
  .hero-bonus-card,
  .bonus-card { display: none; }
  .hero-ctas .btn { width: 100%; }
  .footer-col { min-width: 100%; }
  .sticky-widget-text { display: none; }
  .app-section .container > .app-inner {padding: 18px;}
  .app-table {min-width: 220px;}
  .app-table th, .app-table td {padding: 6px 7px;}
}

.qz91m { font-weight: 400; }
.lp47x { border: 0; }
.tw83k::after { content: ''; display: block; clear: both; }
.rn56v { overflow: hidden; text-overflow: ellipsis; }
.df70e { text-rendering: optimizeLegibility; }