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

:root {
    --dark-gray-color: #121212;
    --slightly-lighter-color: #1E1E1E;
    --neutral-dark-color: #181818;
    --medium-dark-color: #2C2C2C;
    --white-color: #FFFFFF;
    --deep-color: #E0E0E0;
}

.alert-bg-color{
    background-color: var(--medium-dark-color);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-gray-color);
}


.top-bar {
    background-color: #000000;

    color: var(--white-color);
    position: relative;
    z-index: 1000;
}

.top-bar-center img {
    object-fit: contain;
}


.bottom-border-gradient {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d2ff, transparent);
    width: 100%;
    opacity: 0.6;
}


@media (max-width: 576px) {
    .top-bar-center span {
        font-size: 0.9rem;
    }
}


.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 15px;

}


.hero-title {
    font-size: 4rem;

    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: capitalize;

    text-shadow: 0px 4px 10px rgba(255, 255, 255, 0.15);
}


.hero-title .highlight-text {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: hard-light;

}


.hero-description {
    font-size: 1.2rem;
    color: var(--deep-color);

    max-width: 700px;

    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}






/* Prediction Section Styling */
.prediction-section {
    background-color: var(--dark-gray-color);
    color: #0099ff;
    /* Text color matching the image */
}

/* Video Buttons */
.btn-video-blue {
    background: #009dff;
    color: white;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 10px 25px;
    box-shadow: 0 0 15px rgba(0, 157, 255, 0.5);
}

.btn-video-red {
    background: #5a2a2a;
    color: #bcbcbc;
    border: none;
    border-radius: 12px;
    padding: 10px 25px;
}

/* Intro Text */
.intro-text small {
    font-size: 0.8rem;
    max-width: 100%;
    margin: 0 auto;
}

/* Alert Box */
.alert-box {
    border: 2px solid #ffc107;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 20px;
    padding: 4px 0px;
    display: inline-block;
    color: #fff;
    font-size: 0.8rem;
}

/* Promo Link Buttons */
.brand-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 180px;
}

.megapari {
    background: linear-gradient(90deg, #1a1a3a, #8b1a1a);
}

.xbet {
    background: linear-gradient(90deg, #004a99, #007bff);
}

/* Promo Code Box */
.promo-code-box {
    border: 2px solid #009dff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 0px 7px;
    color: #fff;
    font-size: 0.9rem;
    text-align: left;
}

.promo-code-box img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.promo-code-box .code {
    color: #ffc107;
    font-weight: bold;
}

/* Next Button */
.btn-next-1 {
    background: #3498db;
    color: white;
    border-radius: 50px;
    padding: 12px 60px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
    border: none;
    transition: 0.3s;
}
.btn-next {
    background: #3498db;
    color: white;
    border-radius: 50px;
    padding: 12px 60px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
    border: none;
    transition: 0.3s;
}

.btn-next:hover {
    transform: scale(1.05);
    background: #2980b9;
}

.hand-icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 5px #ffc107);
}
