/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Warning Bar */
.warning-bar {
    background: linear-gradient(90deg, #ffeb3b 0%, #ffc107 100%);
    color: #333;
    padding: 12px 0;
    font-size: 14px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 2px solid #ffa000;
}

.warning-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.warning-icon {
    font-size: 18px;
    color: #e65100;
}

.warning-text {
    font-weight: 600;
    max-width: 900px;
    line-height: 1.5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.logo-section a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-section a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 40px;
    border-radius: 60px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    cursor: pointer;
}

.logo-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

/* Hero Text */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.trust-icon {
    font-size: 18px;
}

.trust-text {
    font-size: 15px;
    font-weight: 600;
}

/* Disclaimer */
.disclaimer {
    font-size: 14px;
    opacity: 0.85;
    font-style: italic;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Bookmakers Section */
.bookmakers-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Bookmaker Cards */
.bookmaker-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
    position: relative;
}

.bookmaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: #ffc107;
}

.bookmaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107 0%, #ffeb3b 100%);
}

/* Bookmaker Header */
.bookmaker-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px 30px;
    border-bottom: 2px solid #e2e8f0;
}

.bookmaker-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.25px;
}

/* Bookmaker Content */
.bookmaker-content {
    padding: 30px;
    display: grid;
    grid-template-columns: 200px 1fr 150px 200px;
    gap: 30px;
    align-items: center;
}

/* Logo Section */
.bookmaker-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: transparent;
    border-radius: 12px;
    border: none;
}

.bookmaker-logo {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

/* Bonus Section */
.bookmaker-bonus {
    text-align: center;
}

.bonus-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-amount {
    font-size: 36px;
    font-weight: 800;
    color: #f59e0b;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
    letter-spacing: -1px;
}

/* Rating Section */
.bookmaker-rating {
    text-align: center;
}

.rating-score {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.rating-divider {
    font-size: 18px;
    color: #64748b;
    font-weight: 600;
}

.rating-stars {
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.star {
    color: #e2e8f0;
    font-size: 16px;
}

.star.filled {
    color: #ffc107;
    text-shadow: 0 1px 3px rgba(255, 193, 7, 0.5);
}

.star.half {
    background: linear-gradient(90deg, #ffc107 50%, #e2e8f0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-votes {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.bookmaker-cta {
    text-align: center;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #ffb300 0%, #ffc107 100%);
}

.cta-terms {
    font-size: 12px;
    color: #64748b;
    margin-top: 12px;
    font-weight: 500;
}

/* Content Section */
.content-section {
    background: white;
    padding: 100px 0;
}

.content-title {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.content-title.final {
    margin-top: 80px;
}

.content-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #334155;
    margin: 50px 0 25px;
    letter-spacing: -0.25px;
}

.content-text {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    max-width: 900px;
    margin: 0 auto 35px;
    text-align: center;
}

.criteria-list {
    max-width: 700px;
    margin: 40px auto;
    list-style: none;
}

.criteria-list li {
    padding: 16px 0;
    font-size: 17px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-warning {
    text-align: center;
    margin-bottom: 30px;
}

.footer-warning-text {
    color: #cbd5e0;
    font-size: 13px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.footer-links {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.footer-link {
    color: #fbbf24;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.separator {
    color: #6b7280;
    margin: 0 12px;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.ssl-badge {
    display: inline-block;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    background: #dc2626;
    border-radius: 50%;
    color: white;
    font-weight: bold;
}

.age-icon {
    font-size: 16px;
    margin-right: 2px;
}

.age-text {
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.copyright {
    color: #9ca3af;
    font-size: 13px;
    margin: 0;
}

.email-link {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #f59e0b;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bookmaker-content {
        grid-template-columns: 180px 1fr 140px 180px;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .bookmaker-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .bookmaker-logo-section {
        grid-column: 1 / -1;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .bookmaker-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 25px;
    }
    
    .content-title {
        font-size: 32px;
    }
    
    .content-subtitle {
        font-size: 24px;
    }
    
    .logo-row {
        gap: 15px;
    }
    
    .footer-logo {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .warning-bar {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .hero {
        padding: 50px 0 70px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .bookmaker-content {
        padding: 20px;
    }
    
    .bonus-amount {
        font-size: 32px;
    }
    
    .rating-score {
        font-size: 24px;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* License Information Styles */
.license-info {
    font-size: 14px;
    color: #718096;
    margin-bottom: 15px;
    text-align: center;
}

.license-link {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.license-link:hover {
    color: #00b894;
    text-decoration: underline;
}

.license-number {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive License Styles */
@media (max-width: 768px) {
    .license-info {
        font-size: 13px;
    }
    
    .license-number {
        font-size: 11px;
    }
} 