:root {
            --primary-color: #1a365d;
            --secondary-color: #2d5a87;
            --accent-color: #f6ad55;
            --gold-color: #ffd700;
            --silver-color: #c0c0c0;
            --success-color: #38a169;
            --text-dark: #1a202c;
            --text-light: #718096;
            --bg-light: #f7fafc;
            --bg-card: #ffffff;
            --border-color: #e2e8f0;
            --hover-shadow: 0 10px 25px rgba(45, 90, 135, 0.15);
        }

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

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

        .header {
            position: sticky;
            top: 0;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

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

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .updated-tag {
            background: var(--accent-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
        }

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

        .hero {
            padding: 2rem 0;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .badge {
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .offers-section {
            padding: 2rem 0;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 2rem;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .offer-card {
            background: var(--bg-card);
            border-radius: 12px;
            border: 2px solid var(--border-color);
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .offer-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--hover-shadow);
        }

        .offer-card.rank-1 {
            border-left: 4px solid var(--gold-color);
            background: linear-gradient(135deg, #fff 0%, #fffef7 100%);
        }

        .offer-card.rank-2 {
            border-left: 4px solid var(--silver-color);
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }

        .rank-badge {
            position: absolute;
            top: -10px;
            right: 1rem;
            background: var(--gold-color);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .rank-badge.silver {
            background: var(--silver-color);
            color: white;
        }

        .rank-badge.standard {
            background: var(--secondary-color);
            color: white;
        }

        .offer-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .rank-number {
            background: var(--primary-color);
            color: white;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
        }

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

        .logo-fallback {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            border-radius: 8px;
            font-size: 0.75rem;
        }

        .offer-details {
            flex: 1;
        }

        .casino-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .bonus-text {
            color: var(--success-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .stars {
            color: var(--accent-color);
            font-size: 1.125rem;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--accent-color) 0%, #ed8936 100%);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(246, 173, 85, 0.4);
        }

        .content-section {
            padding: 3rem 0;
            background: var(--bg-card);
            margin: 2rem 0;
            border-radius: 12px;
        }

        .content-section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .content-section h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin: 2rem 0 1rem 0;
        }

        .content-section p {
            margin-bottom: 1rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .reviews-section {
            padding: 3rem 0;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .review-card {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

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

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

        .review-rating {
            color: var(--accent-color);
            font-size: 1.125rem;
        }

        .review-text {
            color: var(--text-light);
            line-height: 1.6;
        }

        .author-box {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin: 2rem 0;
        }

        .author-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .author-role {
            color: var(--secondary-color);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .author-bio {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .publish-date {
            font-size: 0.875rem;
            color: var(--text-light);
            font-style: italic;
        }

        .footer {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .footer p {
            margin-bottom: 0.5rem;
        }

        .disclaimer {
            font-size: 0.875rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 1rem auto 0;
        }

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

            .offers-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-button {
                width: auto;
            }
        }

        @media (min-width: 1024px) {
            .offers-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }