h1,
h2,
h3,
h4,
h5,
p {
    #vote-modal & {
        color: #fff;
    }
}

.modal-backdrop {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.5);
}

#vote-modal .modal-content {
    background: linear-gradient(135deg, #1a0b3f, #3a2a6f);
    color: #fff;
    padding: 40px 50px;
    border-radius: 20px;
    border: none;
    text-align: center;
}

#vote-modal .modal-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

#vote-modal .modal-content p.subtitle {
    font-size: 1rem;
    color: #d1c8e8;
    width: 100%;
}

#vote-modal .modal-dialog {
    max-width: 1361px;
}

.vote-modal-step {
    display: none;
}

.vote-modal-step.active {
    display: block;
}

.vote-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-top: 80px;
}

.vote-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;

}

.vote-option {
    background: #2a1a5e;
    border-radius: 15px;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.vote-option .icon-wrapper {
    background: #4a3a7e;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    margin-top: -80px;
}

.vote-option h5 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vote-option .vote-desc {
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
    color: #d1c8e8;
}

/*
            .form-field {
                position: relative;
                width: 100%;
                margin-top: auto;
            } */

.vote-option .form-control {
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 45px;
    padding: 0 40px 0 15px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    appearance: none;
}

.form-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
}

/* Width control for different row types */
.vote-row-3 .vote-option {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

.vote-row-4 .vote-option {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

/* Buttons */
.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-buttons .btn {
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-buttons .btn-cancel {
    background-color: #4a3a7e;
    color: #fff;
}

.modal-buttons .btn-cancel:hover {
    background-color: #5a4a8e;
}

.modal-buttons .btn-save,
.modal-buttons .btn-home {
    background-color: #8a3ffc;
    color: #fff;
}

.modal-buttons .btn-save:hover,
.modal-buttons .btn-home:hover {
    background-color: #9a4ffc;
}

/* Result screen */
.result-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.voucher-code-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.voucher-code {
    background: #f9d74a;
    color: #1a0b3f;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.btn-copy {
    background: #fff;
    color: #1a0b3f;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Social Login */
.social-login-centered {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#linkedin-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background-color: #fff;
    color: #0077b5;
    border: none;
}

#linkedin-login-btn:hover {
    background-color: #005582;
}

/* Typography */
.vote-row h5 {
    font-size: 17px;
}

.vote-row p {
    font-size: 14px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {

    .vote-row-3 .vote-option,
    .vote-row-4 .vote-option {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .vote-option {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {

    .vote-row-3 .vote-option,
    .vote-row-4 .vote-option {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .vote-row {
        margin-bottom: 0;
    }

    .vote-option .icon-wrapper {
        margin-top: -20px;
    }

    .vote-flex {
        flex-direction: column;
        margin-top: 20px;
    }

    #vote-modal .modal-content {
        padding: 30px 20px;
    }

    .vote-option {
        margin-bottom: 5px;
    }
}

@media(max-width: 575px) {

    div#vote-modal .social-login-centered {
        flex-direction: column;
    }

    div#vote-modal .social-login-centered button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #vote-modal .modal-content h2 {
        font-size: 22px;
    }

    .modal-buttons {
        flex-direction: column-reverse;
    }

    .modal-buttons a,
    .modal-buttons button {
        width: 100%;
    }

    .voucher-code-wrapper {
        flex-direction: column;
    }

    .vote-option {
        margin-bottom: 5px;
    }
}


div#vote-modal {
    backdrop-filter: blur(5px);
    background: #ffffff30;
}

div#vote-modal .social-login-centered {
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

/* =================================== */
/* Common Section Styles             */
/* =================================== */
.awards-page-section {
    padding: 70px 0;
    color: #d1c8e8;
    position: relative;
    overflow: hidden;
}

/* Specific background for each section */
.why-participate-section {
    background: #f4f5ff;
}

.process-section {
    background-color: #f4f5ff;
}

.scoring-section {
    background: linear-gradient(180deg, #150933 0%, #0F0624 100%);
}

.benefits-section {
    background-color: #0F0624;
}


.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1A0B48;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* =================================== */
/* 1. "Why Participate?" Section     */
/* =================================== */
.participate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.participate-card {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.participate-card:hover {
    transform: translateY(-10px);
    background: #6f41fcc9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.participate-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.participate-card-icon img {
    height: 40px;
    width: auto;
}

.participate-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 0;
}

.participate-card p {
    font-size: 16px;
    color: #d1c8e8;
    line-height: 1.6;
    margin: 0;
}


/* =================================== */
/* 2. "Participation Process" Section */
/* =================================== */
.participation-process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.process-column {
    background: #f4f5ff;
    border: 1px solid #cbbafe;
    border-radius: 16px;
    overflow: hidden;
}

.process-header {
    background-color: var(--primary-color);
    padding: 20px 30px;
}

.why-participate-section h2 {
    color: #1A0B48;
}

.process-header h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.process-header h3 small {
    font-weight: 400;
    color: #d1c8e8;
    font-size: 16px;
}

.process-steps {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.process-steps li {
    font-size: 17px;
    padding-left: 45px;
    position: relative;
    color: #000;
    line-height: 1.5;
}

.process-steps li:not(:last-child) {
    margin-bottom: 25px;
}

.process-steps li span {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.winners-announcement {
    text-align: center;
    background: var(--primary-color);
    padding: 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =================================== */
/* 3. "Scoring Criteria" Section     */
/* =================================== */
section.awards-page-section.scoring-section {
    background: unset;
}

.scoring-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.criteria-list-wrapper {
    flex: 1.2;
    min-width: 320px;
}

.chart-wrapper {
    flex: 1;
    max-width: 350px;
    min-width: 300px;
    margin: 0 auto;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-color);
}

.criteria-list li:first-child {
    padding-top: 0;
}

.criteria-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.criteria-list li strong {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    padding-left: 30px;
    position: relative;
}

section.awards-page-section.scoring-section .section-heading {
    margin-bottom: 25px;
}

section.awards-page-section.process-section .section-heading h2 {
    color: #000;
}

.criteria-list li strong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.criteria-list li:nth-child(1) strong::before {
    background-color: #e83e8c;
}

.criteria-list li:nth-child(2) strong::before {
    background-color: #6f42c1;
}

.criteria-list li:nth-child(3) strong::before {
    background-color: #2d2d6e;
}

.criteria-list li:nth-child(4) strong::before {
    background-color: #a182e8;
}


.criteria-list li span {
    font-size: 20px;
    font-weight: 700;
    color: #e83e8c;
}

/* =================================== */
/* 4. "Benefits for Winners" Section */
/* =================================== */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefits-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 25px 25px 60px;
    font-size: 17px;
    color: #d1c8e8;
    position: relative;
    transition: background 0.3s;
    line-height: 1.6;
}

.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.benefits-list li .benefit-icon {
    position: absolute;
    left: 20px;
    top: 28px;
    font-size: 22px;
    color: #e83e8c;
}

.benefits-list li strong {
    color: #ffffff;
    font-weight: 600;
}

section.awards-page-section.benefits-section .section-heading h2 {
    color: #fff;
}

.FAQ-main .accordion .card-header button:hover {
    color: #1a0b48;
}

.hosting-info-new-theme .detail-about-hosting-main {
    border: unset;
}

/* =================================== */
/* Responsive Design Adjustments     */
/* =================================== */
@media (max-width: 992px) {
    .scoring-content {
        flex-direction: column;
    }

    .criteria-list-wrapper {
        width: 100%;
        margin-bottom: 40px;
        flex: auto;
    }
}

@media (max-width: 768px) {
    .awards-page-section {
        padding: 40px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .participation-process-wrapper {
        grid-template-columns: 1fr;
    }
}

.social-login-centered {
    display: flex;
    /* padding: 30px; */
    justify-content: space-around;
}

.vote-wrapper {
    position: relative;
    display: inline-block;
}

/* Disabled button hover allowed */
.vote-wrapper .btn.disabled {
    pointer-events: auto;
    cursor: not-allowed;
}

/* Tooltip */
.vote-tooltip-box {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    pointer-events: auto;
    /* ✅ REQUIRED */
    z-index: 9999;
}

/* Arrow */
.vote-tooltip-box::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #000 transparent;
}

/* SHOW tooltip when EITHER button OR tooltip is hovered */
.vote-wrapper:hover .vote-tooltip-box,
.vote-tooltip-box:hover {
    opacity: 1;
    visibility: visible;
}

/* Tooltip link */
.vote-tooltip-box a {
    color: #ff7adf;
    text-decoration: underline;
}

.vote-tooltip-box::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.judging-period .announcement-date {
    margin-top: 15px;
    font-size: 22px;
    color: #fff;
}

.countdown-timer span {
    display: inline-block;
    margin: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.support-text {
    margin-top: 20px;
    font-size: 16px;
}

.winner-banner-inner {
    margin-top: 50px;
}

.winner-banner-inner h4.announcement-title {
    margin-bottom: 20px;
    margin-bottom: 20px;
}
.award-btn {
    margin-top: 20px;
    margin-bottom: 20px;
}

.winner-banner-inner p {
    margin-bottom: 20px !important;
}
.winning-banner-sec .wrapper p{
    max-width: 960px !important;
    font-size: 18px;
}
.winning-banner-sec .wrapper h4{
    font-size: 30px;
}