:root {
            --primary-color: #0f172a;
            --secondary-color: #1e293b;
            --accent-color: #f59e0b;
            --accent-hover: #d97706;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-light: #94a3b8;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-card: #ffffff;
            --border-color: #e2e8f0;
            --border-gold: #f59e0b;
            --border-silver: #94a3b8;
            --success-color: #10b981;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-secondary);
            font-size: 16px;
        }
        
        .header {
            position: sticky;
            top: 0;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .site-name {
            font-family: 'JetBrains Mono', monospace;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .updated-tag {
            background: var(--accent-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem 1rem;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            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;
        }
        
        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .meta-badge {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }
        
        .offers-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }
        
        .offers-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: 1fr;
        }
        
        .offer-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-left: 3px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow-sm);
        }
        
        .offer-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .offer-card.rank-1 {
            border-left-color: var(--border-gold);
            background: linear-gradient(135deg, #fffbeb 0%, var(--bg-card) 100%);
        }
        
        .offer-card.rank-2 {
            border-left-color: var(--border-silver);
        }
        
        .rank-badge {
            position: absolute;
            top: -0.5rem;
            right: 1rem;
            background: var(--accent-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .offer-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .offer-rank {
            background: var(--primary-color);
            color: white;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .offer-logo {
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            object-fit: contain;
            background: var(--bg-secondary);
            padding: 0.25rem;
        }
        
        .logo-placeholder {
            width: 3rem;
            height: 3rem;
            background: var(--primary-color);
            color: white;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.75rem;
        }
        
        .offer-details {
            flex: 1;
        }
        
        .offer-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }
        
        .offer-bonus {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }
        
        .offer-stars {
            color: var(--accent-color);
            font-size: 0.875rem;
        }
        
        .offer-cta {
            background: var(--accent-color);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            width: 100%;
        }
        
        .offer-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }
        
        .seo-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
            background: var(--bg-primary);
            border-radius: 1rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        
        .keyword-tags {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .keyword-tag {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            padding: 0.5rem 1rem;
            border-radius: 1.5rem;
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 500;
        }
        
        .seo-section h2 {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 2rem 0 1rem;
        }
        
        .seo-section h3 {
            font-size: 1.375rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 1.5rem 0 0.75rem;
        }
        
        .seo-section p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .footer p {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }
        
        .disclaimer {
            font-size: 0.875rem;
            opacity: 0.7;
            margin-top: 1rem;
        }
        
        @media (min-width: 768px) {
            .offers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .offer-cta {
                width: auto;
                align-self: flex-start;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (min-width: 1024px) {
            .offers-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }