.page-games-sports-betting-intro {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A1931; /* Deep blue main background */
}

.page-games-sports-betting-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-sports-betting-intro__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a61 100%); /* Gradient background for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-games-sports-betting-intro__hero-image {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.page-games-sports-betting-intro__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-games-sports-betting-intro__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #FFFFFF;
}

.page-games-sports-betting-intro__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.page-games-sports-betting-intro__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.page-games-sports-betting-intro__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Deep blue text on gold */
    border: 2px solid #FFD700;
}

.page-games-sports-betting-intro__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-games-sports-betting-intro__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on deep blue */
    border: 2px solid #FFD700;
}

.page-games-sports-betting-intro__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}