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

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #e94560;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e94560, #c44569);
    border-radius: 8px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    height: 8px;
    background: white;
    border-radius: 2px;
}

.logo-icon::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 8px;
    right: 8px;
    height: 6px;
    background: white;
    border-radius: 1px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: #e94560;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.9), rgba(196, 69, 105, 0.8)), url('../4c38e070d5.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 16px;
}

/* Main Content */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.main-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 24px 0 12px 0;
}

.main-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.main-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.main-content li {
    margin-bottom: 8px;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #6b7280;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.twitter-icon {
    width: 16px;
    height: 16px;
    fill: #1d9bf0;
}

.twitter-handle {
    color: #1d9bf0;
    text-decoration: none;
}

.fact-check {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #059669;
}

.check-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Sportsbook Cards */
.sportsbook-card {
    background: white;
    border: 3px solid #e94560;
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.15);
    transition: all 0.3s;
}

.sportsbook-card:hover {
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.25);
    transform: translateY(-4px);
    border-color: #c44569;
}

.card-content {
    padding: 32px;
    display: grid;
    grid-template-columns: 60px 200px 1fr 200px;
    gap: 32px;
    align-items: center;
}

.rank-number {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
}

.operator-logo img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 1 !important;
}

.offer-content {
    flex: 1;
}

.offer-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.2;
}

.promo-code {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

.cta-section {
    text-align: center;
}

.visit-btn {
    background: linear-gradient(135deg, #e94560, #c44569);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    text-decoration: none;
    display: inline-block;
}

.visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
    background: linear-gradient(135deg, #c44569, #a55a5a);
}

.terms-text {
    grid-column: 1 / -1;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.payment-methods {
    grid-column: 1 / -1;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.payments-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    text-align: right;
}

.payment-icons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 28px;
    width: auto;
    opacity: 1;
    transition: opacity 0.2s;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Help Resources */
.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.resource-card {
    background: white;
    border: 2px solid #e94560;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.1);
}

.resource-card h3 {
    color: #e94560;
    margin-bottom: 12px;
}

.help-link {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    transition: all 0.3s;
}

.help-link:hover {
    background: #c44569;
    transform: translateY(-2px);
}

.emergency-contact {
    background: linear-gradient(135deg, #e94560, #c44569);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    margin-top: 32px;
}

.emergency-contact h3 {
    margin-bottom: 12px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #d1d5db;
    padding: 60px 0 40px;
    margin-top: 80px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.disclaimer-section h3 {
    color: #e94560;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.responsible-gaming h3 {
    color: #e94560;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.rg-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rg-link {
    display: block;
    background: white;
    color: #374151;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 14px;
}

.rg-link:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: #e94560;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: #c44569;
    transform: translateY(-1px);
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal.show {
    display: flex;
}

.age-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.age-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    font-weight: bold;
}

.age-modal h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.age-modal p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.age-modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.age-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 120px;
}

.age-btn-yes {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.age-btn-yes:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-1px);
}

.age-btn-no {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.age-btn-no:hover {
    background: #e5e7eb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .main-content {
        padding: 24px 16px;
    }

    .card-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .article-meta {
        flex-wrap: wrap;
    }

    .help-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .main-content h1 {
        font-size: 24px;
    }

    .offer-title {
        font-size: 18px;
    }

    .age-modal-content {
        padding: 30px 20px;
    }

    .age-modal h2 {
        font-size: 24px;
    }

    .age-modal-buttons {
        flex-direction: column;
    }
}
