/* ------------------------------------------------------------ */
/* Award Page Styles (THỂ LỆ)                                    */
/* ------------------------------------------------------------ */

footer {
    display: none;
}

.logo {
    text-align: left;
}

.competition-page {
    background: linear-gradient(231.41deg,
    rgba(17, 15, 87, 0.8) 27.77%,
    rgba(66, 29, 119, 0.8) 48.04%,
    rgba(219, 21, 110, 0.8) 99.88%);
    padding: 0 5% 2% 5% !important;
    min-height: 100vh;
}

h1 {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 15px;
}

.main-content {
    padding-bottom: 0;
}

/* ------------------------------------------------------------ */
/* TAB (PC)                                                     */
/* ------------------------------------------------------------ */

.tab-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 5%;
    gap: 10px;
    flex-wrap: nowrap;
}

.tab-button {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.tab-button.active {
    background: linear-gradient(90deg, #FF4921 0%, #E021FF 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ------------------------------------------------------------ */
/* CONTENT                                                      */
/* ------------------------------------------------------------ */

.content {
    color: #fff;
}

.content ul {
    list-style: disc;
    padding-left: 30px;
}

.content p,
.content li {
    font-size: 17px;
    line-height: 140%;
    margin-bottom: 10px;
}

.content a {
    color: #FCF358;
    font-weight: bold;
    text-decoration: underline;
}

/* ------------------------------------------------------------ */
/* RESPONSIVE MOBILE                                            */
/* ------------------------------------------------------------ */

@media (max-width: 768px) {
    .competition-page {
        padding: 0 5% 2% 5% !important;
    }

    h1 {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 15px;
    }

    .content {
        padding: 0;
        max-width: 100%;
    }

    .content p {
        font-size: 13px;
        line-height: 160%;
        margin-bottom: 12px;
        text-align: left;
    }

    .content li {
        font-size: 13px;
        line-height: 160%;
        margin-bottom: 8px;
    }

    .content ul {
        padding-left: 20px;
        margin-bottom: 12px;
    }

    .content a {
        word-break: break-all;
    }

    /* -------------------------------------------------------- */
    /* FIX TAB MOBILE – FULLY MATCH AWARD-LIST PAGE             */
    /* -------------------------------------------------------- */
    .competition-page .tab-container {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .competition-page .tab-button {
        flex: 1 1 0 !important;
        width: 100% !important;
        padding: 10px 0 !important;
        font-size: 12px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
}
