/* =============================================
   SNEKET CASINO — Main Stylesheet
   MOBILE-FIRST OPTIMIZED
   ============================================= */

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

:root {
    --primary: #e84393;
    --primary-dark: #c0392b;
    --accent: #ff6b35;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --bg-section-alt: #0e0e16;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #6c6c80;
    --border: #1e1e2e;
    --gradient-brand: linear-gradient(135deg, #e84393 0%, #ff6b35 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(232, 67, 147, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --container-width: 1200px;
    --header-h: 56px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

/* prevent iOS zoom on input focus */
input, select, textarea {
    font-size: 16px !important;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    letter-spacing: 0.02em;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}
.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 67, 147, 0.3);
}
.btn-primary:active {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(232, 67, 147, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:active {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ============ HEADER — MOBILE FIRST ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    height: var(--header-h);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-img {
    height: 30px;
    width: auto;
}
.main-nav {
    display: none;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
}
.nav-list a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-list a:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}
.header-actions {
    display: none;
    gap: 10px;
    flex-shrink: 0;
}
.header-actions .btn {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 16px 100px;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}
.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}
.mobile-nav-list {
    list-style: none;
}
.mobile-nav-list li {
    border-bottom: 1px solid var(--border);
}
.mobile-nav-list a {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    padding: 16px 4px;
    font-size: 1rem;
    font-weight: 500;
    min-height: 52px;
}
.mobile-actions {
    display: flex;
    gap: 12px;
    padding: 20px 0 10px;
    border-bottom: none !important;
}
.mobile-actions .btn {
    flex: 1;
    min-height: 48px;
    font-size: 0.95rem;
}

/* ============ STICKY MOBILE CTA BAR ============ */
.mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(232, 67, 147, 0.2);
    padding: 10px 16px;
    padding-bottom: calc(10px + var(--safe-bottom));
    gap: 10px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.mobile-cta-bar .btn {
    flex: 1;
    min-height: 46px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ============ HERO SLIDER ============ */
.hero-section {
    margin-top: var(--header-h);
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 260px;
    touch-action: pan-y pinch-zoom;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    will-change: opacity;
}
.hero-slide.active {
    opacity: 1;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    touch-action: manipulation;
    padding: 0;
}
.hero-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    width: 24px;
    border-radius: 5px;
}

/* ============ SECTIONS GENERAL ============ */
section {
    padding: 40px 0;
}
section:nth-child(even) {
    background: var(--bg-section-alt);
}

h1 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--text-primary);
}

h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 24px;
    max-width: 800px;
    line-height: 1.65;
}

/* INTRO */
.intro-section {
    padding-top: 32px;
    padding-bottom: 32px;
}
.intro-text p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ============ ADVANTAGES ============ */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.advantage-card {
    background: var(--bg-card);
    padding: 20px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.advantage-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0;
}
.advantage-card-text h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.55;
}

/* ============ INFO TABLES — MOBILE CARD VIEW ============ */
.info-table-wrap {
    margin-top: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 0.82rem;
}
.info-table caption {
    text-align: left;
    font-weight: 700;
    padding: 12px 16px;
    background: rgba(232, 67, 147, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}
.info-table th {
    background: rgba(255,255,255,0.03);
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    white-space: nowrap;
}
.info-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.8rem;
}
.info-table tr:last-child td {
    border-bottom: none;
}
.info-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* Mobile table scroll indicator */
.info-table-wrap {
    position: relative;
}
.info-table-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to right, transparent, var(--bg-dark));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.info-table-wrap.scrollable::after {
    opacity: 1;
}

