/* ===================================================
   1xSlots — Main Stylesheet 2026
   Colors: #18181A (bg), #060509 (dark bg), #333333 (text)
   Buttons: #FAE0A0 (primary), #262627 (login)
   =================================================== */

:root {
  --bg-dark: #060509;
  --bg-card: #18181A;
  --text-main: #333333;
  --text-light: #cccccc;
  --text-white: #ffffff;
  --btn-primary: #FAE0A0;
  --btn-primary-hover: #f5d070;
  --btn-login: #262627;
  --btn-login-hover: #3a3a3b;
  --accent: #FAE0A0;
  --accent2: #c9a84c;
  --gold: #FAE0A0;
  --border: rgba(250,224,160,0.15);
  --border-card: rgba(255,255,255,0.07);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
}

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

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

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.highlight { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-white { color: var(--text-white); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--btn-primary);
  color: #18181A;
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250,224,160,0.35);
}
.btn-login {
  background: var(--btn-login);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-login:hover {
  background: var(--btn-login-hover);
  border-color: var(--accent);
}
.btn-lg {
  padding: 17px 36px;
  font-size: 1.1rem;
  border-radius: 12px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #18181A;
}
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.site-header {
  background: rgba(6,5,9,0.97);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wrap img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

/* NAV */
.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}
.main-nav a {
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(250,224,160,0.08);
}

/* HEADER BTNS */
.header-btns {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #060509 0%, #18181A 50%, #0f0e14 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250,224,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,224,160,0.1);
  border: 1px solid rgba(250,224,160,0.3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero h1 {
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.1rem;
  color: #aaaaaa;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 800;
}
.hero-stat span {
  font-size: 0.78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.hero-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(250,224,160,0.15);
  display: block;
  text-decoration: none;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transition: transform 0.4s ease;
}
.hero-img-wrap:hover img {
  transform: scale(1.02);
}
.hero-bonus-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #fae0a0 0%, #e6b800 100%);
  color: #18181A;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 0.82rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(230,184,0,0.5);
  line-height: 1.3;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* ===== SECTION ===== */
.section {
  padding: 70px 0;
}
.section-dark {
  background: #060509;
}
.section-card {
  background: #18181A;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header p {
  max-width: 600px;
  margin: 12px auto 0;
  color: #888;
}
.section-label {
  display: inline-block;
  background: rgba(250,224,160,0.1);
  color: var(--accent);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: rgba(250,224,160,0.3);
  transform: translateY(-4px);
}
.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(250,224,160,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: 0.92rem; color: #888; margin: 0; }

/* ===== BONUS BLOCK ===== */
.bonus-block {
  background: linear-gradient(135deg, rgba(250,224,160,0.12) 0%, rgba(250,224,160,0.04) 100%);
  border: 1px solid rgba(250,224,160,0.25);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}
.bonus-amount {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin: 16px 0;
}
.bonus-desc {
  font-size: 1.05rem;
  color: #aaa;
  max-width: 550px;
  margin: 0 auto 30px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(6,5,9,0.6);
  border: 2px dashed rgba(250,224,160,0.4);
  border-radius: 12px;
  padding: 14px 24px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.promo-code-box:hover { border-color: var(--accent); }
.promo-code-box .code {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 2px;
}
.promo-code-box .copy-hint {
  font-size: 0.78rem;
  color: #888;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.25s;
}
.step-item:hover { border-color: rgba(250,224,160,0.25); }
.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #18181A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 16px;
}
.step-item h3 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: 0.88rem; color: #888; margin: 0; }

/* ===== TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.data-table th {
  background: rgba(250,224,160,0.1);
  color: var(--accent);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-card);
  font-size: 0.92rem;
  color: var(--text-light);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(250,224,160,0.05); }
.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(250,224,160,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: #888;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== TRUST BADGES ===== */
.trust-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #888;
}
.trust-item .icon { font-size: 1.3rem; color: var(--accent); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250,224,160,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--text-white); }
.review-city { font-size: 0.78rem; color: #666; }
.review-stars { color: #FAE0A0; font-size: 0.9rem; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: #888; line-height: 1.6; }

/* ===== CRYPTO ===== */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.crypto-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.crypto-card:hover { border-color: rgba(250,224,160,0.3); }
.crypto-icon { font-size: 2rem; margin-bottom: 10px; }
.crypto-name { font-weight: 700; color: var(--text-white); font-size: 1rem; }
.crypto-bonus { font-size: 0.8rem; color: var(--accent); margin-top: 4px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #18181A 0%, #060509 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(250,224,160,0.07) 0%, transparent 70%);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: #888; max-width: 500px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: #060509;
  border-top: 1px solid var(--border-card);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: #555; line-height: 1.7; color:#fff; }
.footer-col h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 16px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: #555; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-card);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: #444; margin: 0; }
.footer-disclaimer {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: #444;
  line-height: 1.6;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: #555;
  border-bottom: 1px solid var(--border-card);
}
.breadcrumb a { color: #555; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; color: #333; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #060509 0%, #18181A 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--border-card);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 700px; color: #888; font-size: 1.05rem; }

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(250,224,160,0.06);
  border: 1px solid rgba(250,224,160,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { color: var(--text-light); margin: 0; }

/* ===== LISTS ===== */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== BACK TO TOP ===== */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #18181A;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(250,224,160,0.35);
  z-index: 999;
  transition: opacity 0.3s;
}
#backToTop.show { display: flex; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-card);
  padding: 16px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-card);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 16px; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-bonus-badge { right: 0; }
}
@media (max-width: 768px) {
  .main-nav, .header-btns { display: none; }
  .burger { display: flex; }
  .hero { padding: 50px 0 40px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .bonus-block { padding: 32px 20px; }
  .section { padding: 50px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .banner-slider__track { gap: 0; }
  .games-grid-3 { grid-template-columns: 1fr 1fr !important; }
  .games-grid-2 { grid-template-columns: 1fr !important; }
  .reg-split { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stat:last-child { grid-column: span 2; }
  .hero-btns { flex-direction: column; }
  .cards-grid { grid-template-columns: 1fr; }
  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
  .promo-code-box { flex-direction: column; }
  .games-grid-3 { grid-template-columns: 1fr !important; }
  .games-grid-2 { grid-template-columns: 1fr !important; }
  .reg-split { grid-template-columns: 1fr !important; }
}

/* ===== BANNER SLIDER ===== */
.banner-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  max-width: 100%;
  margin: 0 auto 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.banner-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.banner-slider__slide {
  min-width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.banner-slider__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.banner-slider__slide .slide-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.banner-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 10px;
  background: rgba(0,0,0,0.5);
}
.banner-slider__dots button {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.banner-slider__dots button.active {
  background: var(--accent);
  width: 40px;
}
.banner-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.banner-slider__btn:hover { background: var(--accent); color: #000; }
.banner-slider__btn.prev { left: 12px; }
.banner-slider__btn.next { right: 12px; }

/* ===== GAMES GRID ===== */
.games-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 24px;
}
.games-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 24px;
}
.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 32px rgba(0,0,0,0.6);
}
.game-card img {
  width: 100%;
  height: auto;
  min-height: 160px;
  max-height: 240px;
  object-fit: cover;
  display: block;
}
.game-card .game-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 20px 10px 8px;
  text-align: center;
}
.game-card .game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--accent-rgb,212,162,0),0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.game-card:hover .game-overlay {
  opacity: 1;
  background: rgba(0,0,0,0.45);
}
.game-card .play-btn {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* ===== REG SPLIT ===== */
.reg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
  align-items: start;
}
.reg-split img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  transition: transform 0.3s;
}
.reg-split img:hover { transform: scale(1.02); }

/* ===== JACKPOT BANNER ===== */
.jackpot-banner-wrap {
  max-width: 1000px;
  margin: 0 auto 28px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.jackpot-banner-wrap a { display: block; }
.jackpot-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}
.jackpot-banner-wrap img:hover { transform: scale(1.01); }

  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
  .promo-code-box { flex-direction: column; }
  /* Баннеры на мобиле — полная ширина */
  .user-banners-slider a img,
  [style*="border-radius:10px"] { border-radius: 6px !important; }
}

/* ===== SECTION IMAGES ===== */
.section-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--shadow);
  position: relative;
}
.section-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.section-img-wrap:hover img {
  transform: scale(1.02);
}
.section-img-wrap .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6,5,9,0.9), transparent);
  padding: 20px 24px 16px;
  color: var(--text-white);
  font-size: 0.9rem;
}

