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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

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

.site-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.age-verification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    margin: 0 auto;
    max-width: fit-content;
}

.age-indicator {
    font-size: 1.5rem;
    font-weight: bold;
    background: white;
    color: #ee5a24;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Main Content */
.main-content {
    background: white;
    margin: 0 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Introduction Section */
.intro-section {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    border-bottom: 1px solid #e0e7ff;
}

.intro-section h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Bookmakers Section */
.bookmakers-section {
    padding: 3rem 2rem;
}

.bookmakers-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.bookmakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bookmaker-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bookmaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.bookmaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.logo-placeholder {
    width: 120px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
}

.bet365-logo {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.williamhill-logo {
    background: linear-gradient(135deg, #15803d, #22c55e);
}

.ladbrokes-logo {
    background: linear-gradient(135deg, #be185d, #ec4899);
}

.rating {
    text-align: right;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    display: block;
    font-weight: 600;
    color: #333;
    margin-top: 0.25rem;
}

.offer-details {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
}

.offer-title {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.offer-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.offer-terms {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

.features {
    margin-bottom: 2rem;
}

.features h4 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.visit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visit-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsible Gambling Section */
.responsible-gambling-section {
    background: linear-gradient(135deg, #fef7ed, #fed7aa);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.responsible-gambling-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #92400e;
    margin-bottom: 2rem;
    font-weight: 600;
}

.responsible-text {
    font-size: 1.1rem;
    color: #78350f;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.support-organizations {
    text-align: center;
}

.support-organizations h3 {
    font-size: 1.8rem;
    color: #92400e;
    margin-bottom: 2rem;
    font-weight: 600;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.org-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.org-link:hover {
    transform: translateY(-3px);
}

.org-logo {
    width: 150px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gambleaware-logo {
    background: linear-gradient(135deg, #059669, #10b981);
}

.gamcare-logo {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.gamstop-logo {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.org-text {
    text-align: center;
}

.org-link p {
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Information Section */
.info-section {
    padding: 3rem 2rem;
    background: #f8fafc;
}

.info-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #667eea;
}

.info-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.75rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-card strong {
    color: #1e293b;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(30, 41, 59, 0.95);
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    text-align: center;
}

.copyright {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.disclaimer {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .age-verification {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .intro-section,
    .bookmakers-section,
    .responsible-gambling-section,
    .info-section {
        padding: 2rem 1rem;
    }
    
    .intro-section h2,
    .bookmakers-section h2,
    .responsible-gambling-section h2,
    .info-section h2 {
        font-size: 1.8rem;
    }
    
    .bookmakers-grid,
    .org-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .bookmaker-card {
        padding: 1.5rem;
    }
    
    .bookmaker-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo-placeholder {
        width: 100px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        margin: 0 0.5rem;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .intro-section h2,
    .bookmakers-section h2,
    .responsible-gambling-section h2,
    .info-section h2 {
        font-size: 1.5rem;
    }
    
    .offer-text {
        font-size: 1.2rem;
    }
    
    .visit-btn {
        font-size: 1rem;
    }
}