/* ============ GAMES SECTION ============ */
.games-banner {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.games-list {
    list-style: none;
    margin-bottom: 12px;
}
.games-list li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.games-list li i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.games-list li strong {
    color: var(--text-primary);
}

/* ============ BONUSES ============ */
.banners-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.banner-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.banner-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
}
.bonus-badge {
    display: inline-block;
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}
.bonus-card h3 {
    font-size: 0.9rem;
}
.bonus-card p {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* ============ PROVIDERS ============ */
.providers-banner {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    list-style: none;
    margin-bottom: 24px;
}
.providers-grid li {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
    text-align: center;
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

/* ============ REGISTRATION STEPS ============ */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
.step-card h3 {
    font-size: 0.92rem;
    margin-bottom: 2px;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
}

.cta-block {
    text-align: center;
    margin-top: 24px;
}

/* ============ PAYMENTS ============ */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
}
.payment-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
}
.payment-card h3 {
    font-size: 0.88rem;
}
.payment-card p {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* ============ VIP LEVELS ============ */
.vip-levels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.vip-level {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
}
.vip-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: #fff;
}
.vip-icon.bronze { background: linear-gradient(135deg, #cd7f32, #b87333); }
.vip-icon.silver { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); }
.vip-icon.gold { background: linear-gradient(135deg, #ffd700, #daa520); }
.vip-icon.platinum { background: linear-gradient(135deg, #e84393, #ff6b35); }

.vip-level h3 { font-size: 0.92rem; }
.vip-level p {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* ============ SECURITY ============ */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
}
.security-card i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
}
.security-card h3 { font-size: 0.88rem; }
.security-card p {
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* ============ SUPPORT ============ */
.support-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    text-align: left;
}
.support-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0;
    flex-shrink: 0;
}
.support-card h3 { font-size: 0.92rem; margin-bottom: 2px; }
.support-card p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.45;
}

/* ============ FAQ ============ */
.faq-list {
    margin-bottom: 24px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    overflow: hidden;
    background: var(--bg-card);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    min-height: 52px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    gap: 8px;
}
.faq-question:active {
    background: rgba(255,255,255,0.03);
}
.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 400px;
}
.faq-answer p {
    padding: 0 16px 14px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ============ FINAL CTA ============ */
.final-cta-section {
    background: var(--gradient-dark);
    text-align: center;
    padding: 50px 0 80px;
}
.cta-content h2 {
    font-size: 1.5rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.banner-deposit-final {
    max-width: 340px;
    margin: 0 auto;
}

/* ============ FOOTER ============ */
.site-footer {
    background: #070710;
    padding: 40px 0 20px;
    padding-bottom: calc(80px + var(--safe-bottom));
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
.footer-logo {
    margin-bottom: 10px;
    height: 30px;
    width: auto;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}
.footer-col h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}
.footer-col ul li {
    margin-bottom: 0;
}
.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    min-height: 36px;
}
.footer-col ul a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.badge {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid var(--border);
}
.footer-legal {
    color: var(--text-muted);
    font-size: 0.72rem;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.5;
}
.footer-copy {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* ============ SCROLL TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 989;
    box-shadow: 0 4px 20px rgba(232, 67, 147, 0.3);
    touch-action: manipulation;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:active {
    transform: scale(0.92);
    color: #fff;
}

/* ==========================================================
   RESPONSIVE — TABLET (min-width: 600px)
   ========================================================== */
@media (min-width: 600px) {
    .container { padding: 0 20px; }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.35rem; }
    section { padding: 50px 0; }
    
    .hero-slider { max-height: 320px; }
    
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .advantage-card {
        display: block;
        padding: 24px 20px;
    }
    .advantage-icon { margin-bottom: 12px; }
    
    .bonus-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .bonus-badge { font-size: 1.4rem; }
    .bonus-card { padding: 20px 16px; }
    .bonus-card p { font-size: 0.82rem; }
    
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    
    .providers-grid { grid-template-columns: repeat(4, 1fr); }
    .providers-grid li { font-size: 0.8rem; padding: 12px 8px; }
    
    .support-channels { grid-template-columns: repeat(3, 1fr); }
    .support-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-col ul { flex-direction: column; }
}

/* ==========================================================
   RESPONSIVE — DESKTOP (min-width: 1024px)
   ========================================================== */
@media (min-width: 1024px) {
    :root {
        --header-h: 70px;
    }
    
    .container { padding: 0 24px; }
    
    /* Header desktop */
    .main-nav {
        display: flex;
        flex: 1;
        justify-content: center;
    }
    .header-actions {
        display: flex;
    }
    .mobile-menu-btn { display: none; }
    .mobile-cta-bar { display: none !important; }
    
    .logo-img { height: 38px; }
    
    h1 { font-size: 2.2rem; line-height: 1.25; margin-bottom: 24px; }
    h2 { font-size: 1.75rem; margin-bottom: 16px; }
    h3 { font-size: 1.15rem; margin-bottom: 8px; }
    .section-desc { font-size: 1.05rem; margin-bottom: 32px; }
    
    section { padding: 70px 0; }
    .intro-section { padding-top: 50px; padding-bottom: 50px; }
    .intro-text p { font-size: 1.05rem; line-height: 1.8; }
    
    /* Hero */
    .hero-slider { aspect-ratio: 2 / 1; max-height: 520px; }
    .hero-dots { bottom: 20px; }
    .hero-dot { width: 12px; height: 12px; }
    .hero-dot.active { width: 12px; border-radius: 50%; }
    
    /* Advantages */
    .advantages-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
    .advantage-card {
        display: block;
        padding: 30px 24px;
        transition: var(--transition);
    }
    .advantage-card:hover {
        border-color: rgba(232, 67, 147, 0.3);
        transform: translateY(-4px);
        box-shadow: var(--shadow-glow);
    }
    .advantage-icon { width: 56px; height: 56px; min-width: 56px; border-radius: 14px; font-size: 1.4rem; margin-bottom: 16px; }
    .advantage-card p { font-size: 0.92rem; }
    
    /* Tables */
    .info-table { font-size: 0.92rem; }
    .info-table caption { padding: 16px 20px; font-size: 0.95rem; }
    .info-table th { padding: 14px 20px; font-size: 0.88rem; }
    .info-table td { padding: 12px 20px; font-size: 0.88rem; }
    .info-table-wrap::after { display: none; }
    
    /* Games */
    .games-banner { border-radius: var(--radius-lg); margin-bottom: 28px; }
    .games-list li { padding: 10px 0; font-size: 1rem; }
    
    /* Bonuses */
    .banners-row { grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
    .banner-card { border-radius: var(--radius-lg); }
    .banner-card:hover {
        border-color: rgba(232, 67, 147, 0.3);
        box-shadow: var(--shadow-glow);
    }
    .bonus-cards { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
    .bonus-card {
        padding: 24px 20px;
        transition: var(--transition);
    }
    .bonus-card:hover { border-color: rgba(232, 67, 147, 0.3); transform: translateY(-4px); }
    .bonus-badge { font-size: 1.6rem; padding: 8px 20px; }
    .bonus-card h3 { font-size: 1.05rem; }
    .bonus-card p { font-size: 0.88rem; }
    
    /* Providers */
    .providers-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .providers-grid li {
        padding: 14px;
        font-size: 0.85rem;
        transition: var(--transition);
    }
    .providers-grid li:hover {
        border-color: var(--primary);
        color: var(--text-primary);
        background: var(--bg-card-hover);
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 32px;
    }
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .step-number { width: 48px; height: 48px; min-width: 48px; font-size: 1.3rem; margin: 0 auto 16px; }
    .step-card p { font-size: 0.9rem; }
    
    /* Payments */
    .payment-methods { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
    .payment-card {
        padding: 28px 20px;
        transition: var(--transition);
    }
    .payment-card:hover { border-color: rgba(232, 67, 147, 0.3); }
    .payment-card i { font-size: 2.2rem; margin-bottom: 12px; }
    .payment-card h3 { font-size: 1rem; }
    .payment-card p { font-size: 0.88rem; }
    
    /* VIP */
    .vip-levels { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
    .vip-level {
        padding: 28px 20px;
        transition: var(--transition);
    }
    .vip-level:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
    .vip-icon { width: 56px; height: 56px; font-size: 1.5rem; }
    .vip-level h3 { font-size: 1.05rem; }
    .vip-level p { font-size: 0.88rem; }
    
    /* Security */
    .security-features { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
    .security-card {
        padding: 28px 20px;
        transition: var(--transition);
    }
    .security-card:hover { border-color: rgba(232, 67, 147, 0.3); }
    .security-card i { font-size: 2rem; margin-bottom: 12px; }
    .security-card h3 { font-size: 1rem; }
    .security-card p { font-size: 0.88rem; }
    
    /* Support */
    .support-channels { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .support-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        transition: var(--transition);
    }
    .support-card:hover { border-color: rgba(232, 67, 147, 0.3); transform: translateY(-4px); }
    .support-card i { font-size: 2.4rem; margin-bottom: 14px; }
    .support-card p { font-size: 0.9rem; }
    
    /* FAQ */
    .faq-question { padding: 18px 20px; font-size: 1rem; }
    .faq-question:hover { background: rgba(255,255,255,0.02); }
    .faq-answer p { padding: 0 20px 18px; font-size: 0.95rem; }
    
    /* Final CTA */
    .final-cta-section { padding: 80px 0; }
    .cta-content h2 { font-size: 2.2rem; }
    .cta-content p { font-size: 1.1rem; margin-bottom: 32px; }
    .banner-deposit-final { max-width: 500px; }
    
    /* Footer */
    .site-footer { padding: 60px 0 30px; padding-bottom: 30px; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
    .footer-logo { height: auto; }
    .footer-col ul { flex-direction: column; gap: 0; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul a { font-size: 0.88rem; min-height: auto; padding: 2px 0; }
    .footer-desc { font-size: 0.88rem; }
    .footer-col h4 { font-size: 0.95rem; }
    .badge { padding: 6px 16px; font-size: 0.8rem; }
    .footer-legal { font-size: 0.8rem; }
    .footer-copy { font-size: 0.78rem; }
    
    /* Scroll top */
    .scroll-top { bottom: 30px; right: 30px; width: 48px; height: 48px; font-size: 1.2rem; }
    .scroll-top:hover { transform: translateY(-4px); color: #fff; }
}

/* ==========================================================
   TOUCH DEVICE OPTIMIZATIONS
   ========================================================== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch */
    .advantage-card:hover,
    .bonus-card:hover,
    .banner-card:hover,
    .payment-card:hover,
    .vip-level:hover,
    .security-card:hover,
    .support-card:hover,
    .providers-grid li:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--border);
        background: var(--bg-card);
    }
    .btn-primary:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(232, 67, 147, 0.3);
    }
    .scroll-top:hover {
        transform: none;
    }
}

/* ==========================================================
   LANDSCAPE PHONE FIX
   ========================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        max-height: 180px;
    }
    .mobile-menu {
        padding-bottom: 60px;
    }
    section {
        padding: 28px 0;
    }
}

/* ==========================================================
   VERY SMALL SCREENS (320px)
   ========================================================== */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    h1 { font-size: 1.2rem; }
    h2 { font-size: 1.05rem; }
    .bonus-cards { grid-template-columns: 1fr; }
    .vip-levels { grid-template-columns: 1fr; }
    .security-features { grid-template-columns: 1fr; }
    .payment-methods { grid-template-columns: 1fr; }
    .providers-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-badge { font-size: 1rem; }
    .mobile-cta-bar .btn { font-size: 0.82rem; padding: 10px 12px; }
}
