.game-title {
    margin-bottom: 50px;
}
.awnser-title {
    margin-bottom: 50px;
    margin-left: 4%;
}
@media (min-width: 1000px) {
    .awnser-title {
        margin-left: 7%;
    }
}

.game-container {
    padding-top: 30px;
}
.row.mt-1 {
    display: flex;
    gap: 20px;
}

.progress-bar {
    background-color: #b2cf39;
    transition: width 0.5s ease;
}
.result-container {
    margin-bottom: 20px; /* Adds space between sections when stacked */
}

@media (min-width: 768px) {
    .result-container {
        margin-bottom: 0; /* Removes bottom margin when in desktop layout */
    }
}
@media (max-width: 768px) {
    .row {
        margin: 0 !important; /* Remove conflicting margins */
    }
    .col-lg-4, .col-md-12 {
        overflow: visible !important;
    }
}
/* Restore original layout for larger screens */
@media (min-width: 992px) { /* For PC */
    .game-container {
        display: flex;
    }

    .game-container .sticky-section {
        flex: 1;
    }

    .game-container .answers-section {
        flex: 2;
    }
}

@media (max-width: 991px) {
    .game-container {
        display: block;
    }

    .sticky-section {
        padding-bottom: 10px;
        position: relative;
    }
}














