/* RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-green: #008C45;
    --primary-red: #CD212A;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-grey: #f8f9fa;
    --border-color: #e0e0e0;
    --font-main: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* STICKY HEADER */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.desktop-nav {
    display: none; /* Mobile first */
}

.btn-cta-header {
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-cta-header:hover {
    background: #007037;
}

/* HERO SECTION */
.hero-section {
    padding: 40px 0 20px;
    text-align: center;
    background: var(--bg-grey);
}

.hero-section h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* LISTING */
.listing-section {
    padding: 30px 0;
}

.listing-title {
    text-align: center;
    margin-bottom: 30px;
}

.casino-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.casino-card.featured {
    border-color: var(--primary-green);
}

.card-rank {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    aspect-ratio: 120 / 60;
    object-fit: contain;
}

.brand-name {
    display: block;
    font-weight: bold;
    font-size: 18px;
}

.star-rating {
    color: #ffc107;
    font-size: 14px;
}

.star-rating span {
    color: var(--text-light);
}

.bonus-label {
    display: inline-block;
    background: #fdf2f2;
    color: var(--primary-red);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
}

.bonus-text {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
}

.features-block ul {
    list-style: none;
}

.features-block li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
}

.btn-play {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
}

.center-button {
    text-align: center;
    margin-top: 20px;
}

.btn-main-bonus {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
}

/* CONTENT SECTION */
.main-content {
    padding: 40px 0;
}

.content-wrapper h2 {
    margin: 30px 0 15px;
    font-size: 24px;
}

.content-wrapper p {
    margin-bottom: 15px;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Tables Responsive */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

table td {
    padding: 12px;
    border: 1px solid var(--border-color);
}

table tr:first-child {
    background: var(--bg-grey);
    font-weight: bold;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    background: var(--bg-grey);
    padding: 15px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* FOOTER */
.main-footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    max-width: 700px;
    margin: 0 auto 20px;
}

.copyright {
    font-size: 14px;
    color: #555;
}

/* DESKTOP MEDIA QUERIES */
@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }

    .desktop-nav ul {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .desktop-nav a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: 0.3s;
    }

    .desktop-nav a:hover {
        color: var(--primary-green);
    }

    .hero-section h1 {
        font-size: 42px;
    }

    .casino-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 25px 40px;
    }

    .brand-block {
        flex: 1;
    }

    .bonus-block {
        flex: 1.2;
        text-align: center;
        border-left: 1px solid var(--border-color);
        border-right: 1px solid var(--border-color);
        padding: 0 20px;
    }

    .features-block {
        flex: 1;
        padding-left: 20px;
    }

    .cta-block {
        flex: 0.8;
    }

    .btn-play {
        width: auto;
        min-width: 160px;
    }
}