.practice-section {
    position: relative;
    padding: 60px 80px 80px;
    /* min-height: 100vh; */
    background: url(./assets/img/game-bg.jpg) center / contain no-repeat;

    background: url(../img/game-bg.jpg) center / contain no-repeat;
    width: 100%;
    background-size: cover;
}

/* TITLE */
.practice-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: cursive;
}

.practice-title span {
    color: #19a974;
}

/* MODE BAR */
.mode-bar {
    margin: 20px auto;
    width: fit-content;
    padding: 18px 36px;
    border-radius: 14px;
    background: linear-gradient(90deg, #000, #6b6b6b);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

.mode-bar span {
    color: #ff3b3b;
}

/* SUB TEXT */
.mode-sub {
    width: fit-content;
    margin: 20px auto 50px;
    padding: 12px 28px;
    border-radius: 12px;
    background: #9d988c;
    font-size: 20px;
    color: #000;
    font-family: cursive;
    font-weight: 700;
    text-align: center;
}

/* GRID */
.exam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 120px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ITEM */
.exam-item h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.exam-item p {
    font-size: 17px;
    margin: 0;
}

/* START BUTTON */
.start-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #1db954;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* RIGHT IMAGE */
.illustration {
    position: absolute;
    right: 60px;
    top: 160px;
    width: 280px;
}
.illustration {
    position: absolute;
    right: 225px;
    top: 59px;
    width: 280px;
}

/* FOOT TEXT */
.bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

.bottom-text span {
    color: red;
    font-weight: 600;
}

/* MOBILE */

@media(max-width:1600px) {
    .illustration {
        position: absolute;
        right: 20px;
        top: 66px;
        width: 250px;
    }
}
@media(max-width: 1024px) {
    .illustration {
        position: absolute;
        right: 5px;
        top: 66px;
        width: 220px;
    }
}
@media(max-width:900px) {
    .practice-section {
        padding: 40px 20px;
    }

    .exam-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .illustration {
        position: static;
        display: block;
        margin: 40px auto 0;
        width: 80%;
    }
    .mode-bar {
        text-align: center;
    }
}