/* Base Styles */
:root {
    --green: #008C45;
    --white: #FFFFFF;
    --red: #CD212A;
    --dark: #333333;
    --light-grey: #f4f4f4;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light-grey);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.main-header {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--green);
}

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

.logo img {
    height: 50px;
}

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

.desktop-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: bold;
    margin: 0 15px;
    transition: color 0.3s;
}

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

.header-btn {
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    background: white;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--green);
}

.author-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--green);
}

.author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.badge-verified {
    color: var(--green);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Listing */
.listing-section {
    padding: 40px 0;
}

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

.listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.casino-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--green);
}

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

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

.brand-logo {
    width: 120px;
    height: auto;
}

.brand-name {
    font-weight: bold;
    font-size: 1.2rem;
}

.rating {
    color: #ffcc00;
}

.bonus-block {
    flex: 1 1 200px;
    text-align: center;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
}

.bonus-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--red);
}

.features {
    flex: 1 1 250px;
    list-style: none;
}

.features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.features svg {
    width: 18px;
    fill: var(--green);
}

.cta-btn {
    flex: 0 0 150px;
    background: var(--green);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: scale(1.05);
    background: #00753a;
}

/* Content & Tables */
.main-content {
    background: white;
    padding: 50px 0;
}

.main-content h2, .main-content h3 {
    margin: 30px 0 15px;
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

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

table td, table th {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* FAQ */
.faq-section {
    margin-top: 50px;
    border-top: 2px solid var(--light-grey);
    padding-top: 30px;
}

.faq-item {
    margin-bottom: 25px;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.disclaimer {
    margin: 20px 0;
    font-size: 0.85rem;
    color: #ccc;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .brand-block {
        flex-direction: column;
    }
    
    .features {
        text-align: left;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}