:root {
            --primary-dark: #1a2e1a;
            --primary-green: #2d5a2d;
            --accent-gold: #d4af37;
            --accent-light: #f8f5e4;
            --text-dark: #2c3e2c;
            --text-light: #6b7c6b;
            --white: #ffffff;
            --border-light: #e5e7e5;
            --shadow: 0 2px 10px rgba(45, 90, 45, 0.08);
            --shadow-hover: 0 8px 30px rgba(45, 90, 45, 0.15);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            padding-top: 70px;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-bottom: 1px solid var(--border-light);
            padding: 15px 20px;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .updated {
            font-size: 13px;
            color: var(--text-light);
            background: var(--accent-light);
            padding: 6px 12px;
            border-radius: 20px;
        }

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

        .hero {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .meta-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .badge {
            background: var(--primary-green);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
        }

        .offers-section {
            padding: 60px 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-dark);
        }

        .offers-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .offer-card {
            display: flex;
            align-items: center;
            background: var(--white);
            border: 2px solid var(--border-light);
            border-radius: 16px;
            padding: 24px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow);
        }

        .offer-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-green);
        }

        .offer-card.top-choice {
            border-color: var(--accent-gold);
            background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
        }

        .offer-card.top-choice::before {
            content: 'Top Choice';
            position: absolute;
            top: -10px;
            left: 20px;
            background: var(--accent-gold);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
        }

        .rank-badge {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-green);
            min-width: 40px;
            text-align: center;
        }

        .casino-logo {
            width: 80px;
            height: 60px;
            object-fit: contain;
            margin: 0 24px;
            border-radius: 8px;
        }

        .casino-logo-text {
            width: 80px;
            height: 60px;
            margin: 0 24px;
            background: var(--primary-green);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            border-radius: 8px;
            font-size: 14px;
        }

        .casino-info {
            flex: 1;
            margin-right: 20px;
        }

        .casino-name {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 6px;
        }

        .casino-bonus {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 8px;
        }

        .stars {
            color: var(--accent-gold);
            font-size: 18px;
            margin-bottom: 4px;
        }

        .casino-label {
            background: var(--primary-green);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
        }

        .cta-button {
            background: var(--primary-green);
            color: var(--white);
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

        .top-choice .cta-button {
            background: var(--accent-gold);
        }

        .top-choice .cta-button:hover {
            background: #b8941f;
        }

        .content-section {
            padding: 60px 0;
            background: var(--accent-light);
        }

        .content-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-bottom: 24px;
        }

        .content-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--primary-green);
            margin: 30px 0 16px 0;
        }

        .content-section p {
            margin-bottom: 20px;
            color: var(--text-dark);
            line-height: 1.7;
        }

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

        .faq-question {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .reviews-section {
            padding: 60px 0;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .review-card {
            background: var(--white);
            padding: 24px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-green);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .reviewer-name {
            font-weight: 600;
            color: var(--primary-dark);
        }

        .review-stars {
            color: var(--accent-gold);
        }

        .review-text {
            color: var(--text-light);
            font-style: italic;
        }

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

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .offer-card {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .rank-badge {
                margin-bottom: 16px;
            }

            .casino-logo, .casino-logo-text {
                margin: 0 0 16px 0;
            }

            .casino-info {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .meta-badges {
                flex-direction: column;
                align-items: center;
            }

            .header-content {
                flex-direction: column;
                gap: 10px;
            }

            .site-name {
                font-size: 18px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }