/* =========================================
   GLOBAL RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================
   BODY
========================================= */

body {
    font-family: Arial, sans-serif;
    background: #0b0b12;
    color: #ffffff;
    line-height: 1.6;
}


/* =========================================
   HEADER
========================================= */

header {
    background: #11111c;
    padding: 20px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #252536;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}


/* =========================================
   NAVIGATION
========================================= */

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #9b7cff;
}


/* =========================================
   HERO
========================================= */

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #10101b;
}

.small-title {
    color: #9b7cff;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    color: #b8b8c7;
    max-width: 600px;
    margin: 0 auto 25px;
}


/* =========================================
   BUTTON
========================================= */

.button {
    display: inline-block;
    background: #7c5cff;
    color: #ffffff;
    padding: 13px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover {
    background: #6848e8;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.tips-section,
.results,
.vip {
    padding: 70px 7%;
    text-align: center;
}

h2 {
    font-size: 30px;
    margin-bottom: 30px;
}


/* =========================================
   TIPS GRID
========================================= */

.tips-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   TIP CARD
========================================= */

.tip-card {
    padding: 30px;

    background: #151522;

    border: 1px solid #29293d;

    border-radius: 15px;

    text-align: left;

    transition: 0.3s;
}

.tip-card:hover {
    border-color: #7c5cff;

    transform: translateY(-5px);
}


/* =========================================
   FOOTBALL MATCH
========================================= */

.tip-card .match {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}


/* =========================================
   LEAGUE
========================================= */

.league {
    color: #9b7cff;
    font-size: 14px;
    margin-bottom: 10px;
}


/* =========================================
   TEAM NAME
========================================= */

.tip-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
}


/* =========================================
   PREDICTION
========================================= */

.pick {
    font-size: 18px;
    margin-bottom: 12px;
}

.pick strong {
    color: #9b7cff;
}


/* =========================================
   ODDS
========================================= */

.odds {
    font-size: 17px;
    margin-bottom: 20px;
}

.odds strong {
    color: #ffffff;
}


/* =========================================
   READ ANALYSIS BUTTON
========================================= */

.tip-card .button {
    margin-top: 10px;
}


/* =========================================
   RESULTS
========================================= */

.result-box {
    max-width: 600px;
    margin: 0 auto 25px;

    padding: 25px;

    background: #151522;

    border-radius: 12px;

    display: flex;

    justify-content: space-around;
}


/* =========================================
   VIP
========================================= */

.vip {
    background: #10101b;
}

.vip-button {
    margin-top: 20px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    text-align: center;

    padding: 50px 20px;

    background: #07070c;

    color: #aaaab8;
}

footer h3 {
    color: #ffffff;

    margin-bottom: 10px;
}

.disclaimer {
    max-width: 600px;

    margin: 20px auto;

    font-size: 13px;
}


/* =========================================
   FORMS
========================================= */

form {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;
}

form label {
    margin-top: 10px;

    font-weight: bold;
}

form input,
form textarea {
    width: 100%;

    padding: 14px;

    background: #0b0b12;

    color: #ffffff;

    border: 1px solid #29293d;

    border-radius: 8px;

    font-family: inherit;

    font-size: 15px;
}

form input:focus,
form textarea:focus {
    outline: none;

    border-color: #7c5cff;
}

form textarea {
    resize: vertical;
}

form button {
    margin-top: 15px;

    padding: 13px 20px;

    background: #7c5cff;

    color: #ffffff;

    border: none;

    border-radius: 8px;

    font-weight: bold;

    cursor: pointer;
}

form button:hover {
    background: #6848e8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .vip-featured {
        transform: none;
    }

}


@media (max-width: 700px) {

    header {
        flex-direction: column;

        gap: 20px;
    }

    nav {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .result-box {
        flex-direction: column;

        gap: 10px;
    }

}
/* =========================
   PREDICTION PAGE
========================= */

.prediction-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 70px 20px;
    text-align: center;
}

#predictionCard {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

#predictionCard .league {
    color: #9b7cff;
    font-weight: bold;
    margin-bottom: 15px;
}

#predictionCard h2 {
    margin-bottom: 15px;
}

#predictionCard .match-time {
    color: #b8b8c7;
    margin-bottom: 25px;
}

#predictionCard hr {
    border: none;
    border-top: 1px solid #29293d;
    margin: 25px auto;
    max-width: 400px;
}

#predictionCard .pick {
    color: #b8b8c7;
    margin-bottom: 8px;
}

#predictionCard .odds {
    margin-top: 15px;
}

#predictionCard .button {
    margin-top: 15px;
}