* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 1.3em;
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.hero-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.badge-icon {
    font-size: 1.2em;
}

.disclaimer {
    font-size: 0.85em;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sports-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sport-icon {
    font-size: 4em;
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Advertiser Disclosure */
.advertiser-disclosure {
    background-color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.advertiser-disclosure p {
    font-size: 0.85em;
    color: #666;
    line-height: 1.8;
}

/* Brands Section */
.brands-section {
    padding: 40px 0;
    background-color: #fff;
}

.brand-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.brand-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #667eea;
}

.brand-card.featured {
    border-width: 3px;
}

.brand-card.most-popular {
    border-color: #f59e0b;
    background: linear-gradient(to bottom, #fffbf0 0%, #fff 20%);
}

.brand-card.player-favourite {
    border-color: #10b981;
    background: linear-gradient(to bottom, #f0fdf4 0%, #fff 20%);
}

.brand-card.hot-trending {
    border-color: #ef4444;
    background: linear-gradient(to bottom, #fef2f2 0%, #fff 20%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #667eea;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.most-popular .featured-badge {
    background: #f59e0b;
}

.player-favourite .featured-badge {
    background: #10b981;
}

.hot-trending .featured-badge {
    background: #ef4444;
}

.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo {
    flex: 1;
    min-width: 200px;
}

.logo-placeholder {
    font-size: 2em;
    font-weight: 700;
    color: #667eea;
    padding: 15px 25px;
    background: #f0f0f0;
    border-radius: 8px;
    text-align: center;
}

.brand-logo-img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.bet365-logo {
    background-color: #1a1a1a;
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
}

.brand-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.score-label {
    font-size: 0.85em;
    color: #666;
}

.score-value {
    font-size: 2em;
    font-weight: 700;
    color: #667eea;
}

.stars {
    color: #fbbf24;
    font-size: 1.2em;
    letter-spacing: 2px;
}

.views {
    font-size: 0.85em;
    color: #999;
}

.brand-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.welcome-bonus {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bonus-label {
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-text {
    font-size: 1.4em;
    font-weight: 600;
    color: #333;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1em;
    max-width: 250px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.bonus-terms {
    font-size: 0.85em;
    color: #666;
    line-height: 1.6;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.info-box p {
    margin: 0;
    color: #555;
}

/* Content Sections */
.content-sections {
    padding: 60px 0;
    background-color: #fff;
}

.content-article {
    margin-bottom: 50px;
}

.content-article h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.content-article p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.content-article ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-article ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.faq-section h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #333;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 0 30px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    margin-bottom: 30px;
}

.footer-copyright p {
    margin-bottom: 15px;
    font-size: 0.85em;
    line-height: 1.8;
    color: #999;
}

.safer-gambling {
    margin-bottom: 30px;
    padding: 25px;
    background: #252525;
    border-radius: 8px;
}

.safer-gambling h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.safer-gambling p {
    margin-bottom: 15px;
    font-size: 0.9em;
    line-height: 1.8;
    color: #ccc;
}

.support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.support-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.support-links a:hover {
    opacity: 0.8;
}

.support-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.support-link-text {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-link-text:hover {
    color: #764ba2;
}

.footer-disclaimer {
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.footer-disclaimer-text {
    font-size: 0.85em;
    line-height: 1.8;
    color: #999;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .brand-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-rating {
        align-items: flex-start;
    }

    .trust-badges {
        flex-direction: column;
    }

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

    .sport-icon {
        font-size: 2.5em;
        padding: 20px;
    }
}
