:root {
            --primary: #1a472a;
            --primary-light: #2d5f3f;
            --secondary: #0ea5e9;
            --accent: #fbbf24;
            --gold: #f59e0b;
            --silver: #94a3b8;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --text-primary: #1e293b;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(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-primary);
            background: var(--bg-primary);
        }

        .header {
            position: sticky;
            top: 0;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }

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

        .site-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary);
            text-decoration: none;
        }

        .updated-tag {
            background: var(--bg-tertiary);
            color: var(--text-secondary);
            padding: 0.375rem 0.75rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

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

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

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

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

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            background: var(--bg-tertiary);
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .offers-section {
            background: var(--bg-secondary);
            padding: 2rem 0 3rem;
        }

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

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

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

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

        .offer-card.rank-1 {
            border-left-color: var(--gold);
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.02), var(--bg-primary));
        }

        .offer-card.rank-1:hover {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), var(--bg-primary));
        }

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

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

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

        .rank-badge.standard {
            background: var(--primary);
        }

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

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

        .logo-container {
            width: 3rem;
            height: 3rem;
            flex-shrink: 0;
        }

        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0.375rem;
        }

        .logo-placeholder {
            width: 100%;
            height: 100%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
            border-radius: 0.375rem;
        }

        .card-info {
            flex: 1;
        }

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

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

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

        .cta-button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            width: 100%;
        }

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

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

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

        .keyword-tag {
            background: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
        }

        .keyword-tag:hover {
            background: var(--primary-light);
            color: white;
        }

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

        .seo-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.375rem;
            font-weight: 600;
            color: var(--primary);
            margin: 1.5rem 0 0.75rem;
        }

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

        .footer {
            background: var(--bg-tertiary);
            border-top: 1px solid var(--border);
            padding: 2rem 0;
            text-align: center;
        }

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

        .footer-site-name {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .disclaimer {
            color: var(--text-muted);
            font-size: 0.75rem;
            max-width: 600px;
            margin: 1rem auto 0;
            line-height: 1.5;
        }

        @media (min-width: 640px) {
            .offers-grid {
                grid-template-columns: 1fr;
            }
            
            .card-header {
                align-items: flex-start;
            }
        }

        @media (min-width: 768px) {
            .hero h1 {
                font-size: 2.75rem;
            }
            
            .offers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-button {
                width: auto;
                align-self: flex-start;
            }
            
            .card-content {
                display: flex;
                flex-direction: column;
                height: 100%;
            }
            
            .card-info {
                flex: 1;
            }
        }

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