/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: #1E3A5F;
  background: #EFF6FF;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1E3A5F;
}
h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
a { color: #2563EB; text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 600; }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }
blockquote {
  border-left: 4px solid #2563EB;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: #FFFFFF;
  font-style: italic;
  color: #4B6A8F;
}
img { max-width: 100%; height: auto; }

/* === LAYOUT === */
.site-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* === HEADER === */
.site-header {
  background: rgba(10, 37, 64, 0.96);
  border-bottom: 1px solid rgba(96, 165, 250, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.site-logo span { color: #93C5FD; }
.site-logo:hover { text-decoration: none; }
.site-logo img, .logo img {
  height: 28px;
  width: auto;
  vertical-align: middle;
  margin-right: 0;
}

/* Nav */
.main-nav { display: flex; gap: 0.25rem; flex-wrap: wrap; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.74);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(59, 130, 246, 0.18);
  color: #FFFFFF;
  text-decoration: none;
}
.main-nav .header-cta {
  background: #2563EB;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}
.main-nav .header-cta:hover {
  background: #1D4ED8;
  color: #FFFFFF;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: #FFFFFF;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 1rem 0 0.5rem;
  font-size: 0.85rem;
  color: #93B4D4;
}
.breadcrumbs a { color: #2563EB; }
.breadcrumbs span { margin: 0 0.35rem; }

/* === CONTENT === */
.page-content {
  padding-bottom: 3rem;
}
.page-content h1 {
  margin-top: 0.5rem;
}
.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}
.content-column { min-width: 0; }
.content-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(191, 219, 254, 0.95);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.06);
  padding: 1.8rem;
}
.hero-intro {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 50%, #dbeafe 100%);
  border: 1px solid rgba(147, 197, 253, 0.8);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.2rem 0;
}
.hero-kpi {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(191, 219, 254, 0.95);
}
.hero-kpi strong {
  display: block;
  font-size: 1.15rem;
  color: #1D4ED8;
}
.hero-kpi span {
  display: block;
  font-size: 0.84rem;
  color: #4B6A8F;
}
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.hero-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1D4ED8;
  font-weight: 600;
  font-size: 0.9rem;
}
.page-rail {
  position: sticky;
  top: 6rem;
}
.rail-card {
  background: #FFFFFF;
  border: 1px solid #dbeafe;
  border-top: 4px solid #2563EB;
  border-radius: 6px;
  box-shadow: none;
  padding: 1.15rem;
  margin-bottom: 1rem;
}
.rail-card h3 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rail-card p {
  font-size: 0.92rem;
  color: #4B6A8F;
}
.rail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rail-list li + li { margin-top: 0.65rem; }
.rail-list a {
  display: block;
  padding: 0.7rem 0;
  border-radius: 0;
  background: transparent;
  color: #1D4ED8;
  font-weight: 600;
  border-bottom: 1px solid #dbeafe;
}
.rail-stats {
  display: grid;
  gap: 0.7rem;
}
.rail-stat {
  border-radius: 6px;
  padding: 0.9rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #BFDBFE;
}
.rail-stat strong {
  display: block;
  font-size: 1rem;
  color: #1E3A5F;
}
.rail-stat span {
  font-size: 0.84rem;
  color: #4B6A8F;
}
main { flex: 1; }

/* === CARDS === */
.card {
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1rem 0;
  box-shadow: 0 1px 3px rgba(37,99,235,0.06);
}

/* === PAYMENT METHOD CARDS === */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.method-card {
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 1.25rem;
  transition: box-shadow 0.2s, transform 0.15s;
}
.method-card:hover {
  box-shadow: 0 4px 16px rgba(37,99,235,0.12);
  transform: translateY(-2px);
}
.method-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.method-card .method-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.method-card .method-details {
  font-size: 0.88rem;
  color: #4B6A8F;
  margin-top: 0.5rem;
}
.method-card .method-details span {
  display: block;
  margin-bottom: 0.2rem;
}

/* === STEP-BY-STEP FLOW === */
.step-flow {
  margin: 1.5rem 0;
  position: relative;
}
.step-flow::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 20px;
  width: 2px;
  background: #BFDBFE;
}
.step-item {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  align-items: flex-start;
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  background: #2563EB;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  z-index: 1;
}
.step-body {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.step-body h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}
.step-body p {
  margin: 0.2rem 0;
  font-size: 0.92rem;
}