/* Two-column image+text layout */
.img-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}
.img-text-grid.reverse { direction: rtl; }
.img-text-grid.reverse > * { direction: ltr; }
.img-text-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.img-text-grid .img-text-content h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}
.img-text-grid .img-text-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Gallery grid for multiple images */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.img-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.img-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.img-gallery-item:hover img { transform: scale(1.05); }
.img-gallery-item .gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,5,9,0.85), transparent);
  padding: 12px 14px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
}

/* Bonus image card */
.bonus-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.bonus-img-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.bonus-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,5,9,0.7) 0%, rgba(6,5,9,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.bonus-img-overlay h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.bonus-img-overlay p {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Responsive images */
@media (max-width: 768px) {
  .img-text-grid { grid-template-columns: 1fr; }
  .img-gallery { grid-template-columns: 1fr 1fr; }
  .section-img-wrap img { height: 240px; }
  .img-text-grid img { height: 220px; }
  .bonus-img-card img { height: 240px; }
}
@media (max-width: 480px) {
  .img-gallery { grid-template-columns: 1fr; }
  .section-img-wrap img { height: 180px; }
}

/* ===== BANNER HOVER EFFECTS ===== */
.banner-slider__slide {
  transition: none;
}
.banner-slider__slide img {
  transition: transform 0.4s ease;
}
.banner-slider__slide:hover img {
  transform: scale(1.02);
}

/* ===== GAMES SECTION TITLE ===== */
.games-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 auto 16px;
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.games-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ===== GAME CARD IMPROVEMENTS ===== */
.game-card {
  border: 1px solid rgba(250,224,160,0.1);
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(250,224,160,0.08));
  z-index: 1;
  pointer-events: none;
}
.game-card .game-label {
  z-index: 2;
}
.game-card .game-overlay {
  z-index: 3;
}

/* ===== SECTION IMG WRAP ===== */
.section-img-wrap img {
  border-radius: 12px;
  transition: transform 0.3s;
}
.section-img-wrap img:hover {
  transform: scale(1.01);
}

/* ===== WIDE LOGO IN FOOTER ===== */
.footer-brand img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 6px;
}

