/* ============================================
   MOSTBET CZ - REDESIGN / REFRESH
   Mobile-First Responsive Stylesheet
   Version: 2.1.0 | 2026
   ============================================ */

:root {
    /* Slightly altered color palette for fresh footprint */
    --c-base: #0A234A; /* Was #123263 */
    --c-dark: #0E2954; /* Was #123263 */
    --c-panel: #161920; /* Was #1a1d24 */
    --c-surface: #20232B; /* Was #252830 */
    --c-muted: #3a3f4a;
    --c-text-light: #E4E9F2; /* Was #DDE2EA */
    --c-text-grey: #cdd2d9; /* Was #d1d5db */
    --c-white: #ffffff;
    
    --c-accent-1: #fa622a; /* Was #ff6b35 */
    --c-accent-2: #f58338; /* Was #ff8c42 */
    --c-accent-3: #f2be4f; /* Was #ffc857 */
    
    --c-promo-bg1: #1652ae; /* Was #1A5CBF */
    --c-promo-bg2: #021028; /* Was #011431 */

    --grad-primary: linear-gradient(145deg, var(--c-accent-1) 0%, var(--c-accent-2) 45%, var(--c-accent-3) 100%);
    --grad-cards: linear-gradient(160deg, var(--c-promo-bg1) 0%, var(--c-promo-bg2) 100%);
    --grad-dark-cards: linear-gradient(135deg, var(--c-panel) 0%, var(--c-surface) 100%);
    
    --ff-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ff-code: 'Space Mono', 'Consolas', monospace;
    
    /* Tweaked typography clamp values */
    --s-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8rem);
    --s-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
    --s-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
    --s-md: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
    --s-lg: clamp(1.2rem, 1.1rem + 0.6vw, 1.35rem);
    --s-xl: clamp(1.4rem, 1.25rem + 0.8vw, 1.6rem);
    --s-2xl: clamp(1.7rem, 1.5rem + 1.2vw, 2.1rem);
    --s-3xl: clamp(2.1rem, 1.7rem + 2.2vw, 2.85rem);
    
    /* New Border Radii */
    --rad-sm: 8px;
    --rad-md: 12px;
    --rad-lg: 20px;
    --rad-xl: 28px;
    
    --anim-flow: cubic-bezier(0.25, 0.1, 0.25, 1);
    
    --wrap-md: 48rem;
    --wrap-xl: 82rem;
}

/* Base resets */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body { font-family: var(--ff-main); font-size: var(--s-base); font-weight: 400; line-height: 1.65; color: var(--c-text-grey); background: var(--c-base); overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; border-radius: inherit; }
a { color: inherit; text-decoration: none; cursor: pointer; transition: color 0.2s ease; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: transparent; border: none; }
strong { font-weight: 600; color: var(--c-white); }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--c-white); letter-spacing: -0.015em; }

/* Hidden SEO Block */
.mb-hidden-links { background: var(--c-dark); padding: 2.5rem 1.5rem; display: none; }
.mb-links-inner { display: flex; justify-content: center; flex-wrap: wrap; max-width: var(--wrap-md); margin: 0 auto; gap: 12px; }
.mb-links-inner a { color: var(--c-white); font-size: 15px; border: 1px solid rgba(255,255,255,0.4); border-radius: var(--rad-sm); padding: 12px 20px; text-align: center; min-width: 180px; }

/* Mobile Sticky Footer */
.mb-sticky-footer { display: none; position: fixed; right: 0; bottom: 0; left: 0; z-index: 999; align-items: center; padding: 12px 16px; justify-content: center; background: rgba(10, 35, 74, 0.95); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.08); box-shadow: 0 -4px 15px rgba(0,0,0,0.2); }
@media (max-width: 640px) {
    .mb-sticky-footer { display: flex; }
    header .mb-action-group { display: none; }
}

