/* Color Palette: White, Green, Blue */
:root {
    --white: #ffffff;
    --bg-light: #f4f7f6;
    --primary-green: #2ecc71;
    --primary-blue: #2980b9;
    --dark-blue: #2c3e50;
    --text-color: #333333;
    --grey: #7f8c8d;
    --accent-green: #27ae60;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
}

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

.logo img {
    height: 45px;
    display: block;
}

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

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

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

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

.btn-header:hover {
    background: var(--accent-green);
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    text-align: center;
}

.h1-title {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--grey);
}

.author-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

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

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.verified-badge {
    color: var(--primary-blue);
    font-size: 0.8rem;
    margin-left: 5px;
}

.update-date {
    font-size: 0.8rem;
    color: var(--grey);
}

/* Listing Grid */
.listing-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark-blue);
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.casino-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-5px);
}

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

.card-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.brand-name {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
}

.stars {
    color: #f1c40f;
    letter-spacing: 2px;
}

.card-bonus {
    background: rgba(46, 204, 113, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent-green);
}

.bonus-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.icon-check {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
}

.btn-cta {
    display: block;
    text-align: center;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: var(--dark-blue);
}

/* Content Area */
.main-content {
    padding: 60px 0;
}

.main-content h2 {
    margin: 40px 0 20px;
    color: var(--dark-blue);
}

.main-content h3 {
    margin: 25px 0 15px;
    color: var(--primary-blue);
}

.main-content p {
    margin-bottom: 20px;
}

.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.main-content tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
}

.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-bottom: 20px;
    border-top: 1px solid #3e4f5f;
    padding-top: 20px;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .h1-title {
        font-size: 1.8rem;
    }
    
    .listing-grid {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 0 15px;
    }
}