/* ===================================================
   ARTICLE FLOAT — картинка внутри текста (обтекание)
   Используется для тематического встраивания изображений
   =================================================== */

/* Контейнер статейного блока */
.article-block {
  max-width: 900px;
  margin: 0 auto;
}

/* Обёртка с float-картинкой */
.article-float-wrap {
  overflow: hidden; /* clearfix для float */
}

/* Картинка слева (по умолчанию) */
.article-float-img {
  float: left;
  width: 42%;
  max-width: 380px;
  border-radius: 14px;
  margin: 0 32px 20px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}
.article-float-img:hover {
  transform: scale(1.01);
}

/* Узкая картинка (для вертикальных изображений) */
.article-float-narrow {
  width: 30%;
  max-width: 260px;
}

/* Вариант — картинка справа */
.article-float-wrap.article-float-right .article-float-img {
  float: right;
  margin: 0 0 20px 32px;
}

/* Clearfix после блока */
.article-float-wrap::after {
  content: '';
  display: table;
  clear: both;
}

/* Абзацы и заголовки внутри статейного блока */
.article-block p {
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
.article-block h3 {
  color: var(--text-white);
  margin-bottom: 14px;
  margin-top: 8px;
}

/* ===== АДАПТИВ ДЛЯ ARTICLE FLOAT ===== */
@media (max-width: 700px) {
  .article-float-img,
  .article-float-narrow {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
  }
  .article-float-wrap.article-float-right .article-float-img {
    float: none;
    margin: 0 0 20px 0;
  }
}

/* ===================================================
   ARTICLE TEXT+IMG — современный layout текст + картинка
   =================================================== */

.article-text-img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

/* Вариант: картинка справа */
.article-text-img-wrap.article-img-right {
  grid-template-columns: 1fr 1fr;
}
.article-text-img-wrap.article-img-right .article-img-block {
  order: 2;
}
.article-text-img-wrap.article-img-right .article-text-block {
  order: 1;
}

/* Новый стиль: картинка слева крупная (55%) */
.article-text-img-wrap.img-left-large {
  grid-template-columns: 1.3fr 1fr;
}
.article-text-img-wrap.img-left-large .article-img-block {
  order: 1;
}
.article-text-img-wrap.img-left-large .article-text-block {
  order: 2;
}

/* Новый стиль: картинка справа крупная (55%) */
.article-text-img-wrap.img-right-large {
  grid-template-columns: 1fr 1.3fr;
}
.article-text-img-wrap.img-right-large .article-img-block {
  order: 2;
}
.article-text-img-wrap.img-right-large .article-text-block {
  order: 1;
}

.article-text-block p {
  margin-bottom: 1.1rem;
  line-height: 1.75;
  color: var(--text-light);
}
.article-text-block h3 {
  color: var(--text-white);
  margin-bottom: 14px;
}
.article-text-block .btn {
  margin-top: 6px;
}

.article-img-block {
  position: relative;
  min-width: 0;
}
.article-img-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.article-img-block img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 70px rgba(0,0,0,0.85);
}

