:root {
    --green: #1db954;
    --dark: #0f172a;
    --gold: #d4af37;
}

body {
    margin: 0;
    font-family: Inter,sans-serif;
    color: #e5e7eb;
    background: #020617;
}

/* NAVBAR */
.navbar {
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
}

.nav-link {
    color: #bbb !important;
}

    .nav-link:hover {
        color: var(--green) !important;
    }

/* HERO */
#hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(2,6,23,0.95)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420') center/cover no-repeat;
}

    #hero h1 {
        font-size: 3rem;
        font-weight: 800;
    }

.btn-green {
    background: linear-gradient(135deg,#1db954,#1ed760);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(29,185,84,0.3);
}

    .btn-green:hover {
        transform: translateY(-2px);
    }

/* CASINO LIST */
:root {
    --green: #1db954;
    --dark: #0f172a;
    --gold: #d4af37;
}

/* BASE */
body {
    margin: 0;
    font-family: Inter, sans-serif;
    color: #e5e7eb;
    background: #020617;
}

/* NAVBAR */
.navbar {
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
}

.nav-link {
    color: #bbb !important;
}

    .nav-link:hover {
        color: var(--green) !important;
    }

/* HERO */
#hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(2,6,23,0.95)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420') center/cover no-repeat;
}

    #hero h1 {
        font-size: 3rem;
        font-weight: 800;
    }

/* BUTTON */
.btn-green {
    background: linear-gradient(135deg,#1db954,#1ed760);
    border: none;
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(29,185,84,0.3);
    transition: 0.2s;
}

    .btn-green:hover {
        transform: translateY(-2px);
    }

/* CASINO ROW */
.casino-row {
    background: rgba(15,23,42,0.75);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
}

    .casino-row:hover {
        background: rgba(15,23,42,1);
        transform: scale(1.01);
    }

/* MAIN GRID */
.casino-main {
    display: grid;
    grid-template-columns: 120px 2fr 1fr 120px;
    align-items: center;
    gap: 15px;
}

/* LOGO + RANK */
.casino-rank-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-top {
    background: linear-gradient(45deg,#d4af37,#f5d76e);
    color: black;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.casino-logo {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

/* NAME */
.casino-name {
    font-weight: 700;
    font-size: 1.05rem;
}

/* PROMO */
.casino-promo {
    color: var(--gold);
    font-weight: 600;
}

/* DESCRIPTION */
.casino-description {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #cbd5f5;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* EXTRA SECTION */
.casino-extra {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* FEATURE FLAGS */
.casino-flags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.flag {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

    .flag.success {
        background: rgba(29,185,84,0.15);
        color: #1ed760;
    }

/* PAYMENT FLAGS */
.casino-payments-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-flag {
    background: rgba(255,255,255,0.06);
    color: #e5e7eb;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.2s;
}

    .payment-flag:hover {
        background: rgba(29,185,84,0.15);
        color: #1ed760;
    }

/* CONTACT */
#contact {
    padding: 80px 0;
}

.form-box {
    background: rgba(15,23,42,0.75);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-control {
    background: #020617;
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 1rem;
}

    .form-control::placeholder {
        color: #6b7280;
    }

    .form-control:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 2px rgba(29,185,84,0.25);
    }

/* FOOTER */
.footer {
    padding: 50px;
    text-align: center;
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* MOBILE */
@media(max-width:768px) {

    .casino-main {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .casino-rank-logo {
        justify-content: flex-start;
    }

    .casino-extra {
        flex-direction: column;
        align-items: flex-start;
    }
}

.casino-name {
    font-weight: 700;
}

.casino-meta {
    font-size: 0.85rem;
    color: #9ca3af;
}

.casino-bonus {
    color: var(--gold);
    font-weight: 700;
}

.badge-top {
    background: linear-gradient(45deg,#d4af37,#f5d76e);
    color: black;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* CONTACT */
#contact {
    padding: 80px 0;
}

.form-box {
    background: rgba(15,23,42,0.75);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-control {
    background: #020617;
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 1rem;
    transition: 0.25s;
}

    .form-control::placeholder {
        color: #6b7280;
    }

    .form-control:focus {
        border-color: #1db954;
        box-shadow: 0 0 0 2px rgba(29,185,84,0.25);
        background: #020617;
    }

textarea.form-control {
    border-radius: 16px;
}

.form-box .btn-green {
    padding: 16px;
    font-size: 1.05rem;
    border-radius: 14px;
}

/* FOOTER */
.footer {
    padding: 50px;
    text-align: center;
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* SOCIAL GLOW */
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #bbb;
    font-size: 20px;
    transition: 0.3s;
}

    .socials a:hover {
        color: white;
        background: var(--green);
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 0 10px rgba(29,185,84,0.6), 0 0 20px rgba(29,185,84,0.5), 0 0 30px rgba(29,185,84,0.4);
    }

/* TWITCH BUTTON */
.twitch-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #9146FF;
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(145,70,255,0.6);
}

/* CUSTOM COUNTRY DROPDOWN */
.country-dropdown {
    position: relative;
    min-width: 140px;
}

.country-selected {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.country-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: rgba(15,23,42,0.95);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.25s;
}

    .country-menu.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .country-menu div {
        padding: 10px;
        cursor: pointer;
    }

        .country-menu div:hover {
            background: rgba(255,255,255,0.08);
        }

/* MOBILE */
@media(max-width:768px) {
    .casino-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
