:root {
    --bg-dark: #0a519e;
    --nav-dark: #036;
    --orange: #ff3800;
    --yellow: #f8c31e;
    --white: #ffffff;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    margin: 0;
    overflow-x: hidden; /* Sağ tərəfə sürüşmənin qarşısını alır */
}
.btn-login-top {

    background: transparent;

    border: 1px solid var(--white);

    color: var(--white);

    font-weight: bold;

    font-size: 12px;

    padding: 6px 15px;

    white-space: nowrap;

}



.btn-reg-top {

    background: var(--orange);

    color: #000;

    font-weight: 800;

    font-size: 12px;

    padding: 6px 15px;

    border: none;

    white-space: nowrap;

} 
/* Mövcud CSS-ə əlavələr */
#mainNav {
    background-color: var(--nav-dark) !important; /* var(--nav-dark) əvəzi */
    border-bottom: 2px solid #ff9800; /* var(--orange) əvəzi */
    padding: 10px 0;
}

/* Menyu linklərinin stili */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 15px !important;
    transition: 0.3s;
}

.navbar-brand {

    font-weight: 900;

    font-size: 26px;

    color: var(--orange) !important;

}

.navbar-nav .nav-link:hover {
    color: #ff9800 !important;
}

/* Mobil tənzimləmə */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--nav-dark) !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        border-bottom: 2px solid #ff9800;
    }
    
    /* Düymələrin mobildə daha kiçik və səliqəli görünməsi üçün */
    .btn-login-top, .btn-reg-top {
        padding: 5px 10px !important;
        font-size: 11px !important;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
}

/* Hamburger ikonun rəngi (ağ çıxması üçün) */
.navbar-toggler {
    border-color: rgba(255,255,255,0.1);
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* Hero Section */
.text-orange { color: var(--orange); }
.hero-section { background: linear-gradient(180deg, var(--nav-dark) 0%, var(--bg-dark) 100%); }

/* Oyun Grid-i */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 130px);
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.game-item {
    width: 130px;
    height: 130px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-item:hover {
    transform: scale(1.08);
    border-color: var(--orange);
    box-shadow: 0 0 15px var(--orange);
}

.game-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    font-size: 10px;
    text-align: center;
    padding: 3px 0;
}

/* Başlıqlar */
.section-title {
    font-weight: 800;
    border-left: 5px solid var(--orange);
    padding-left: 15px;
    color: var(--white);
}

/* Bonus Kartları */
.bonus-card {
    background: var(--nav-dark);
    padding: 30px;
    border-radius: 15px;
    border-bottom: 4px solid var(--orange);
    height: 100%;
    transition: 0.3s;
}

.bonus-card.highlighted {
    background: linear-gradient(145deg, var(--orange), var(--yellow));
    color: #fff;
    border-bottom: 4px solid #fff;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

/* Footer */
.footer { background: var(--nav-dark); }
.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    margin: 5px 10px;
    display: inline-block;
}
.text-muted { color:#fff; }

/* MODUL 1: MOBİL TƏTBİQ */
.app-card {
    background: linear-gradient(90deg, #ff9800 0%, #f8c31e 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.4s ease;
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff !important; 
    flex-wrap: wrap; /* Mobildə ikon aşağı düşsün deyə */
    gap: 20px;
}

.app-card h2 {
    font-weight: 900;
    color: #061122; /* Daha oxunaqlı tünd rəng */
    margin-bottom: 10px;
}

/* MODUL 2: SÜRƏTLİ QEYDİYYAT */
.quick-reg-module {
    background-color: var(--nav-dark);
    border: 1px solid #ff9800;
    border-radius: 15px;
    padding: 40px 20px;
}

.custom-group .input-group {
    flex-wrap: wrap; /* Mobildə input və düymə alt-alta */
    gap: 10px;
}

.custom-group input {
    background: #091a33 !important;
    border: 1px solid #ff9800 !important;
    color: white !important;
    height: 50px;
    border-radius: 5px !important;
}

/* MODUL 3: DEPOZİT METODLARI */
.pay-icon {
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    color: white;
    flex: 1 1 120px; /* Mobildə ikonlar səliqəli düzülsün */
}

/* MODUL 4: CANLI QAZANANLAR */
.win-banner {
    background: rgba(0, 0, 0, 0.4);
    border: 2px dashed #ff9800;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

/* MODUL 5: VIP GİRİŞ */
.vip-login-module {
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #d4af37;
    display: flex;
    flex-wrap: wrap;
}

.bg-gold, .bg-dark-vip {
    flex: 1 1 300px; /* Mobildə alt-alta keçid */
    padding: 30px;
}

/* Responsive Düzəlişlər */
@media (max-width: 991px) {
    .nav-link { margin: 5px 0; text-align: center; }
}

@media (max-width: 576px) {
    .action-btns { gap: 5px; }
    .btn-login-top, .btn-reg-top { padding: 5px 8px; font-size: 11px; }
    .games-grid { grid-template-columns: repeat(2, 130px); gap: 10px; }
    .display-4 { font-size: 28px; }
    .app-card { text-align: center; justify-content: center; }
    .app-card i { font-size: 3rem !important; }
    .quick-reg-module { padding: 20px 15px; }
    .win-banner { font-size: 12px; border-radius: 20px; }
    .vip-login-module { flex-direction: column; }
    .footer-links a { margin: 5px; }
}