/* content-img-wrap: для tall/square изображений */
.content-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.7);
  display: block;
}
.content-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.content-img-wrap:hover img {
  transform: scale(1.03);
}

/* banner-img-wrap: для широких баннеров 3:1 */
.banner-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.65);
  position: relative;
  display: block;
  text-decoration: none;
}
.banner-img-wrap img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.4s ease;
}
.banner-img-wrap:hover img {
  transform: scale(1.02);
}

/* Заголовок между разделами в статейных блоках */
.section-subh3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-white);
  font-weight: 700;
  margin: 36px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-card);
}

/* Адаптив */
@media (max-width: 900px) {
  .article-text-img-wrap,
  .article-text-img-wrap.article-img-right {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-text-img-wrap.article-img-right .article-img-block {
    order: 0;
  }
  .article-text-img-wrap.article-img-right .article-text-block {
    order: 1;
  }
}

/* ===== CORE WEB VITALS & SEO IMPROVEMENTS ===== */

/* Update date styling */
.update-date {
  font-size: 0.82em;
  color: #888;
  font-style: normal;
}

/* Improve image rendering for LCP */
img[loading="eager"] {
  content-visibility: auto;
}

/* ===================================================
   IMAGE DISPLAY — точные пропорции для реальных картинок
   =================================================== */

/* Баннеры-слайды: реальные картинки ~3.1:1 (1024x320) */
.banner-slider__slide img {
  aspect-ratio: 1024 / 320;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* Баннер с jackpot: 1024x210 — очень широкий */
.jackpot-banner-wrap img {
  aspect-ratio: 1024 / 210;
  object-fit: cover;
  width: 100%;
}

/* Скриншоты игр в game-card */
.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Hero image: баннер первого депозита 1024x324 */
.hero-img-wrap img {
  aspect-ratio: 1024 / 324;
  object-fit: cover;
  width: 100%;
  border-radius: 0;
}

/* portrait: registration-form ~1:1 */
.img-portrait {
  aspect-ratio: 1 / 1;
  object-fit: cover !important;
  border-radius: 16px;
}

/* Игровые скриншоты gallery */
.games-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.games-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.games-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}
.games-gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.games-gallery-item .game-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 20px 12px 10px;
  text-align: center;
}
.games-gallery-item .game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .games-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .games-gallery-item img {
    height: 130px;
  }
}

