:root {
            --primary-color: #1a365d;
            --secondary-color: #2d5a8a;
            --accent-color: #e53e3e;
            --gold-color: #d69e2e;
            --silver-color: #718096;
            --success-color: #38a169;
            --text-dark: #1a202c;
            --text-muted: #4a5568;
            --border-light: #e2e8f0;
            --bg-light: #f7fafc;
            --bg-white: #ffffff;
            --gradient-bg: linear-gradient(135deg, #1a365d 0%, #2d5a8a 100%);
            --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        * {
            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(--gradient-bg);
            color: white;
            padding: 1rem 0;
            z-index: 100;
            box-shadow: var(--shadow-md);
        }

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

        .site-name {
            font-family: 'Roboto Slab', serif;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .updated-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            backdrop-filter: blur(10px);
        }

        .hero {
            background: var(--bg-white);
            padding: 2rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Roboto Slab', serif;
            font-size: 2.25rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

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

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

        .meta-badge {
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.875rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .offers-section {
            padding: 3rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .section-title {
            font-family: 'Roboto Slab', 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-white);
            border: 2px solid var(--border-light);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .offer-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary-color);
        }

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

        .offer-card.rank-2 {
            border-left: 4px solid var(--silver-color);
        }

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

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

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

        .rank-badge.green {
            background: var(--success-color);
        }

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

        .rank-number {
            background: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.125rem;
            flex-shrink: 0;
        }

        .casino-logo {
            width: 80px;
            height: 60px;
            object-fit: contain;
            border-radius: 8px;
            border: 1px solid var(--border-light);
        }

        .logo-placeholder {
            width: 80px;
            height: 60px;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .offer-info {
            flex: 1;
        }

        .casino-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

        .bonus-text {
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

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

        .cta-button {
            background: var(--accent-color);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 1rem;
            width: 100%;
        }

        .cta-button:hover {
            background: #c53030;
            transform: translateY(-1px);
        }

        .seo-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
            background: var(--bg-white);
            margin-top: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }

        .keyword-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

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

        .seo-content h2 {
            font-family: 'Roboto Slab', serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 2rem 0 1rem 0;
        }

        .seo-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 1.5rem 0 0.75rem 0;
        }

        .seo-content p {
            margin-bottom: 1.5rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

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

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .disclaimer {
            font-size: 0.875rem;
            opacity: 0.7;
            margin-top: 1rem;
        }

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

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

            .cta-button {
                width: auto;
            }
        }

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

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

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

            .updated-tag {
                font-size: 0.75rem;
            }

            .header-content {
                flex-direction: column;
                gap: 0.5rem;
            }

            .site-name {
                font-size: 1rem;
            }
        }