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

/* ==========================================================================
   GLOBAL VARIABLES - LIQUID GLASS & MOSTBET BLUE
   ========================================================================== */
:root {
  --brand-blue-dark: #001f3f;
  --brand-blue: #003266;
  --brand-blue-light: #0a519e;
  --brand-orange: #fb4d00;
  
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-highlight: inset 0 1px 1px rgba(255, 255, 255, 0.25);
  --glass-blur: blur(20px);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE 
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--brand-blue-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}

/* Abstract gradient blobs to make the glass blur visible */
body::before {
  content: '';
  position: fixed;
  top: -20%; left: -10%;
  width: 120%; height: 120%;
  background: 
    radial-gradient(circle at 15% 20%, rgba(10, 81, 158, 0.7) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(251, 77, 0, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(0, 50, 102, 0.8) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

a { text-decoration: none; color: #a0c4ff; transition: var(--transition); }
a:hover { color: var(--brand-orange); }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em; margin-bottom: 20px;}
h2 { 
  font-size: clamp(22px, 3vw, 28px); 
  margin: 40px 0 20px; 
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}
h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; }

.general-p, p {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}

/* Центрирование контентных картинок */
figure {
  margin: 32px 0;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}
.general-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ==========================================================================
   BUTTONS (iOS Glossy feel) & CENTERING
   ========================================================================== */
.btn-center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 32px 0;
}

button, .button, .header-btn {
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  transition: var(--transition);
  color: var(--text-main);
  box-shadow: var(--glass-shadow);
}

button:hover { background: var(--glass-bg-hover); transform: translateY(-2px); }

.btn-orange {
  background: linear-gradient(180deg, #ff7a00 0%, #fb4d00 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(251, 77, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-orange:hover {
  background: linear-gradient(180deg, #ff8c20 0%, #ff5e14 100%);
  box-shadow: 0 8px 25px rgba(251, 77, 0, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.btn-blue {
  background: linear-gradient(180deg, #6398e4 0%, #3a75c4 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(58, 117, 196, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-green {
  background: linear-gradient(180deg, #34d399 0%, #059669 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ==========================================================================
   GLASSMIX CLASS (Reusable Liquid Glass Container)
   ========================================================================== */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  background: rgba(0, 31, 63, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo { height: 40px; position: relative; }
.logo img { height: 100%; object-fit: contain; }
.logo .btn-logo { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; }

.header-nav { display: flex; gap: 20px; align-items: center; }
.header-nav a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header-nav a:hover { color: var(--brand-orange); }

.header-actions { display: flex; gap: 10px; }
.mobile-actions, .menu-toggle, .burger-label { display: none; }

/* ==========================================================================
   LAYOUT: SIDEBAR & MAIN
   ========================================================================== */
.page-wrapper {
  max-width: 1400px;
  margin: 30px auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.sidebar { width: 260px; flex-shrink: 0; position: sticky; top: 90px; }

.sidebar-sports {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--glass-shadow);
}

.sidebar-title {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.sport-links { display: flex; flex-direction: column; gap: 10px; }
.sport-links button {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  justify-content: flex-start;
  border: 1px solid transparent;
  box-shadow: none;
}
.sport-links button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--glass-border);
  transform: translateX(4px);
}

.sidebar-banner {
  margin-top: 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sidebar-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(251, 77, 0, 0.2), transparent 70%);
  pointer-events: none;
}
.sidebar-banner-inner { position: relative; z-index: 1; }
.sidebar-banner .crown { font-size: 40px; margin-bottom: 10px; }
.sidebar-banner h4 { font-size: 15px; color: var(--text-muted); margin-bottom: 5px; }
.sidebar-banner .amount {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  display: block;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(251, 77, 0, 0.6);
}
.sidebar-banner button { width: 100%; }

.main-content { flex: 1; min-width: 0; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.hero-text { flex: 1; max-width: 650px; position: relative; z-index: 2; }

/* Главный заголовок баннера (fake h1) */
.hero-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: block;
}

.hero-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; }
.hero-btn-group { display: flex; flex-direction: column; gap: 12px; }
.hero-buttons-row { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-trust-badge {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-image { flex: 1; max-width: 420px; z-index: 2; }
.hero-image img { filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4)); animation: float 6s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ==========================================================================
   TRUST PANEL
   ========================================================================== */
.trust-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.trust-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}
.trust-card:hover { background: var(--glass-bg-hover); transform: translateY(-4px); }
.trust-card b {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.trust-card span { font-size: 14px; color: var(--text-muted); }

/* ==========================================================================
   TOC (Table of Contents)
   ========================================================================== */
.toc-wrapper {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin: 40px 0;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.toc-head {
  padding: 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.1);
}
.toc-title { font-size: 20px; margin: 0; }
.toc-toggle {
  background: rgba(255,255,255,0.1);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  box-shadow: none;
}
.toc-content { padding: 24px; }
.toc-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.toc-list li { position: relative; padding-left: 20px; }
.toc-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; background: var(--brand-orange); border-radius: 50%;
}
.toc-list a { color: var(--text-muted); font-size: 15px; }
.toc-list a:hover { color: #fff; }

/* ==========================================================================
   GAMES GRID
   ========================================================================== */
.best-games__list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 30px 0;
}
.best-games__item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px; text-align: left;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  box-shadow: var(--glass-shadow);
  text-transform: none;
}
.best-games__item-img { width: 100%; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 12px; position: relative; }
.best-games__item-img img { width: 100%; height: 140px; object-fit: cover; transition: transform 0.5s ease; }
.best-games__item span { font-size: 16px; color: #fff; margin-bottom: 2px; }
.best-games__item small { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.best-games__item::before {
  content: '▶'; position: absolute; top: 40%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(251, 77, 0, 0.9); color: #fff;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 20px; opacity: 0; z-index: 2;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(251, 77, 0, 0.5);
}
.best-games__item:hover { background: var(--glass-bg-hover); border-color: rgba(255,255,255,0.3); transform: translateY(-4px); }
.best-games__item:hover .best-games__item-img img { transform: scale(1.1); }
.best-games__item:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ==========================================================================
   LISTS & CONTENT BLOCKS
   ========================================================================== */
.general-ul, .general-ol { margin-bottom: 24px; display: flex; flex-direction: column; gap: 12px; list-style: none !important; padding-left: 0 !important;}
.general-ul li, .general-ol li { list-style: none !important; position: relative; color: var(--text-muted); font-size: 16px;}

.general-ul li { padding-left: 28px; }
.general-ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--brand-orange); font-weight: 800;
}

.general-ol { counter-reset: custom-counter; }
.general-ol li { padding-left: 40px; margin-bottom: 8px; line-height: 1.5; }
.general-ol li::before {
  counter-increment: custom-counter; content: counter(custom-counter);
  position: absolute; left: 0; top: -2px;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}

.reg-methods-grid, .bonus-tiles, .reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 30px 0;
}
.reg-method-card, .bonus-tile, .review-card {
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); padding: 24px;
  border-radius: var(--radius-md); transition: var(--transition);
  box-shadow: var(--glass-shadow);
}
.reg-method-card { text-align: center; }
.reg-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.reg-method-card span { font-weight: 600; color: #fff; }
.reg-method-card:hover, .bonus-tile:hover { background: var(--glass-bg-hover); transform: translateY(-4px); }

.bonus-tile { display: flex; align-items: center; gap: 16px; padding: 16px 20px; }
.bonus-tile-icon { color: var(--brand-orange); font-size: 20px; font-weight: 900; }

.expert-note {
  background: rgba(251, 77, 0, 0.1); border-left: 4px solid var(--brand-orange);
  padding: 20px 24px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 30px 0;
  backdrop-filter: blur(10px); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); border-right: 1px solid var(--glass-border);
}
.expert-note p, .expert-note strong { color: #ffd6c2; margin: 0; }
.expert-note strong { display: block; font-size: 18px; margin-bottom: 8px; color: #fff;}

/* Reviews */
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.avatar {
  width: 48px; height: 48px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff;
}
.reviewer-info { display: flex; flex-direction: column; }
.reviewer-name { font-weight: 700; color: #fff; }
.verified { color: #34d399; font-size: 13px; font-weight: 500; }
.stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-style: italic; color: var(--text-muted); font-size: 15px; margin-bottom: 16px; }
.review-date { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Security */
.security-block {
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 32px; display: flex; gap: 24px; align-items: flex-start; margin: 40px 0;
  box-shadow: var(--glass-shadow);
}
.shield-icon { font-size: 48px; filter: drop-shadow(0 0 15px rgba(251,77,0,0.4)); }
.sec-content h3 { margin-top: 0; margin-bottom: 12px; }

/* ==========================================================================
   TABLES
   ========================================================================== */
.general-table-wrapper {
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 0 !important;
  margin: 40px 0 !important;
  overflow-x: auto;
  box-shadow: var(--glass-shadow);
}
.general-table { width: 100% !important; border-collapse: collapse !important; margin: 0 !important; text-align: left !important; }
.general-table th {
  background: rgba(0, 0, 0, 0.2) !important; color: #fff !important;
  padding: 16px 24px !important; font-size: 16px !important;
  border-bottom: 1px solid var(--glass-border) !important;
}
.general-table td {
  padding: 16px 24px !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  color: var(--text-muted) !important; font-size: 15px !important;
  background: transparent !important; border-radius: 0 !important;
}
.general-table tr:last-child td { border-bottom: none !important; }
.general-table strong, .general-table b { color: #fff !important; }

.general-table tbody tr td:first-child:nth-last-child(2),
.general-table .general-tr .general-td:first-child:nth-last-child(2) {
  background: rgba(255,255,255,0.02) !important; color: #fff !important; font-weight: 600 !important;
  border-right: 1px solid rgba(255,255,255,0.05) !important;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container { margin: 40px 0; }
.faq-item {
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border); border-radius: var(--radius-md);
  margin-bottom: 16px; position: relative; transition: var(--transition);
  overflow: hidden; box-shadow: var(--glass-shadow);
}
.faq-item:hover { background: var(--glass-bg-hover); }
.toggle { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 3; }
.faq-question { margin: 0; padding: 20px 60px 20px 24px; font-size: 17px; color: #fff; transition: color 0.3s; }
.icon { position: absolute; right: 24px; top: 22px; width: 20px; height: 20px; z-index: 2; }
.icon::before, .icon::after { content: ''; position: absolute; background: var(--brand-orange); transition: var(--transition); border-radius: 2px;}
.icon::before { width: 20px; height: 2px; top: 9px; left: 0; }
.icon::after { width: 2px; height: 20px; top: 0; left: 9px; }

.toggle:checked ~ .faq-question { color: var(--brand-orange); }
.toggle:checked ~ .icon::after { transform: rotate(90deg); opacity: 0; }
.toggle:checked ~ .icon::before { background: #fff; }
.faq-answer { max-height: 0; opacity: 0; padding: 0 24px; color: var(--text-muted); transition: all 0.4s ease; }
.toggle:checked ~ .faq-answer { max-height: 500px; opacity: 1; padding: 0 24px 24px 24px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: rgba(0, 15, 30, 0.8); backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border); padding: 60px 20px 30px; margin-top: 60px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-inner:first-child { margin-bottom: 40px; }
.footer-brand-info { flex: 1; min-width: 300px; }
.footer-brand-info p { font-size: 14px; color: var(--text-muted); margin: 16px 0; }
.footer-payments { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-payments button {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 12px; padding: 8px 16px; border-radius: var(--radius-full);
  box-shadow: none;
}
.footer-links { flex: 2; display: flex; flex-wrap: wrap; gap: 16px 32px; align-content: flex-start; }
.footer-links a { color: var(--text-muted); font-weight: 500; font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-brand { width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-brand strong { color: rgba(255,255,255,0.6); font-weight: normal; }

/* ==========================================================================
   FLOATING ELEMENTS (Ticket, To Top, Sticky Mobile)
   ========================================================================== */
.floating-tiket {
  position: fixed; right: 30px; bottom: 30px;
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-full);
  padding: 14px 28px; display: flex; align-items: center; gap: 12px;
  color: #fff; font-weight: 700; font-size: 16px; text-transform: uppercase;
  z-index: 990; box-shadow: var(--glass-shadow), 0 0 20px rgba(251, 77, 0, 0.2);
  animation: floatTiket 4s ease-in-out infinite;
}
.floating-tiket:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); animation: none; }
.tiket-badge {
  background: var(--brand-orange); color: #fff; width: 24px; height: 24px;
  border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 800;
}
@keyframes floatTiket {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scrollTop {
  position: fixed; bottom: 100px; right: 30px;
  width: 50px; height: 50px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; cursor: pointer; z-index: 990; opacity: 0; visibility: hidden; transition: var(--transition);
}
.scrollTop.pam_content { opacity: 1; visibility: visible; }
.scrollTop:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }

.mobile-sticky-cta { display: none; }

/* ==========================================================================
   RESPONSIVE DESIGN 
   ========================================================================== */
@media (max-width: 1250px) {
  .sidebar { display: none; }
  .page-wrapper { display: block; }
}

@media (max-width: 1100px) {
  .hero-title { text-align: center; } /* Выравниваем заголовок по центру на планшетах */
  .header-actions .button { padding: 12px 20px; font-size: 13px; }
  .best-games__list { grid-template-columns: repeat(3, 1fr); }
  
  .hero-section { flex-direction: column; text-align: center; justify-content: center; }
  .hero-text { max-width: 100%; }
  .hero-image { display: block; margin-top: 24px; max-width: 320px; width: 100%; }
  .hero-btn-group { align-items: center; width: 100%; }
  .hero-buttons-row { justify-content: center; width: 100%; }
}

@media (max-width: 992px) {
  .header-actions.desktop, .header-nav { display: none; }
  
  .header-inner {
    display: grid; grid-template-columns: 1fr auto; align-items: center;
  }
  
  .burger-label { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
  .burger-label span { display: block; width: 30px; height: 3px; background: #fff; border-radius: 2px; }
  
  .mobile-actions {
    display: flex; gap: 10px; padding: 12px 20px;
    background: rgba(0, 31, 63, 0.8); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
  }
  .mobile-actions button { flex: 1; padding: 14px; font-size: 13px; }
  
  .header-nav {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(0, 31, 63, 0.95); backdrop-filter: blur(20px);
    padding: 20px; flex-direction: column; align-items: flex-start;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .menu-toggle:checked ~ .header-nav { display: flex; }
  
  .best-games__list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 26px; margin-bottom: 15px;}
  h2 { font-size: 22px; }
  .hero-title { font-size: 28px; margin-bottom: 15px; text-align: center; } /* Уменьшаем заголовок на мобилках */
  
  .hero-section { padding: 30px 15px; }
  .hero-buttons-row button { width: 100%; }
  
  .trust-panel { display: flex; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; margin-bottom: 30px;}
  .trust-card { min-width: 220px; scroll-snap-align: start; }
  
  .best-games__list { grid-template-columns: repeat(2, 1fr); }
  
  .security-block { flex-direction: column; text-align: center; align-items: center; }
  
  .general-table-wrapper { padding: 12px !important; margin: 20px 0 !important; }
  .general-table { font-size: 14px !important; }
  .general-table th { padding: 10px !important; font-size: 16px !important; }
  .general-table td { padding: 9px 10px !important; font-size: 14px !important; }
  
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
  .footer-links { justify-content: center; }
  
  body { padding-bottom: 90px; }
  .mobile-sticky-cta {
    display: block; position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(0, 15, 30, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px; z-index: 1000; border-top: 1px solid rgba(255,255,255,0.1); text-align: center;
  }
  .mobile-sticky-cta p { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
  .mobile-sticky-cta button { width: 100%; }
  
  .floating-tiket { bottom: 120px; right: 20px; padding: 12px 20px; font-size: 14px; }
  .scrollTop { bottom: 120px; left: 20px; right: auto; }
}

@media (max-width: 580px) {
  .general-table { min-width: 560px !important; }
}

@media (max-width: 480px) {
  .best-games__list { grid-template-columns: 1fr; }
  .toc-list { grid-template-columns: 1fr; }
}