/* Page hero update meta */
.page-update-info {
  display: inline-block;
  font-size: 0.78rem;
  color: #888;
  margin-top: 8px;
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Improve focus visibility for accessibility (also affects SEO via UX signals) */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduce CLS on trust strip */
.trust-strip {
  min-height: 52px;
}

/* Better text readability for SEO content */
.article-text-block p {
  font-size: 1.02rem;
  line-height: 1.78;
}

/* Anchor links in article text — semantic cross-linking */
.article-text-block a[href^="/"] {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(250,224,160,0.4);
  text-underline-offset: 3px;
}

.article-text-block a[href^="/"]:hover {
  text-decoration-color: var(--accent);
}

/* ===================================================
   HERO MINI BANNERS — полоса мини-баннеров под главным
   =================================================== */
.hero-mini-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-mini-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-mini-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.7);
}
.hero-mini-banner img {
  width: 100%;
  aspect-ratio: 1024 / 320;
  object-fit: cover;
  display: block;
}
.hero-mini-banner span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 14px 4px 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ===================================================
   SECTION BANNER — широкий промо-баннер внутри секций
   =================================================== */
.section-banner {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
  margin: 0 auto 40px;
  max-width: 100%;
  width: 100%;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.7);
}
.section-banner img {
  width: 100%;
  display: block;
  height: auto;
}

/* ===================================================
   GAMES SHOWCASE — двухколоночный showcase для краш-игр
   =================================================== */
.games-showcase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px;
  margin: 28px 0;
}
.games-showcase-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,0.55);
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}
.games-showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.75);
}
.games-showcase-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.games-showcase-item .game-overlay-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 20px 14px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.games-showcase-item .game-overlay-label small {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 2px;
}
.games-showcase-item.featured img {
  height: 260px;
}

/* ===================================================
   SLOT TRIO — сетка 3 слота 
   =================================================== */
