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

:root {
    --primary-blue: #001f3f;
    --secondary-blue: #003366;
    --accent-blue: #004080;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --text-gray: #333333;
    --border-color: #ddd;
    --teal: #5a9c96;
    --dark-teal: #3d6e6a;
    --gold: #ffc107;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
}

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

.age-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 31, 63, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-banner.hidden {
    display: none;
}

.age-banner-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
}

.age-banner-content h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 28px;
}

.age-banner-content p {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text-gray);
}

.age-banner-content button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.age-banner-content button:hover {
    background-color: var(--accent-blue);
}

.navbar {
    background-color: var(--primary-blue);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-selector .currency {
    color: var(--white);
    font-weight: bold;
    padding: 5px 15px;
    background-color: var(--accent-blue);
    border-radius: 4px;
}

main {
    min-height: 60vh;
}

.hero {
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
}

section {
    padding: 60px 0;
}

section h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.platforms {
    background-color: var(--light-gray);
}

.platform-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

/* Betting Cards */
.betting-card {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.betting-card-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 30px;
    padding: 40px;
    color: var(--white);
}

.betting-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
}

.betting-logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.betting-promo {
    padding: 0 20px;
}

.betting-promo p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: var(--white);
}

.betting-rating {
    text-align: center;
}

.stars {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 5px;
}

.reviews {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.betting-card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.btn-primary,
.btn-secondary {
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--white);
    color: var(--dark-teal);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-left: none;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: var(--accent-blue);
}

/* BetBoom Hero Section */
.betboom-hero {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    padding: 0;
    overflow: hidden;
}

.betboom-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
}

.betboom-hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.betboom-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.betboom-hero-text {
    padding: 60px;
    color: var(--white);
}

.betboom-hero-text h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--white);
    text-align: left;
}

.betboom-hero-text p {
    font-size: 20px;
    line-height: 1.6;
}

/* Why BetBoom Section */
.why-betboom {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 60px 0;
}

.why-betboom h2 {
    color: var(--white);
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.features-list {
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.features-list li {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 28px;
    font-weight: bold;
}

.features-list strong {
    font-weight: 700;
}

/* More Than Betting Section */
.more-than-betting {
    background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
    padding: 0;
    overflow: hidden;
}

.more-than-betting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
}

.more-than-betting-text {
    padding: 60px;
    color: var(--white);
}

.more-than-betting-text h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--white);
    text-align: left;
}

.more-than-betting-text p {
    font-size: 20px;
    line-height: 1.6;
}

.more-than-betting-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.more-than-betting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.responsible-gaming {
    background-color: var(--light-gray);
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.support-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.support-links a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.disclaimers {
    padding: 40px 0;
}

.warning-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 30px;
    border-radius: 8px;
}

.warning-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.footer-logos a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-logos img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    background-color: var(--white);
    padding: 8px;
    border-radius: 6px;
}

.org-logo {
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--primary-blue);
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.content-page {
    padding: 60px 0;
}

.content-page h1 {
    color: var(--primary-blue);
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
}

.content-section h3 {
    color: var(--secondary-blue);
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.warning-section {
    background-color: #fff3cd;
    border: 3px solid #ffc107;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.large-warning {
    font-size: 24px;
    font-weight: bold;
    color: #856404;
    margin: 0;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary-blue);
}

.resource-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.resource-card p {
    margin-bottom: 20px;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-wrapper h2,
.contact-info h2 {
    color: var(--primary-blue);
    font-size: 26px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-submit {
    align-self: flex-start;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    display: block;
}

.contact-info {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.info-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 18px;
}

.info-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero p {
        font-size: 18px;
    }

    section h2 {
        font-size: 26px;
    }

    .betting-card-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }

    .betting-promo p {
        font-size: 16px;
    }

    .betting-card-buttons {
        grid-template-columns: 1fr;
    }

    .btn-secondary {
        border-left: 2px solid var(--white);
        border-top: none;
    }

    .betboom-hero-content,
    .more-than-betting-content {
        grid-template-columns: 1fr;
    }

    .betboom-hero-text,
    .more-than-betting-text {
        padding: 40px 20px;
    }

    .betboom-hero-text h2,
    .more-than-betting-text h2 {
        font-size: 28px;
    }

    .betboom-hero-text p,
    .more-than-betting-text p {
        font-size: 16px;
    }

    .why-betboom h2 {
        font-size: 28px;
    }

    .features-list li {
        font-size: 16px;
    }

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

    .footer-logos,
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}
