* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0c0c0f;
    color: #fff;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: gold;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: gold;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1f, #000);
}

.hero h1 {
    font-size: 36px;
    color: gold;
}

.hero p {
    margin: 20px 0;
    color: #ccc;
}

.hero-btn {
    background: gold;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #ffcc00;
}

/* GRID */
.casino-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 340px);
    gap: 30px;
    justify-content: center;
}

/* CARD */
.casino-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 320px);
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
}


.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255,215,0,0.4);
}

.casino-card {
    position: relative;
    transition: 0.3s ease;
}

/* Rank Badge */
.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111;
    color: #fff;
    padding: 6px 10px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    z-index: 10;
}

/* Top 3 Colors */
.gold {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
}

.silver {
    background: linear-gradient(135deg, #d8d8d8, #a8a8a8);
    color: #000;
}

.bronze {
    background: linear-gradient(135deg, #cd7f32, #a05a2c);
}

/* Best Choice Highlight */
.best-choice {
    transform: scale(1.04);
    border: 2px solid gold;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: gold;
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
}

.casino-card img {
    width: 320px;
    margin: 20px auto 0;
    display: block;
    border-radius: 10px;
}

.casino-info {
    padding: 20px;
    text-align: center;
}

.rating {
    margin: 10px 0;
    color: gold;
}

.rating span {
    color: #fff;
    font-weight: 600;
}

.bonus {
    font-weight: 600;
    margin: 10px 0;
}

.features {
    list-style: none;
    margin: 15px 0;
    font-size: 14px;
    color: #ccc;
}

.features li {
    margin-bottom: 5px;
}

.cta-btn {
    display: block;
    background: linear-gradient(135deg, #ff7a00, #ff3c00);
    color: white;
    padding: 14px 0;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 15px;
    font-size: 16px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.terms {
    font-size: 11px;
    margin-top: 10px;
    color: #777;
}

/* SEO SECTION */
.seo-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

.seo-content h2 {
    color: gold;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    background: #000;
    padding: 30px;
    text-align: center;
    color: #777;
}


/* Tablet */
@media (max-width: 1024px) {
    .casino-container {
        grid-template-columns: repeat(2, 320px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .casino-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .casino-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}

    .casino-card img {
        width: 100%;
        max-width: 320px;
    }

    .hero h1 {
        font-size: 26px;
    }
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ff7a00, #ff3c00);
        text-align: center;
        padding: 15px 0;
        z-index: 9999;
    }

    .mobile-sticky-cta a {
        color: white;
        font-weight: bold;
        text-decoration: none;
        font-size: 16px;
    }

    body {
        padding-bottom: 70px;
    }
}

.best-badge {
    position: absolute;
    top: 15px;
    left: -10px;
    background: #ffd700;
    color: black;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 12px;
    transform: rotate(-10deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}