/* ========================================
   VODKA CASINO - Official Style
   ======================================== */

:root {
    /* Colors - Official Vodka.bet palette */
    --bg-dark: #0d1117;
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --bg-elevated: #334155;
    --bg-input: #1a2332;
    
    --blue-primary: #3b82f6;
    --blue-light: #60a5fa;
    --blue-dark: #2563eb;
    --blue-glow: rgba(59, 130, 246, 0.3);
    
    --green-primary: #22c55e;
    --green-light: #4ade80;
    --green-dark: #16a34a;
    
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.15);
    
    --gold: #fbbf24;
    --bronze: #cd7f32;
    --silver: #9ca3af;
    --platinum: #e5e7eb;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a:hover {
    color: var(--blue-light);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.btn-green {
    background: var(--green-primary);
    color: white;
    font-weight: 700;
}

.btn-green:hover {
    background: var(--green-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--bg-card);
    color: var(--text-muted);
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
}

.header-links, .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.header-link:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.header-link.highlight {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-light);
}

.vodka-text {
    color: var(--blue-primary);
    font-weight: 700;
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 24px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-white);
}

.logo-text {
    color: var(--text-white);
}

.logo-d {
    color: var(--blue-primary);
}

.logo-bet {
    color: var(--text-muted);
    font-weight: 600;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--blue-primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--bg-elevated);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Header */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo img {
    height: 28px;
    width: auto;
}

.mobile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    transition: var(--transition);
}

.mobile-icon:hover {
    color: var(--text-white);
}

.mobile-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
}

.balance-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.balance-amount {
    color: var(--text-white);
}

.balance-currency {
    color: var(--text-dim);
    font-size: 12px;
}

.mobile-balance i {
    color: var(--text-dim);
    font-size: 10px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.desktop-only {
    display: flex;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 20px 0;
}

.hero-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: #0a1628;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 60px;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.hero-bonus {
    margin-bottom: 20px;
}

.bonus-percent {
    font-size: 110px;
    font-weight: 900;
    line-height: 0.9;
    color: #22c55e;
    display: block;
    text-shadow: 0 4px 30px rgba(34, 197, 94, 0.4);
}

.bonus-text {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
}

.feature-value {
    font-size: 36px;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
}

.feature-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 5px;
}

.hero-girl {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 110%;
    z-index: 1;
    pointer-events: none;
}

.hero-girl img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--blue-primary);
    width: 24px;
    border-radius: 5px;
}

/* ========================================
   LIVE WINS
   ======================================== */
.live-wins {
    padding: 20px 0;
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
}

.win-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.win-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-2px);
}

.win-card img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    object-fit: cover;
}