.slot-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.slot-trio-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,0.55);
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}
.slot-trio-item:hover {
  transform: translateY(-4px);
}
.slot-trio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.slot-trio-item .game-overlay-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  padding: 16px 12px 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.slot-trio-item .game-badge-sm {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero-mini-banners { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .hero-mini-banner span { font-size: 0.62rem; padding: 10px 2px 4px; }
  .games-showcase { grid-template-columns: 1fr; }
  .games-showcase-item img, .games-showcase-item.featured img { height: 180px; }
  .slot-trio { grid-template-columns: 1fr 1fr; }
  .slot-trio-item img { height: 140px; }
}
@media (max-width: 480px) {
  .hero-mini-banners { gap: 4px; }
  .hero-mini-banner span { display: none; }
  .slot-trio { grid-template-columns: repeat(2,1fr); }
}

/* ===================================================
   УЛУЧШЕННОЕ ОТОБРАЖЕНИЕ ИЗОБРАЖЕНИЙ — финальные правки
   =================================================== */

/* Полноширинный баннер с текстом-карточкой */
.img-section-block {
  margin: 0 0 40px;
}
.img-section-block .section-banner {
  margin-bottom: 0;
}

/* Для article-text-img-wrap: картинка занимает 55% */
@media (min-width: 901px) {
  .article-text-img-wrap {
    grid-template-columns: 1fr 1.25fr;
  }
  .article-text-img-wrap.article-img-right {
    grid-template-columns: 1fr 1.25fr;
  }
}

/* Изображение в article-img-block всегда полная ширина колонки */
.article-img-block {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.article-img-block .content-img-wrap,
.article-img-block .banner-img-wrap {
  width: 100%;
}
.article-img-block a.content-img-wrap {
  display: block;
  width: 100%;
}

/* Убираем max-width у content-img-wrap в article-img-block */
.article-img-block > .content-img-wrap,
.article-img-block > a.content-img-wrap {
  max-width: none !important;
  margin: 0 !important;
}

/* games-showcase — более высокие карточки */
@media (min-width: 769px) {
  .games-showcase-item img {
    height: 300px;
  }
  .games-showcase-item.featured img {
    height: 300px;
  }
}

/* slot-trio — высокие карточки */
@media (min-width: 769px) {
  .slot-trio-item img {
    height: 260px;
  }
}

/* Адаптив для slot-trio */
@media (max-width: 768px) {
  .slot-trio { grid-template-columns: repeat(2, 1fr); }
  .slot-trio-item img { height: 180px; }
}

/* Banner-img-wrap убираем ограничение вложенной ссылки */
.banner-img-wrap > a {
  display: block;
  width: 100%;
}
.banner-img-wrap > a > img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================================
   HERO STATS MINI — компактная статистика под главным баннером
   =================================================== */
.hero-stats-mini {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.hstat {
  flex: 1;
  background: rgba(250,224,160,0.08);
  border: 1px solid rgba(250,224,160,0.2);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hstat-n {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}
.hstat-l {
  font-size: 0.68rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
}
@media (max-width: 480px) {
  .hero-stats-mini { gap: 5px; }
  .hstat-n { font-size: 0.85rem; }
  .hstat-l { font-size: 0.6rem; }
}

/* ===================================================
   КРАСИВЫЕ БЛОКИ С ИЗОБРАЖЕНИЯМИ — новые компоненты
   =================================================== */

/* Карточка: изображение сверху + текст снизу */
.img-card-block {
  background: var(--bg-card, #1a1a2e);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img-card-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.img-card-block .img-card-photo {
  width: 100%;
  display: block;
  overflow: hidden;
  max-height: 400px;
}
.img-card-block .img-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.img-card-block:hover .img-card-photo img {
  transform: scale(1.04);
}
.img-card-block .img-card-text {
  padding: 32px 36px 36px;
}
.img-card-block .img-card-text h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.img-card-block .img-card-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Блок с изображением-обложкой на всю ширину + оверлей */
.img-cover-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
}
.img-cover-section img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.5s ease;
}
.img-cover-section:hover img {
  transform: scale(1.02);
}
.img-cover-section .img-cover-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 36px 32px 28px;
}
.img-cover-section .img-cover-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.img-cover-section .img-cover-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
}

/* Горизонтальный split: картинка слева/справа + текст */
.img-split-block {
  display: grid;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
  margin-bottom: 40px;
  background: #1a1e35;
  align-items: stretch;
}
.img-split-block.img-split-left {
  grid-template-columns: 48% 52%;
}
.img-split-block.img-split-right {
  grid-template-columns: 52% 48%;
}
.img-split-photo {
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0f1120;
}
.img-split-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: contain;
}
.img-split-block:hover .img-split-photo img {
  transform: scale(1.03);
}
.img-split-text {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.img-split-text h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.img-split-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.img-split-text .btn {
  margin-top: 8px;
  align-self: flex-start;
}
.img-split-text ul.check-list {
  margin: 12px 0;
}

/* Широкий баннер с подписью */
.img-banner-block {
  margin-bottom: 40px;
}
.img-banner-block a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.65);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img-banner-block a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 70px rgba(0,0,0,0.85);
}
.img-banner-block img {
  width: 100%;
  display: block;
  height: auto;
}
.img-banner-block .img-banner-caption {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 8px;
}

/* Галерея игровых слотов */
.games-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.games-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 30px rgba(0,0,0,0.55);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #0f1120;
}
.games-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 50px rgba(0,0,0,0.8);
}
.games-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  object-fit: contain;
}
.games-gallery-item:hover img {
  transform: scale(1.04);
}
.games-gallery-item .game-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
  padding: 24px 12px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.games-gallery-item .game-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--accent, #f5c518);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
}
/* Первый элемент галереи — широкий */
.games-gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 32/10;
}