/* UI Components: Buttons */
.mb-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0.6rem 1.4rem; font-size: var(--s-sm); font-weight: 600; text-align: center; border-radius: var(--rad-md); white-space: nowrap; transition: all 0.3s var(--anim-flow); position: relative; z-index: 10; }
.mb-btn--ghost { color: var(--c-white); border: 2px solid rgba(255, 255, 255, 0.15); }
.mb-btn--ghost:hover { border-color: var(--c-accent-2); color: var(--c-accent-2); background: rgba(255,255,255,0.02); }
.mb-btn--lg { padding: 0.85rem 1.7rem; font-size: var(--s-base); }
.mb-btn--primary { background: var(--grad-primary); color: #0A234A; animation: btnPulse 1.8s infinite; box-shadow: 0 4px 15px rgba(250, 98, 42, 0.3); }
@keyframes btnPulse {
  0% { transform: scale(1); box-shadow: 0 0 8px rgba(250, 98, 42, 0.6); }
  50% { transform: scale(1.02); box-shadow: 0 0 22px rgba(250, 98, 42, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 8px rgba(250, 98, 42, 0.6); }
}

/* Global Layout & Nav */
.mb-top-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 35, 74, 0.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.mb-nav-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; max-width: var(--wrap-xl); margin: 0 auto; padding: 0.8rem 1.2rem; }
.mb-brand-logo { display: flex; align-items: center; font-weight: 700; color: var(--c-white); }
.mb-menu-trigger { display: none; flex-direction: column; gap: 6px; padding: 0.6rem; order: 3; }
.mb-trigger-line { width: 26px; height: 2px; background: var(--c-text-light); border-radius: 4px; }
@media (max-width: 1023px) { .mb-menu-trigger { display: flex; } }
.mb-menu-list { display: none; flex-direction: column; gap: 0.6rem; width: 100%; order: 4; padding: 1.2rem 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.mb-menu-list[data-open="true"] { display: flex; }
.mb-nav-item { display: block; padding: 0.6rem; font-size: var(--s-sm); font-weight: 500; color: #FFF; border-radius: var(--rad-sm); transition: background 0.2s; }
.mb-nav-item:hover { background: rgba(255,255,255,0.05); }
.mb-action-group { display: flex; align-items: center; gap: 0.8rem; }

/* Structural Spacing */
.mb-page-wrapper { padding-top: 5rem; }
.hx-hero-module, .cx-content-block, .rx-signup-flow, .tx-cta-wrap, .bx-promo-area, .px-evaluate-sec { padding: 2.5rem 1.25rem; }
.cx-bg-tint { background: rgba(0,0,0,0.12); box-shadow: inset 0 0 40px rgba(0,0,0,0.05); }

/* Block 1: Hero Section */
.hx-hero-module { position: relative; overflow: hidden; padding-top: 3rem; padding-bottom: 3rem; }
.hx-hero-layout { display: flex; flex-direction: column; gap: 2.5rem; max-width: var(--wrap-xl); margin: 0 auto; position: relative; z-index: 2; }
.hx-hero-text { flex: 1; max-width: 48rem; }
.hx-hero-visual { flex: 1; display: flex; align-items: center; justify-content: center; }
.hx-image-wrap { width: 100%; min-height: 320px; display: flex; align-items: center; justify-content: center; position: relative; border-radius: var(--rad-xl); }
.hx-badge { display: inline-block; padding: 0.35rem 0.85rem; margin-bottom: 1.2rem; font-size: var(--s-xs); font-weight: 700; text-transform: uppercase; color: var(--c-accent-1); background: rgba(250, 98, 42, 0.12); border: 1px solid rgba(250, 98, 42, 0.25); border-radius: 50px; letter-spacing: 0.5px; }
.hx-main-title { font-size: var(--s-3xl); margin-bottom: 1.2rem; }
.hx-subtitle { font-size: var(--s-md); color: var(--c-text-light); margin-bottom: 2rem; opacity: 0.9; }
.hx-promo-box { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); padding: 14px 24px; border-radius: var(--rad-lg); margin-bottom: 2rem; backdrop-filter: blur(8px); }
.hx-promo-txt { font-size: var(--s-sm); color: #B8C5DB; }
.hx-promo-highlight { font-size: var(--s-xl); font-weight: 800; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hx-btn-row { display: flex; flex-direction: column; gap: 1.2rem; }

/* Block 2: Stats Strip */
.ix-stats-bar { background: var(--c-dark); border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); overflow-x: auto; padding: 1rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.ix-stats-container { display: flex; gap: 2rem; padding: 0.5rem 1.5rem; min-width: max-content; justify-content: center; }
.ix-stat-item { display: flex; align-items: center; gap: 0.8rem; }
.ix-icon { font-size: var(--s-lg); opacity: 0.9; }
.ix-text-group { display: flex; flex-direction: column; }
.ix-label { font-size: var(--s-xs); color: var(--c-text-light); opacity: 0.7; }
.ix-value { font-size: var(--s-sm); font-weight: 700; color: var(--c-white); }

/* Block 3: Registration Steps */
.rx-container { display: flex; flex-direction: column; gap: 2rem; max-width: var(--wrap-xl); margin: 0 auto; }
.rx-header-text { text-align: center; }
.rx-tagline { display: inline-block; margin-bottom: 0.6rem; font-size: var(--s-xs); font-weight: 700; text-transform: uppercase; color: var(--c-accent-2); letter-spacing: 1px; }
.rx-heading { font-size: var(--s-2xl); margin-bottom: 1.2rem; }
.rx-description { font-size: var(--s-base); color: var(--c-text-light); margin-bottom: 2.5rem; max-width: 60rem; margin-left: auto; margin-right: auto; }
.rx-methods-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 1.5rem; }
.rx-method-card { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; padding: 2rem 1.5rem; background: var(--grad-cards); border-radius: var(--rad-lg); text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s ease; }
.rx-method-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.rx-card-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.rx-card-title { font-size: var(--s-base); font-weight: 600; color: var(--c-white); }
.rx-card-info { font-size: var(--s-sm); color: var(--c-text-light); opacity: 0.8; }

.rx-kyc-box { background: rgba(22, 82, 174, 0.4); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--rad-xl); padding: 2rem; text-align: left; display: flex; flex-direction: column; gap: 2rem; backdrop-filter: blur(10px); }
.rx-kyc-intro { flex: 1; }
.rx-kyc-title { display: inline-block; margin-bottom: 0.8rem; font-size: var(--s-md); font-weight: 700; color: var(--c-accent-3); }
.rx-kyc-text { font-size: var(--s-base); color: var(--c-text-light); }
.rx-steps-list { flex: 1.5; display: grid; grid-template-columns: 1fr; gap: 1rem; counter-reset: kyc-count; }
.rx-steps-list li { position: relative; padding: 1.2rem 1.2rem 1.2rem 3.5rem; background: rgba(0,0,0,0.2); border-radius: var(--rad-md); font-size: var(--s-sm); color: var(--c-text-grey); border: 1px solid rgba(255,255,255,0.03); }
.rx-steps-list li::before { content: counter(kyc-count); counter-increment: kyc-count; position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; width: 1.8rem; height: 1.8rem; font-size: var(--s-xs); font-weight: 800; color: var(--c-base); background: var(--c-accent-2); border-radius: 50%; box-shadow: 0 0 10px rgba(245, 131, 56, 0.4); }

/* Block 4: Promotions */
.bx-wrapper { max-width: var(--wrap-xl); margin: 0 auto; }
.bx-top-section { text-align: center; margin-bottom: 2.5rem; }
.bx-badge { display: inline-block; margin-bottom: 0.8rem; font-size: var(--s-xs); font-weight: 700; text-transform: uppercase; color: var(--c-accent-1); letter-spacing: 1px; }
.bx-main-title { font-size: var(--s-2xl); margin-bottom: 1rem; }
.bx-intro-text { font-size: var(--s-base); color: var(--c-text-light); max-width: 55rem; margin: 0 auto; }

.bx-hero-card { display: flex; flex-direction: column; margin-bottom: 2rem; background: var(--grad-dark-cards); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--rad-xl); overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.bx-hero-visual { min-height: 220px; display: flex; align-items: center; justify-content: center; background: #000; }
.bx-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.3s; }
.bx-hero-card:hover .bx-img { opacity: 1; }
.bx-hero-details { padding: 2rem; }
.bx-detail-label { display: block; font-size: var(--s-xs); font-weight: 800; text-transform: uppercase; color: var(--c-accent-2); margin-bottom: 0.5rem; }
.bx-detail-amount { display: block; font-size: var(--s-2xl); font-weight: 800; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1.5rem; }
.bx-instructions { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; padding-left: 1.2rem; color: var(--c-text-grey); font-size: var(--s-sm); list-style: circle; }

.bx-offers-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.bx-offer-item { display: flex; flex-direction: column; gap: 0.8rem; padding: 1.8rem; background: var(--grad-cards); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--rad-lg); box-shadow: inset 0 1px 1px rgba(255,255,255,0.05); }
.bx-icon { font-size: 2.2rem; }
.bx-title { font-size: var(--s-base); font-weight: 700; color: var(--c-white); }
.bx-text { font-size: var(--s-sm); color: var(--c-text-light); opacity: 0.8; }

/* Block 5 & 6: Apps, Casino, Sports General */
.cx-layout-flex { display: flex; flex-direction: column; gap: 2.5rem; max-width: var(--wrap-xl); margin: 0 auto; }
.cx-reverse { flex-direction: column-reverse; }
.cx-pic-frame { border-radius: var(--rad-xl); overflow: hidden; background: var(--grad-dark-cards); border: 1px solid rgba(255, 255, 255, 0.05); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 35px rgba(0,0,0,0.3); }
.cx-pic { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cx-pic-frame:hover .cx-pic { transform: scale(1.03); }
.cx-frame-wide { aspect-ratio: 16/9; }
.cx-minitag { display: inline-block; margin-bottom: 0.8rem; font-size: var(--s-xs); font-weight: 800; text-transform: uppercase; color: var(--c-accent-1); letter-spacing: 1px; }
.cx-heading { font-size: var(--s-2xl); margin-bottom: 1.2rem; }
.cx-paragraph { font-size: var(--s-base); color: var(--c-text-light); margin-bottom: 1.5rem; }
.cx-mt-fix { margin-top: 2rem; }

.cx-feature-list { display: flex; flex-direction: column; gap: 1rem; }
.cx-feature-item { display: flex; gap: 1rem; align-items: flex-start; padding: 0.5rem 0; }
.cx-check { flex-shrink: 0; font-size: 1.4rem; background: rgba(255,255,255,0.05); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.cx-check-text { font-size: var(--s-sm); color: var(--c-text-grey); align-self: center; }
.cx-btn-group { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

/* Casino Grid Redesign */
.gx-games-board { 
    display: grid; 
    grid-template-columns: 1fr; /* На десктопе, вероятно, у вас тут стоит 1fr 1fr в медиа-запросе */
    gap: 1rem; 
    margin: 2rem 0; 
}

.gx-slot-card { 
    display: grid; 
    grid-template-columns: max-content 1fr; /* Первая колонка под иконку, вторая под весь текст */
    column-gap: 1.2rem;
    align-items: flex-start; 
    padding: 1.5rem; 
    background: rgba(22, 82, 174, 0.15); 
    border: 1px solid rgba(255,255,255,0.06); 
    border-radius: var(--rad-md); 
    backdrop-filter: blur(5px); 
    transition: all 0.3s ease; 
}

.gx-slot-card:hover { 
    background: rgba(22, 82, 174, 0.3); 
    border-color: rgba(255,255,255,0.15); 
    transform: translateX(5px); 
}

.gx-icon-wrap { 
    grid-row: 1 / span 2; /* Заставляем иконку занимать две строки (рядом с заголовком и текстом) */
    font-size: 2rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 4rem; 
    height: 4rem; 
    background: rgba(0,0,0,0.2); 
    border-radius: var(--rad-sm); 
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.05); 
}

.gx-slot-title { 
    font-size: var(--s-base); 
    font-weight: 700; 
    color: var(--c-white); 
    margin-bottom: 0.2rem; 
    margin-top: 0; /* Сбрасываем отступы, чтобы сетка была ровной */
}

.gx-slot-desc { 
    font-size: var(--s-xs); 
    color: var(--c-text-light); 
    opacity: 0.8; 
    line-height: 1.4; 
    margin: 0; 
}

/* Pros/Cons Custom Panel */
.px-container { max-width: var(--wrap-xl); margin: 0 auto; }
.px-main-heading { font-size: var(--s-2xl); text-align: center; margin-bottom: 2.5rem; }
.px-split-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.px-panel { padding: 2.5rem; border-radius: var(--rad-xl); transition: transform 0.3s ease; backdrop-filter: blur(10px); }
.px-panel:hover { transform: translateY(-4px); }
.px-panel--positive { background: linear-gradient(160deg, rgba(16, 185, 129, 0.08) 0%, rgba(0,0,0,0.25) 100%); border: 1px solid rgba(16, 185, 129, 0.2); }
.px-panel--positive .px-panel-header { color: #10b981; }
.px-panel--negative { background: linear-gradient(160deg, rgba(239, 68, 68, 0.08) 0%, rgba(0,0,0,0.25) 100%); border: 1px solid rgba(239, 68, 68, 0.2); }
.px-panel--negative .px-panel-header { color: #ef4444; }
.px-panel-header { display: flex; align-items: center; gap: 0.8rem; font-size: var(--s-xl); font-weight: 800; margin-bottom: 1.8rem; }
.px-list-items { display: flex; flex-direction: column; gap: 1.2rem; }
.px-list-items li { position: relative; padding-left: 2.2rem; font-size: var(--s-sm); color: var(--c-white); }
.px-list-items li::before { position: absolute; left: 0; top: 0; font-size: 1.1rem; font-weight: 900; }
.px-panel--positive .px-list-items li::before { content: '✓'; color: #10b981; }
.px-panel--negative .px-list-items li::before { content: '✕'; color: #ef4444; }

/* Support Block Redesign */
.cx-container-center { display: flex; justify-content: center; width: 100%; max-width: var(--wrap-xl); margin: 0 auto; }
.cx-centered-info { text-align: center; width: 100%; }
.cx-paragraph-narrow { max-width: var(--wrap-md); margin-left: auto; margin-right: auto; }
.sx-contact-deck { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2rem; }
.sx-contact-card { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 2rem; background: var(--grad-cards); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--rad-lg); transition: all 0.2s ease; }
.sx-contact-card:hover { border-color: rgba(255,255,255,0.2); box-shadow: 0 8px 25px rgba(0,0,0,0.3); transform: translateY(-3px); }
.sx-icon { font-size: 2.6rem; }
.sx-title { font-size: var(--s-base); font-weight: 700; color: var(--c-white); }
.sx-data { font-size: var(--s-sm); color: var(--c-accent-3); font-weight: 600; }

/* CTA Bottom Banner */
.tx-cta-wrap { max-width: var(--wrap-xl); margin: 0 auto; }
.tx-cta-box { display: flex; flex-direction: column; background: var(--grad-cards); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--rad-xl); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.25); }
.tx-cta-textzone { flex: 1.6; padding: 2.5rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.tx-cta-heading { font-size: var(--s-2xl); margin-bottom: 1.2rem; }
.tx-cta-subtext { font-size: var(--s-base); color: var(--c-text-light); margin-bottom: 2rem; }
.tx-cta-imgzone { flex: 1; background-image: url('img-banner-bonus-desktop.webp'); background-repeat: no-repeat; background-position: center right; background-size: cover; min-height: 240px; }

/* Enhanced Footer */
.fx-site-footer { padding: 3rem 1.5rem 2rem; background: #071936; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.fx-footer-grid { max-width: var(--wrap-xl); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; }
.fx-brand-area { display: flex; flex-direction: column; gap: 1.5rem; }
.fx-legal-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.fx-payments { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.fx-pay-badge { display: flex; align-items: center; justify-content: center; padding: 5px 10px; font-size: 11px; font-weight: 800; color: var(--c-text-light); background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; }
.fx-nav-area { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.fx-nav-col { display: flex; flex-direction: column; gap: 0.8rem; }
.fx-nav-title { font-size: var(--s-sm); font-weight: 700; color: var(--c-white); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }
.fx-nav-links { display: flex; flex-direction: column; gap: 8px; }
.fx-nav-links a { font-size: var(--s-sm); color: var(--c-text-grey); }
.fx-nav-links a:hover { color: var(--c-accent-1); padding-left: 5px; }
.fx-footer-base { max-width: var(--wrap-xl); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.fx-copyright { font-size: 13px; color: rgba(255,255,255,0.5); }
.fx-age-limit { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; font-size: 13px; font-weight: 800; color: var(--c-white); background: #ef4444; border-radius: 50%; box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }

/* Responsive Adjustments */
@media (max-width: 1023px) {
    .hx-image-wrap { max-width: 600px; height: 200px; }
    .hx-image-wrap img { max-height: 380px; }
    .bx-img { max-height: 280px; }
}

@media (min-width: 640px) {
    .hx-btn-row { flex-direction: row; }
    .rx-methods-grid { grid-template-columns: repeat(3, 1fr); }
    .rx-steps-list { grid-template-columns: repeat(2, 1fr); }
    .bx-offers-grid { grid-template-columns: repeat(2, 1fr); }
    .gx-games-board { grid-template-columns: repeat(2, 1fr); }
    .px-split-layout { grid-template-columns: repeat(2, 1fr); }
    .sx-contact-deck { grid-template-columns: repeat(3, 1fr); }
    .cx-btn-group { flex-direction: row; }
    .fx-nav-area { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .mb-nav-container { flex-wrap: nowrap; padding: 1rem 2.5rem; }
    .mb-menu-list { display: flex; flex-direction: row; width: auto; order: 2; padding: 0; border-top: none; gap: 0.8rem; }
    .mb-action-group { order: 3; gap: 1.2rem; }
    
    .hx-hero-module, .cx-content-block, .rx-signup-flow, .tx-cta-wrap, .bx-promo-area, .px-evaluate-sec { padding: 4rem 2.5rem; }
    
    .hx-hero-layout { flex-direction: row; align-items: center; }
    .rx-kyc-box { flex-direction: row; align-items: center; padding: 3rem; }
    .bx-hero-card { flex-direction: row; }
    .bx-hero-visual, .bx-hero-details { flex: 1; }
    .bx-offers-grid { grid-template-columns: repeat(3, 1fr); }
    
    .cx-layout-flex { flex-direction: row; align-items: center; gap: 4rem; }
    .cx-media-pane, .cx-info-pane { flex: 1; }
    
    .gx-games-board { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
    
    .tx-cta-box { flex-direction: row; align-items: stretch; }
    .tx-cta-textzone { padding: 3.5rem 4rem; }
    
    .fx-footer-grid { grid-template-columns: 1fr 2.5fr; gap: 5rem; }
    .fx-footer-base { flex-direction: row; justify-content: space-between; align-items: center; }
}