/* === TABLES === */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
thead th {
  background: #1E3A5F;
  color: #FFFFFF;
  font-weight: 600;
  text-align: left;
  padding: 0.65rem 0.75rem;
  white-space: nowrap;
}
thead th:first-child { border-radius: 8px 0 0 0; }
thead th:last-child { border-radius: 0 8px 0 0; }
tbody td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #BFDBFE;
}
tbody tr:nth-child(even) { background: #F0F7FF; }
tbody tr:hover { background: #DBEAFE; }

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  vertical-align: middle;
}
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-red { background: #FEE2E2; color: #991B1B; }
.badge-yellow { background: #FEF3C7; color: #92400E; }
.badge-blue { background: #DBEAFE; color: #1E40AF; }

/* === ALERT BOXES === */
.box {
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.box-warning {
  background: #FEF2F2;
  border-left: 4px solid #DC2626;
  color: #991B1B;
}
.box-success {
  background: #D1FAE5;
  border-left: 4px solid #10B981;
  color: #065F46;
}
.box-info {
  background: #DBEAFE;
  border-left: 4px solid #2563EB;
  color: #1E40AF;
}
.box-tip {
  background: #FEF3C7;
  border-left: 4px solid #F59E0B;
  color: #92400E;
}
.box strong { display: block; margin-bottom: 0.25rem; }
.warning {
  background: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 0.8rem 1rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}
.warning strong { color: #92400E; }
.info {
  background: #DBEAFE;
  border-left: 4px solid #2563EB;
  padding: 0.8rem 1rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

/* === CTA BUTTONS === */
.cta-block {
  text-align: center;
  margin: 2rem 0;
  padding: 1.75rem;
  background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
  border-radius: 12px;
  border: 1px solid #BFDBFE;
}
.cta-block p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4B6A8F;
}
.cta-box {
  text-align: center;
  padding: 1.75rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
  border-radius: 12px;
  border: 1px solid #BFDBFE;
}
.cta-box p { margin: 0.5rem 0; }
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 0;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-blue {
  background: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.btn-blue:hover {
  background: #1D4ED8;
  box-shadow: 0 6px 16px rgba(37,99,235,0.4);
  color: #FFFFFF;
}
.btn-green {
  background: #10B981;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.btn-green:hover {
  background: #059669;
  box-shadow: 0 6px 16px rgba(16,185,129,0.4);
  color: #FFFFFF;
}
.btn-outline {
  background: transparent;
  color: #2563EB;
  border: 2px solid #2563EB;
}
.btn-outline:hover {
  background: #2563EB;
  color: #FFFFFF;
}
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }

/* === TRUST INDICATORS === */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #BFDBFE;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1E3A5F;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  fill: #10B981;
  flex-shrink: 0;
}

/* === LINK CARD (for deposit method links) === */
.link-card {
  background: #FFFFFF;
  border: 2px solid #10B981;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.link-card .meta { flex: 1; min-width: 200px; }
.link-card .meta h3 { margin: 0 0 0.2rem; font-size: 1rem; }
.link-card .meta p { margin: 0; font-size: 0.85rem; color: #4B6A8F; }

/* === STATUS GRID === */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}
.status-card {
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 0.8rem 1rem;
}
.status-card h4 {
  font-size: 0.9rem;
  margin: 0 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.status-card p { font-size: 0.82rem; margin: 0; color: #4B6A8F; }

/* === FAQ SECTION === */
.faq-section { margin-bottom: 2rem; }
.faq-item {
  border-bottom: 1px solid #BFDBFE;
}
.faq-item h3 {
  margin: 0;
  font-size: 1rem;
}
.faq-item h3 button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1E3A5F;
  padding: 1rem 2rem 1rem 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-item h3 button::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #2563EB;
  transition: transform 0.2s;
}
.faq-item.open h3 button::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 0 1rem;
  font-size: 0.95rem;
  color: #4B6A8F;
}
.faq-answer-inner a { color: #2563EB; }

/* Simple FAQ (no accordion) */
.faq-simple .faq-item { margin: 1rem 0; }
.faq-simple .faq-item h3 { cursor: default; font-size: 1rem; margin: 0.5em 0 0.3em; }
.faq-simple .faq-item p { font-size: 0.92rem; }

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.blog-card {
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 12px rgba(37,99,235,0.08);
}
.blog-card .tag {
  display: inline-block;
  background: #DBEAFE;
  color: #1D4ED8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}
.blog-card h3 a { color: #1E3A5F; }
.blog-card h3 a:hover { color: #2563EB; }
.blog-card .meta {
  font-size: 0.8rem;
  color: #93B4D4;
  margin-bottom: 0.5rem;
}
.blog-card p {
  font-size: 0.9rem;
  color: #4B6A8F;
  margin-bottom: 0.75rem;
}
.blog-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563EB;
}

/* === TIMESTAMP === */
.timestamp {
  font-size: 0.78rem;
  color: #93B4D4;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.timestamp svg { width: 12px; height: 12px; fill: #93B4D4; }

/* === AUTHOR E-E-A-T SYSTEM === */
.author-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 24px;
  padding: 12px 16px;
  background: rgba(37,99,235,0.04);
  border-radius: 8px;
}
.author-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 4px; }
.author-role { font-size: 12px; color: #4B6A8F; }
.verified-badge { flex-shrink: 0; }

.author-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  margin: 40px 0 20px;
  border: 1px solid #BFDBFE;
  border-radius: 12px;
  background: #FFFFFF;
}
.author-box-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box-content { flex: 1; }
.author-box-name { font-size: 18px; margin: 0 0 8px; display: flex; align-items: center; gap: 6px; }
.author-box-bio { font-size: 14px; color: #4B6A8F; margin: 0 0 12px; line-height: 1.5; }
.author-box-links { display: flex; gap: 16px; font-size: 13px; }
.author-link { color: inherit; text-decoration: underline; }
.author-twitter { color: #1DA1F2; text-decoration: none; }
.reviewer-line {
  font-size: 13px;
  color: #4B6A8F;
  margin: 8px 0 32px;
  padding-left: 24px;
  border-left: 3px solid #BFDBFE;
}

/* === SHARE BUTTONS === */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  padding: 16px;
  border-top: 1px solid #BFDBFE;
}
.share-buttons span { font-size: 13px; color: #4B6A8F; }
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  color: #fff;
}
.share-x { background: #000; }
.share-wa { background: #25D366; }
.share-tg { background: #0088cc; }

/* === BONUS HIGHLIGHT === */
.bonus-highlight {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}
.bonus-highlight h3 { color: #FFFFFF; margin-top: 0; font-size: 1.5rem; }
.bonus-highlight p { color: rgba(255,255,255,0.9); margin: 0.5rem 0; }
.bonus-highlight .bonus-amount {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin: 0.5rem 0;
}

/* === PROCESSING TIME INDICATOR === */
.time-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.85rem;
}
.time-instant { color: #10B981; }
.time-fast { color: #2563EB; }
.time-slow { color: #F59E0B; }

/* === RELATED LINKS === */
.related-links {
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 1.25rem;
  margin: 2rem 0;
}
.related-links h3 {
  margin-top: 0;
  font-size: 1rem;
  color: #4B6A8F;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.related-links ul { list-style: none; padding: 0; margin: 0; }
.related-links li { margin-bottom: 0.5rem; }
.related-links a { font-weight: 600; }

/* === RESPONSIBLE GAMBLING === */
.rg-org-list { list-style: none; padding: 0; }
.rg-org-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #BFDBFE;
}
.rg-org-list li strong { display: block; }
.rg-org-list li a { font-weight: 600; }

/* === FOOTER === */
.site-footer {
  background: #1E3A5F;
  color: #93B4D4;
  padding: 2rem 0;
  margin-top: auto;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}
.footer-links a {
  color: #BFDBFE;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FFFFFF; text-decoration: none; }
.footer-copy {
  border-top: 1px solid #2D5A8A;
  padding-top: 1rem;
  margin-top: 1rem;
  color: #6B9CC7;
  font-size: 0.8rem;
}
.footer-copy p { margin-bottom: 0.25rem; }

/* === COMPARISON TABLE HIGHLIGHT === */
.compare-best td:first-child { font-weight: 700; }
.compare-best { background: #D1FAE5 !important; }

/* === PAGINATION === */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
  padding: 16px;
}
.blog-pagination a, .page-current {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
}
.page-current { background: #DBEAFE; font-weight: 600; color: #1D4ED8; }

/* === Mostbet logo sizing === */
img[alt="Mostbet"] { max-width: 110px; height: auto; }
footer img[alt="Mostbet"] { max-width: 82px; }
.site-footer img[alt="Mostbet"] { max-width: 82px; }

/* === MISC === */
.affiliate-disclosure { font-size: 12px; color: #93B4D4; margin: 4px 0 16px; font-style: italic; }
.data-note { font-size: 13px; color: #93B4D4; border-left: 3px solid #BFDBFE; padding-left: 12px; margin: 8px 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .page-shell { grid-template-columns: 1fr; }
  .page-rail { position: static; }
  .content-card { padding: 1.15rem; border-radius: 22px; }
  .hero-intro { padding: 1.1rem; }
  .hero-kpis { grid-template-columns: 1fr; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #BFDBFE;
    flex-direction: column;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 12px rgba(37,99,235,0.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.6rem 0.5rem; }
  .site-header { position: relative; }
  .header-inner { position: relative; }
  .method-grid { grid-template-columns: 1fr; }
  .step-flow::before { display: none; }
  table { font-size: 0.8rem; }
  thead th, tbody td { padding: 0.5rem; }
  .link-card { flex-direction: column; align-items: flex-start; }
  .trust-bar { flex-direction: column; align-items: flex-start; }
  .bonus-highlight .bonus-amount { font-size: 2rem; }
}

@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .author-box-links { justify-content: center; }
  .status-grid { grid-template-columns: 1fr; }
}

/* === FIX OVERFLOW === */
.share-buttons, .author-box, .reviewer-line { max-width: 100%; overflow: hidden; box-sizing: border-box; }
main, article, .content, .content-area, .page-content, .site-wrapper { overflow-x: hidden; }

/* === PRINT === */
@media print {
  nav, .site-nav, .nav, .hamburger, .nav-toggle, .share-buttons, .cta-block, .cta-box, .btn, .author-byline, footer { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  main, article, .page-content { max-width: 100%; margin: 0; padding: 0; }
  a { color: #000; text-decoration: underline; }
  img { max-width: 100% !important; }
  .author-box { border: 1px solid #ccc; page-break-inside: avoid; }
  table { border-collapse: collapse; }
  td, th { border: 1px solid #ccc; padding: 4px 8px; }
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(30, 58, 95, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: "Inter", system-ui, sans-serif;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #BFDBFE;
  line-height: 1.5;
}
.cookie-banner p a {
  color: #93C5FD;
  text-decoration: underline;
}
.cookie-banner p a:hover {
  color: #fff;
}
.cookie-banner button {
  background: #2563EB;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.cookie-banner button:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px 20px;
  }
}


.mobile-sticky-cta{display:none}
@media (max-width:768px){.mobile-sticky-cta{display:block;position:fixed;left:0;right:0;bottom:0;z-index:999;background:#10B981;color:#fff;text-align:center;padding:14px 16px;font-weight:700;text-decoration:none;box-shadow:0 -2px 12px rgba(0,0,0,.18)}}