.win-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.win-type.mega { color: #ef4444; }
.win-type.jumbo { color: #f97316; }
.win-type.good { color: #22c55e; }
.win-type.super { color: #a855f7; }
.win-type.big { color: #3b82f6; }

.win-amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
}

.win-user {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ========================================
   GAMES NAVIGATION
   ======================================== */
.games-nav {
    padding: 20px 0;
}

.games-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.nav-arrow {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    color: var(--text-white);
    border-color: var(--border-light);
}

.games-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
}

.games-tabs::-webkit-scrollbar {
    display: none;
}

.game-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.game-tab:hover {
    color: var(--text-white);
    border-color: var(--border-light);
}

.game-tab.active {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: white;
}

.game-tab i {
    font-size: 14px;
}

.tab-count {
    font-size: 10px;
    opacity: 0.7;
}

/* Hide tab text on small screens, show only icon */
@media (max-width: 768px) {
    .games-tabs {
        gap: 6px;
    }
    
    .game-tab {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .game-tab .tab-count {
        display: none;
    }
}

.providers-dropdown {
    flex-shrink: 0;
}

.providers-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.providers-btn:hover {
    color: var(--text-white);
    border-color: var(--border-light);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.search-bar i {
    color: var(--text-dim);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 14px;
    outline: none;
}

.search-bar input::placeholder {
    color: var(--text-dim);
}

/* ========================================
   JACKPOT SECTION
   ======================================== */
.jackpot-section {
    padding: 30px 0;
}

.jackpot-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 24px 40px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.jackpot-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 30%);
    pointer-events: none;
}

.jackpot-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    border-radius: var(--radius-md);
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 0 30px var(--blue-glow);
}

.jackpot-content {
    text-align: center;
    z-index: 1;
}

.jackpot-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.jackpot-amount {
    font-size: 40px;
    font-weight: 900;
    color: var(--blue-light);
    text-shadow: 0 0 40px var(--blue-glow);
}

.jackpot-subtitle {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

h1.section-title {
    font-size: 32px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px 0;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--blue-primary);
}

.feature-card i {
    font-size: 20px;
    color: var(--blue-primary);
}

.feature-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

/* ========================================
   REGISTRATION SECTION
   ======================================== */
.registration {
    background: var(--bg-dark);
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.reg-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.steps-list {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: var(--transition);
}

.step-item:hover {
    border-color: var(--blue-primary);
}

.step-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

.step-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 20px;
}

.data-table th,
.data-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background: var(--bg-elevated);
    color: var(--text-white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.data-table td {
    color: var(--text-muted);
    font-size: 14px;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Registration Card */
.reg-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.reg-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-card h3 i {
    color: var(--blue-primary);
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 14px;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--blue-primary);
}

.form-field input::placeholder {
    color: var(--text-dim);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: 20px;
}

.checkbox-label input {
    margin-top: 2px;
    accent-color: var(--blue-primary);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

/* Registration Sidebar */
.reg-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}

/* App Card */
.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.app-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.app-card-header i {
    font-size: 24px;
    color: var(--blue-primary);
}

.app-card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.app-card > p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-light);
    transition: var(--transition);
}

.app-btn:hover {
    border-color: var(--blue-primary);
    color: var(--text-white);
}

.app-btn i {
    font-size: 24px;
}

.app-btn.android i { color: #3ddc84; }
.app-btn.ios i { color: #fff; }
.app-btn.windows i { color: #00a4ef; }

.app-btn div {
    display: flex;
    flex-direction: column;
}

.app-btn span {
    font-size: 10px;
    color: var(--text-dim);
}

.app-btn strong {
    font-size: 14px;
    font-weight: 600;
}

/* VPN Card */
.vpn-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1px solid var(--blue-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    position: relative;
}

.vpn-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--blue-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.vpn-card > i {
    font-size: 36px;
    color: var(--blue-primary);
    margin-bottom: 12px;
}

.vpn-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.vpn-card > p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Telegram Card */
.tg-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.05));
    border: 1px solid #0088cc;
    border-radius: var(--radius-lg);
}

.tg-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0088cc;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.tg-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.tg-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.tg-info strong {
    color: #0088cc;
}

/* ========================================
   MIRROR SECTION
   ======================================== */
.mirror-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.mirror-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mirror-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 30px 0;
}

.method-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.method-card:hover {
    border-color: var(--blue-primary);
}

.method-card.highlight {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--blue-primary);
}

.method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    color: var(--blue-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.method-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.method-text p {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0;
}

.warning-box {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    margin-top: 20px;
}

.warning-box i {
    color: #f59e0b;
    font-size: 18px;
    flex-shrink: 0;
}

.warning-box strong {
    color: #f59e0b;
}

.warning-box div {
    font-size: 14px;
    color: var(--text-muted);
}

/* Mirror Card */
.mirror-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.mirror-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    background: var(--blue-primary);
    color: white;
    font-weight: 600;
}

.mirror-card-body {
    padding: 24px;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 20px;
    color: var(--green-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.mirror-domain {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.mirror-date {
    font-size: 13px;
    color: var(--text-dim);
}

.mirror-card-actions {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ========================================
   BONUSES SECTION
   ======================================== */
.bonuses {
    background: var(--bg-dark);
}

.bonuses-intro, .bonuses-note {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 40px;
}

.bonuses-note {
    margin-top: 40px;
    margin-bottom: 0;
}

.bonuses-intro p, .bonuses-note p {
    font-size: 15px;
    color: var(--text-muted);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.bonus-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-4px);
}

.bonus-card.main {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.15) 0%, var(--bg-card) 100%);
    border-color: var(--blue-primary);
}

.bonus-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border-radius: 50%;
    font-size: 24px;
    color: var(--blue-primary);
}

.bonus-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-light);
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.bonus-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-list li i {
    color: var(--green-primary);
}

/* ========================================
   LOYALTY SECTION
   ======================================== */
.loyalty-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.loyalty-intro p {
    font-size: 15px;
    color: var(--text-muted);
}

/* 11 Levels Grid */
.levels-grid-11 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.level-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.level-card-v2:hover {
    border-color: var(--blue-primary);
    transform: translateY(-3px);
}

.lvl-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
}

