/* ==================== ADJARABET CASINO - FUTURISTIC ASYMMETRIC DESIGN ==================== */

:root {
    --primary: #E31E24;
    --primary-glow: rgba(227, 30, 36, 0.4);
    --dark: #0A0A0A;
    --darker: #050505;
    --card: #151515;
    --text: #FFFFFF;
    --text-dim: #999999;
    --border: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ==================== STICKY SIDE NAV ==================== */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: var(--darker);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    z-index: 1000;
}

.side-nav-logo {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 50px;
    cursor: pointer;
}

.side-nav-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.side-nav-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dim);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.side-nav-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s;
}

.side-nav-item:hover {
    color: var(--primary);
}

.side-nav-item:hover::before {
    height: 30px;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 80px;
    right: 0;
    height: 70px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 999;
}

.top-bar-brand {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
}

.top-bar-brand span {
    color: var(--primary);
}

.top-bar-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: var(--primary);
    color: white;
}

.action-btn:hover {
    background: #B91519;
    transform: translateY(-2px);
}

.action-btn.outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.action-btn.outline:hover {
    background: var(--primary);
    color: white;
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    margin-left: 80px;
    padding-top: 70px;
}

/* ==================== HERO FULLSCREEN ==================== */
.hero-fullscreen {
    height: calc(100vh - 70px);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    position: relative;
}

.hero-left {
    background: linear-gradient(135deg, var(--dark) 0%, #1a0505 100%);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.hero-label {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(227, 30, 36, 0.2);
    border-left: 3px solid var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    width: fit-content;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-title .red {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.cta-primary {
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.cta-secondary {
    padding: 18px 40px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-right {
    background: var(--darker);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.jackpot-display-big {
    text-align: center;
}

.jackpot-label-big {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.jackpot-amount-big {
    font-size: 96px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 60px var(--primary-glow);
}

.jackpot-subtitle-big {
    font-size: 16px;
    color: var(--text-dim);
}

/* ==================== GAMES HORIZONTAL SCROLL ==================== */
.games-scroll-section {
    padding: 80px 0;
    background: var(--dark);
}

.section-header-inline {
    padding: 0 80px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title-inline {
    font-size: 42px;
    font-weight: 900;
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
}

.games-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 0 80px 20px;
    scroll-behavior: smooth;
}

.games-scroll::-webkit-scrollbar {
    height: 8px;
}

.games-scroll::-webkit-scrollbar-track {
    background: var(--darker);
}

.games-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.game-card-scroll {
    min-width: 280px;
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.game-card-scroll:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.game-image-scroll {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #8B0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.game-info-scroll {
    padding: 20px;
}

.game-name-scroll {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-provider-scroll {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* ==================== SPLIT FEATURE SECTION ==================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-left {
    background: var(--darker);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    background: var(--card);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(227, 30, 36, 0.2);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    width: fit-content;
}

.split-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.split-text {
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ==================== GRID FEATURES ==================== */
.grid-features {
    padding: 100px 80px;
    background: var(--dark);
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon-big {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title-small {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-text-small {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ==================== FOOTER MINIMAL ==================== */
.footer-minimal {
    background: var(--darker);
    border-top: 1px solid var(--border);
    padding: 60px 80px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-brand span {
    color: var(--primary);
}

.footer-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 13px;
    color: var(--text-dim);
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-dim);
}

.footer-badge {
    padding: 6px 14px;
    background: var(--primary);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

/* ==================== MOBILE ==================== */
@media (max-width: 1024px) {
    .side-nav {
        width: 70px;
    }
    
    .main-content {
        margin-left: 70px;
    }
    
    .top-bar {
        left: 70px;
    }
    
    .hero-fullscreen {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        display: none;
    }
    
    .split-section {
        grid-template-columns: 1fr;
    }
    
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .side-nav {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .top-bar {
        left: 0;
        padding: 15px 20px;
    }
    
    .top-bar-brand {
        font-size: 16px;
    }
    
    .action-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-left {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .jackpot-display-big {
        padding: 30px;
    }
    
    .jackpot-amount-big {
        font-size: 60px;
    }
    
    .games-scroll {
        padding: 0 20px 20px;
    }
    
    .section-header-inline {
        padding: 0 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-title-inline {
        font-size: 24px;
    }
    
    .split-section {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .split-title {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .split-text {
        font-size: 14px;
    }
    
    .feature-list {
        gap: 12px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .grid-features {
        padding: 40px 20px;
    }
    
    .features-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .feature-title-small {
        font-size: 18px;
    }
    
    .footer-minimal {
        padding: 40px 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-label {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .split-title {
        font-size: 24px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .split-badge {
        font-size: 9px;
        padding: 6px 12px;
    }
    
    .section-title-inline {
        font-size: 20px;
    }
    
    .jackpot-amount-big {
        font-size: 48px;
    }
    
    .jackpot-label-big {
        font-size: 11px;
    }
    
    .jackpot-subtitle-big {
        font-size: 12px;
    }
}