/* Адаптив для новых компонентов */
@media (max-width: 768px) {
  .img-split-block.img-split-left,
  .img-split-block.img-split-right {
    grid-template-columns: 1fr;
  }
  .img-split-photo {
    min-height: 220px;
  }
  .img-split-text {
    padding: 24px 20px;
  }
  .img-card-block .img-card-text {
    padding: 20px 20px 24px;
  }
  .img-cover-section .img-cover-overlay {
    padding: 20px 16px 14px;
  }
  .img-cover-section .img-cover-overlay h3 {
    font-size: 1.1rem;
  }
  .games-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .games-gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/8;
  }
  .article-text-img-wrap,
  .article-text-img-wrap.article-img-right,
  .article-text-img-wrap.img-left-large,
  .article-text-img-wrap.img-right-large {
    grid-template-columns: 1fr;
  }
  .article-text-img-wrap.article-img-right .article-img-block,
  .article-text-img-wrap.img-right-large .article-img-block {
    order: 1;
  }
  .article-text-img-wrap.article-img-right .article-text-block,
  .article-text-img-wrap.img-right-large .article-text-block {
    order: 2;
  }
}

@media (max-width: 480px) {
  .games-gallery {
    grid-template-columns: 1fr;
  }
  .games-gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }
}

/* ===================================================
   КРАСИВЫЕ БЛОКИ С ИЗОБРАЖЕНИЯМИ — новые компоненты v2
   =================================================== */

/* Карточка: изображение сверху + текст снизу */
.img-card-block {
  background: #1a1e35;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img-card-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.img-card-block .img-card-photo {
  width: 100%;
  display: block;
  overflow: hidden;
}
.img-card-block .img-card-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.img-card-block:hover .img-card-photo img {
  transform: scale(1.04);
}
.img-card-block .img-card-text {
  padding: 32px 36px 36px;
}
.img-card-block .img-card-text h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.img-card-block .img-card-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Горизонтальный split — единый блок с округлением */
.img-split-block {
  display: grid;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
  margin-bottom: 40px;
  background: #1a1e35;
}
.img-split-block.img-split-left {
  grid-template-columns: 48% 52%;
}
.img-split-block.img-split-right {
  grid-template-columns: 52% 48%;
}
.img-split-photo {
  overflow: hidden;
  min-height: 300px;
}
.img-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.img-split-block:hover .img-split-photo img {
  transform: scale(1.05);
}
.img-split-text {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.img-split-text h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.img-split-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}
.img-split-text .btn {
  margin-top: 10px;
  align-self: flex-start;
}
.img-split-text ul.check-list {
  margin: 10px 0;
}

/* Галерея слотов */
.games-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}
.games-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 30px rgba(0,0,0,0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16/10;
}
.games-gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 50px rgba(0,0,0,0.8);
}
.games-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.games-gallery-item:hover img {
  transform: scale(1.08);
}
.games-gallery-item .game-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, transparent 100%);
  padding: 24px 12px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}
.games-gallery-item .game-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: #f5c518;
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: 0.03em;
}
.games-gallery-item.wide {
  grid-column: span 2;
}
.games-gallery-item.wide img {
  aspect-ratio: 2/1;
  width: 100%;
  height: 100%;
}

/* Широкий баннер-ссылка */
.img-banner-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 48px rgba(0,0,0,0.65);
  text-decoration: none;
  margin-bottom: 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img-banner-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 70px rgba(0,0,0,0.85);
}
.img-banner-link img {
  width: 100%;
  display: block;
  height: auto;
}

/* Адаптив */
@media (max-width: 768px) {
  .img-split-block.img-split-left,
  .img-split-block.img-split-right {
    grid-template-columns: 1fr;
  }
  .img-split-photo { min-height: 200px; }
  .img-split-text { padding: 22px 20px; }
  .img-card-block .img-card-text { padding: 18px 18px 22px; }
  .games-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .games-gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .games-gallery { grid-template-columns: 1fr; }
  .games-gallery-item.wide { grid-column: span 1; }
  .img-split-photo { min-height: 180px; }
}

/* img-split-photo с вложенной ссылкой */
.img-split-photo > a {
  display: block;
  width: 100%;
  height: 100%;
}
.img-split-photo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