.lvl-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* Level colors */
.lvl-1 .lvl-icon { background: linear-gradient(135deg, #6366f1, #4f46e5); color: white; }
.lvl-2 .lvl-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; }
.lvl-3 .lvl-icon { background: linear-gradient(135deg, #ec4899, #db2777); color: white; }
.lvl-4 .lvl-icon { background: linear-gradient(135deg, #f97316, #ea580c); color: white; }
.lvl-5 .lvl-icon { background: linear-gradient(135deg, #cd7f32, #8b4513); color: white; }
.lvl-6 .lvl-icon { background: linear-gradient(135deg, #22c55e, #16a34a); color: white; }
.lvl-7 .lvl-icon { background: linear-gradient(135deg, #fbbf24, #d97706); color: #000; }
.lvl-8 .lvl-icon { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
.lvl-9 .lvl-icon { background: linear-gradient(135deg, #f97316, #c2410c); color: white; }
.lvl-10 .lvl-icon { background: linear-gradient(135deg, #a855f7, #7c3aed); color: white; }
.lvl-11 .lvl-icon { background: linear-gradient(135deg, #f59e0b, #b45309); color: white; box-shadow: 0 0 20px rgba(245, 158, 11, 0.4); }

.lvl-11 { border-color: var(--gold); }
.lvl-11 .lvl-num { background: var(--gold); color: #000; }

.level-card-v2 h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.lvl-points {
    font-size: 11px;
    color: var(--text-dim);
    display: block;
    margin-bottom: 12px;
}

.lvl-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.lvl-rewards span {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.lvl-rewards span i {
    font-size: 10px;
    color: var(--blue-primary);
}

.loyalty-table-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow-x: auto;
}

.loyalty-table-wrap h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-white);
}

.loyalty-full-table {
    min-width: 600px;
}

.level-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    min-width: 36px;
    text-align: center;
}

.level-badge.lvl-1 { background: linear-gradient(135deg, #6366f1, #4f46e5); color: white; }
.level-badge.lvl-2 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; }
.level-badge.lvl-3 { background: linear-gradient(135deg, #ec4899, #db2777); color: white; }
.level-badge.lvl-4 { background: linear-gradient(135deg, #f97316, #ea580c); color: white; }
.level-badge.lvl-5 { background: linear-gradient(135deg, #cd7f32, #8b4513); color: white; }
.level-badge.lvl-6 { background: linear-gradient(135deg, #22c55e, #16a34a); color: white; }
.level-badge.lvl-7 { background: linear-gradient(135deg, #fbbf24, #d97706); color: #000; }
.level-badge.lvl-8 { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
.level-badge.lvl-9 { background: linear-gradient(135deg, #f97316, #c2410c); color: white; }
.level-badge.lvl-10 { background: linear-gradient(135deg, #a855f7, #7c3aed); color: white; }
.level-badge.lvl-11 { background: linear-gradient(135deg, #f59e0b, #b45309); color: white; }

.loyalty-note {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
}

.loyalty-note p {
    font-size: 14px;
    color: var(--text-dim);
}

.data-table .fa-check { color: var(--green-primary); }
.data-table .fa-times { color: var(--text-dim); }

/* ========================================
   PAYMENTS SECTION
   ======================================== */
.payments {
    background: var(--bg-dark);
}

.payments-intro, .payments-note {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.payments-note {
    margin-top: 40px;
    margin-bottom: 0;
}

.payments-intro p, .payments-note p {
    font-size: 15px;
    color: var(--text-muted);
}

/* New Payments Grid */
.payments-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.payment-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.payment-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white;
}

.payment-block-header.withdraw {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
}

.payment-block-header i {
    font-size: 18px;
}

.payment-block-header h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.limits-badge {
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px;
}

.pm-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.pm-item:hover {
    background: var(--bg-main);
}

.pm-item.has-bonus {
    border: 1px solid var(--green-primary);
}

.pm-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.pm-icon.sbp { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.pm-icon.sber { background: linear-gradient(135deg, #22c55e, #16a34a); }
.pm-icon.tpay, .pm-icon.tbank { background: linear-gradient(135deg, #fbbf24, #d97706); }
.pm-icon.bank { background: linear-gradient(135deg, #ec4899, #db2777); }
.pm-icon.alfa { background: linear-gradient(135deg, #ef4444, #dc2626); }
.pm-icon.vtb { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.pm-icon.ozon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.pm-icon.usdt { background: linear-gradient(135deg, #22c55e, #15803d); }
.pm-icon.piastrix { background: linear-gradient(135deg, #ec4899, #be185d); }
.pm-icon.crypto { background: linear-gradient(135deg, #f97316, #c2410c); }
.pm-icon.cash { background: linear-gradient(135deg, #22c55e, #16a34a); }
.pm-icon.phone { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.pm-icon.pay { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.pm-item span:not(.pm-bonus):not(.pm-icon) {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
}

.pm-bonus {
    position: absolute;
    top: -6px;
    right: -6px;
    padding: 2px 8px;
    background: var(--blue-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
}

.pm-bonus.green {
    background: var(--green-primary);
}

.deposit-bonus-info {
    display: flex;
    gap: 12px;
    padding: 16px;
    margin: 0 16px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
}

.deposit-bonus-info i {
    color: var(--green-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.deposit-bonus-info strong {
    display: block;
    color: var(--green-primary);
    font-size: 14px;
    margin-bottom: 4px;
}

.deposit-bonus-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.payments-table-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow-x: auto;
}

.payments-table-wrap h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
}

/* ========================================
   PROVIDERS SECTION
   ======================================== */
.providers-intro, .providers-note {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.providers-note {
    margin-top: 40px;
    margin-bottom: 0;
}

.providers-intro p, .providers-note p {
    font-size: 15px;
    color: var(--text-muted);
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.provider-tag {
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.provider-tag:hover {
    border-color: var(--blue-primary);
    color: var(--text-white);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--blue-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--blue-primary);
}

.faq-question i {
    color: var(--text-dim);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--blue-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--blue-primary);
}

.footer-providers {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.providers-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.providers-row span {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 500;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.age-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-dim);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dim);
    flex-shrink: 0;
}

.footer-legal p {
    font-size: 12px;
    color: var(--text-dim);
    max-width: 600px;
}

.footer-badges {
    font-size: 12px;
    color: var(--text-dim);
}

/* ========================================
   MODALS
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--blue-primary);
    color: white;
}

.modal-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    text-align: center;
}

.modal-form .form-field {
    margin-bottom: 16px;
}

.modal-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.modal-links a {
    color: var(--blue-primary);
}

.modal-links p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .wins-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .levels-grid-11 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .burger {
        display: flex;
    }
    
    .nav {
        padding: 6px 0;
    }
    
    .reg-grid,
    .mirror-grid {
        grid-template-columns: 1fr;
    }
    
    .reg-card,
    .mirror-card,
    .reg-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .payments-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wins-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-banner {
        padding: 30px 20px;
        min-height: 280px;
        background-position: right center;
    }
    
    .hero-content {
        max-width: 60%;
    }
    
    .bonus-percent {
        font-size: 60px;
    }
    
    .bonus-text {
        font-size: 22px;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 20px;
        margin-top: 15px;
    }
    
    .feature-value {
        font-size: 22px;
    }
    
    .feature-label {
        font-size: 9px;
    }
    
    .hero-girl {
        height: 100%;
        right: -30px;
    }
    
    .jackpot-banner {
        flex-wrap: wrap;
        padding: 20px;
        gap: 16px;
    }
    
    .jackpot-amount {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .levels-grid-11 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mirror-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .wins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-nav-wrapper {
        flex-wrap: wrap;
    }
    
    .hero-banner {
        padding: 20px 16px;
        min-height: 220px;
    }
    
    .hero-content {
        max-width: 55%;
    }
    
    .bonus-percent {
        font-size: 46px;
    }
    
    .bonus-text {
        font-size: 16px;
    }
    
    .hero-features {
        gap: 12px;
        margin-top: 10px;
    }
    
    .feature-value {
        font-size: 18px;
    }
    
    .feature-label {
        font-size: 8px;
    }
    
    .hero-girl {
        right: -50px;
    }
    
    .jackpot-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .jackpot-amount {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .levels-grid-11 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .level-card-v2 {
        padding: 14px 10px;
    }
    
    .lvl-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
}

.mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--text-muted);
    font-size: 10px;
    text-decoration: none;
    transition: var(--transition);
    min-width: 60px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    line-height: 1;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: var(--blue-primary);
}

.mobile-bottom-nav .nav-item.center {
    background: var(--blue-primary);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.mobile-bottom-nav .nav-item.center i {
    font-size: 24px;
    margin: 0;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .footer {
        padding-bottom: 80px;
    }
}
