@import "bootstrap/dist/css/bootstrap.min.css";


:root {
    --gold: #d4af73;
    --gold-hover: #e4c68f;
    --white: #fff;
    --dark: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

.navbar {
    height: 90px;
    padding: 0 4rem;
    background: transparent;
    transition: .35s;
    z-index: 1050;
}


.navbar.scrolled {
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}


.navbar-brand {
    display: flex;
    align-items: center;
}


.navbar-brand img {
    height: 75px;
    transition: .3s;
}

.nav-link {
    color: #fff;
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-left: 2rem;
    padding-bottom: 8px;
    position: relative;
    transition: .3s;
}


.nav-link:hover {
    color: var(--gold);
}


.nav-link:active,
.nav-link:focus {
    color: #fff !important;
    outline: none;
}


.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .3s;
}


.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}


.nav-link.active {
    color: var(--gold);
}



/* ===========================
   DROPDOWN
=========================== */

.dropdown-menu {
    background: rgba(0, 0, 0, .95);
    border: none;
    border-radius: 12px;
    min-width: 230px;
    padding: 12px 0;
    margin-top: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    animation: dropdownFade .25s ease;
}


.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 12px 24px;
    font-weight: 500;
    background: transparent;
    position: relative;
    transition: .3s;
}


.dropdown-menu .dropdown-item::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .3s;
}


.dropdown-menu .dropdown-item:hover {
    color: var(--gold);
    background: transparent;
}


.dropdown-menu .dropdown-item:hover::after {
    width: calc(100% - 48px);
}


.dropdown-menu .dropdown-item:focus {
    background: transparent;
    color: var(--gold);
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: .5rem;
    vertical-align: .15em;
    content: "";
    border-top: .35em solid #fff;
    border-right: .35em solid transparent;
    border-left: .35em solid transparent;
    border-bottom: 0;
    transition: transform .3s ease;
}


.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}


.navbar-toggler {
    border: none;
    padding: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none !important;
}


.navbar-toggler-icon {
    width: 28px;
    height: 2px;
    background-color: #fff;
    position: relative;
    display: block;
    border-radius: 5px;
    transition: .3s ease;
}


.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: #fff;
    left: 0;
    border-radius: 5px;
    transition: .3s ease;
}

.navbar-toggler-icon::before {
    top: -9px;
}

.navbar-toggler-icon::after {
    bottom: -9px;
}


.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}


@media(max-width:991px) {
    .navbar {
        height: auto;
        min-height: 90px;
        padding: 15px 1.5rem;
    }


    .navbar-brand img {
        height: 55px;
    }


    .navbar-collapse {
        background: rgba(0, 0, 0, .95);
        margin-top: 15px;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    }


    .navbar-nav {
        align-items: center;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }


    .nav-link {
        margin-left: 0;
        padding: 12px 0;
        font-size: .85rem;
    }


    .nav-link::before {
        left: 50%;
        transform: translateX(-50%);
    }


    .nav-link:hover::before,
    .nav-link.active::before {
        width: 60px;
    }


    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 10px;
        background: rgba(255, 255, 255, .05);
        box-shadow: none;
        border-radius: 10px;
        text-align: center;
    }


    .dropdown-menu .dropdown-item {
        padding: 12px;
    }


    .dropdown-menu .dropdown-item::after {
        display: none;
    }


    .navbar .dropdown-toggle::after {
        margin-left: .4rem;
    }

}




@media(min-width:992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }

}


.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    min-height: 100vh;
}

.hero-center {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-logo {
    width: 190px;
    margin-bottom: 35px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.hero-subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-description {
    max-width: 760px;
    font-size: 1.05rem;
    color: #ddd;
}

.hero-description strong {
    color: var(--gold);
}

.btn-warning {
    background: var(--gold);
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    padding: 14px 35px;
    transition: .3s;
}

.btn-warning:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 12px;
    padding: 14px 35px;
    transition: .3s;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.hero small {
    letter-spacing: 2px;
}

@media(max-width:1200px) {

    .hero-title {
        font-size: 3.3rem;
    }

}

@media(max-width:992px) {

    .navbar {
        padding: 0 2rem;
        height: 80px;
    }

    .navbar-brand img {
        height: 60px;
    }

    .nav-link {
        margin-left: 1rem;
        font-size: .8rem;
    }

    .hero-logo {
        width: 150px;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 5px;
    }

    .hero-description {
        max-width: 600px;
    }

}

@media(max-width:768px) {

    .navbar {
        padding: 0 1rem;
        height: 75px;
    }

    .navbar-brand img {
        height: 50px;
    }

    .nav-link {
        margin-left: .75rem;
        font-size: .72rem;
        letter-spacing: 1px;
    }

    .hero-center {
        padding-top: 110px;
    }

    .hero-logo {
        width: 120px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: .8rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: .95rem;
        padding: 0 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

}

@media(max-width:576px) {

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: .75rem;
    }

    .hero-description {
        font-size: .9rem;
    }

    .navbar-brand img {
        height: 45px;
    }

}


.promo-section {
    position: relative;
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

.promo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to right,
            transparent 0,
            transparent 78px,
            rgba(212, 175, 115, .08) 79px,
            transparent 80px);
    pointer-events: none;
}

.promo-content {
    position: relative;
    z-index: 2;
    width: min(100%, 900px);
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.promo-small {
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.promo-title .gold {
    color: #d4af73;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 760px;
    border: 2px solid rgba(212, 175, 115, .8);
    padding: 14px;
    background: rgba(255, 255, 255, .03);
    margin-bottom: 45px;
    transition: .4s ease;
}

.image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(212, 175, 115, .15);
}

.main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}


.ticket {
    position: absolute;
    top: -35px;
    right: -35px;
    width: 180px;
    transform: rotate(12deg);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, .45));
    transition: .4s ease;
}

.image-wrapper:hover .ticket {
    transform: rotate(8deg) scale(1.05);
}

.promo-footer {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    line-height: 1.9;
}

.promo-divider {
    width: 130px;
    height: 2px;
    background: #d4af73;
    margin: 35px auto 25px;
}

.brand {
    color: #d4af73;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


@media (max-width:992px) {

    .promo-section {
        padding: 100px 0;
    }

    .main-image {
        height: 400px;
    }

    .ticket {
        width: 145px;
        top: -25px;
        right: -20px;
    }

    .promo-footer {
        font-size: 1rem;
    }

}

@media (max-width:768px) {

    .promo-section {
        padding: 80px 0;
    }

    .promo-small {
        font-size: .8rem;
        letter-spacing: 3px;
    }

    .promo-title {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }



    .main-image {
        height: 300px;
    }

    .ticket {
        width: 95px;
        top: -12px;
        right: -12px;
    }

    .promo-footer {
        font-size: .95rem;
        line-height: 1.7;
    }

    .brand {
        font-size: .9rem;
        letter-spacing: 3px;
    }

}

@media (max-width:576px) {

    .promo-section::before {
        background: repeating-linear-gradient(to right,
                transparent,
                transparent 48px,
                rgba(212, 175, 115, .06) 49px,
                transparent 50px);
    }

    .main-image {
        height: 240px;
    }

    .ticket {
        width: 75px;
        top: -10px;
        right: -8px;
    }

    .promo-footer {
        font-size: .9rem;
    }

}


.vote-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
    background: #000;
}


.vote-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(212, 175, 115, .12),
            transparent 60%);
    z-index: 1;
}

.vote-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(to right,
            transparent,
            transparent 85px,
            rgba(212, 175, 115, .05) 86px,
            transparent 87px);
    pointer-events: none;
}

.vote-hero .container {
    position: relative;
    z-index: 5;
}


.vote-title {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 12px;
}


.vote-subtitle {
    max-width: 900px;
    margin: 0 auto 70px;
    color: #d4af73;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.8;
}

.trophy-wrapper {
    max-width: 500px;
    margin: auto;
    position: relative;
}

.trophy-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(rgba(212, 175, 115, .35),
            transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.trophy-image {
    width: 100%;
    height: auto;
    display: block;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 50px rgba(212, 175, 115, .25));
    transition: transform .4s ease;
}

.trophy-image:hover {
    transform: scale(1.05);
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

@media (max-width:992px) {

    .vote-hero {
        padding: 100px 20px;
    }

    .vote-title {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .vote-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .trophy-wrapper {
        max-width: 400px;
    }

    .trophy-wrapper::before {
        width: 260px;
        height: 260px;
    }

}


@media (max-width:768px) {

    .vote-hero {
        padding: 80px 20px;
    }

    .vote-title {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .vote-subtitle {
        letter-spacing: 2px;
        line-height: 1.7;
        margin-bottom: 45px;
    }

    .trophy-wrapper {
        max-width: 300px;
    }

    .trophy-wrapper::before {
        width: 180px;
        height: 180px;
    }

}

@media (max-width:576px) {

    .vote-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }


    .vote-subtitle {
        font-size: .85rem;
        line-height: 1.6;
        letter-spacing: 1px;
    }

    .trophy-wrapper {
        max-width: 240px;
    }

    .trophy-wrapper::before {
        width: 150px;
        height: 150px;
    }

}


.about-award {
    position: relative;
    padding: 120px 0;
    background: #000;
    color: #f5f5f5;
    overflow: hidden;
}

.about-award::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(to right,
            transparent,
            transparent 90px,
            rgba(212, 175, 115, .05) 91px,
            transparent 92px);
    pointer-events: none;
}

.about-award .container {
    position: relative;
    z-index: 2;
}

.about-title {
    position: relative;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}


.about-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    margin-top: 18px;
    background: #d4af73;
    border-radius: 20px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 1.6rem;
}

.about-text strong {
    color: #d4af73;
    font-weight: 600;
}

.about-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin: auto;
    filter: drop-shadow(0 20px 45px rgba(212, 175, 115, .25));
    animation: floatTrophy 4s ease-in-out infinite;
    transition: transform .4s ease;
}

.about-image:hover {
    transform: scale(1.05);
}


.col-lg-6.text-center {
    position: relative;
}

.col-lg-6.text-center::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    height: 340px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(rgba(212, 175, 115, .25),
            transparent 70%);
    filter: blur(25px);
    z-index: -1;
}


@keyframes floatTrophy {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}


@media (max-width:992px) {

    .about-award {
        padding: 90px 0;
    }

    .about-title {
        font-size: 1.2rem;
    }


    .about-text {
        font-size: 1rem;
    }

    .about-image {
        max-width: 300px;
        margin-top: 50px;
    }

    .col-lg-6.text-center::before {
        width: 260px;
        height: 260px;
    }

}


@media (max-width:768px) {

    .about-award {
        padding: 80px 0;
        text-align: center;
    }

    .about-title::after {
        margin: 18px auto 0;
    }

    .about-text {
        font-size: .97rem;
        line-height: 1.9;
    }

    .about-image {
        max-width: 260px;
        margin-top: 40px;
    }

    .col-lg-6.text-center::before {
        width: 220px;
        height: 220px;
    }

}

@media (max-width:576px) {

    .about-award {
        padding: 70px 0;
    }

    .about-title {
        letter-spacing: 1px;
    }

    .about-text {
        font-size: .93rem;
        line-height: 1.8;
    }

    .about-image {
        max-width: 220px;
    }

    .col-lg-6.text-center::before {
        width: 180px;
        height: 180px;
    }

}



.breadcrumb-section {
    padding: 140px 0 50px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: .9rem;
    letter-spacing: 1px;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

.breadcrumb-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 120px 0 60px;
    }

    .breadcrumb-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}




.gallery-section {
    background: #000;
    padding: 90px 0;
}

.gallery-title {
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 70px;
    text-transform: uppercase;
}

.gallery-subtitle {
    max-width: 900px;
    margin: 0 auto 70px;
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.8;
}


.gallery-item {
    display: block;
    overflow: hidden;
    position: relative;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.gallery-item.medium {
    height: 265px;
}


.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .05);
    transition: .35s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, .2);
}

@media(max-width:1200px) {

    .gallery-title {
        font-size: 42px;
    }

    .gallery-item.medium {
        height: 220px;

    }

}

@media(max-width:991px) {

    .gallery-title {
        font-size: 34px;
        margin-bottom: 45px;

    }

    .gallery-item.medium {
        height: 200px;

    }

}

@media(max-width:767px) {

    .gallery-item.medium {
        height: 220px;

    }

    .gallery-subtitle {
        font-size: .85rem;
        line-height: 1.6;
        letter-spacing: 1px;
    }


    .gallery-title {
        font-size: 1.2rem;

    }

}



.winners-section {
    background: #000;
    padding: 50px 0;
    overflow: hidden;
}


.winnersSwiper {
    padding: 30px 0 70px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: auto;
}

.winner-card {
    text-align: center;
}

.winner-image {
    width: 220px;
    height: 285px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid #d3a21f;
    background: #111;
}

.winner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.winner-content {
    margin-top: 25px;
}

.winner-content h4 {
    color: #ddd;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.award {
    color: #ddd;
    font-size: 20px;
    line-height: 1.4;
}

.sponsor {
    color: #a8a8a8;
    font-size: 15px;
    margin-top: 8px;
}

.swiper-slide-active .winner-image {
    transform: scale(1.18);
    border: 3px solid var(--gold);
    transition: .4s;
}

.swiper-slide-active .winner-content {
    margin-top: 25px;
}

.swiper-slide-active .winner-content h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 800;
}

.swiper-slide-active .award {
    font-size: 24px;
}

.swiper-pagination {
    position: relative;
    margin-top: 55px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #555;
    transition: .3s;
}

.swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 20px;
    background: #fff;
}

@media(max-width:1200px) {

    .winner-image {
        width: 200px;
        height: 260px;
    }

}

@media(max-width:992px) {

    .winners-title {
        font-size: 40px;
    }

    .winner-image {
        width: 190px;
        height: 250px;
    }

}

@media(max-width:768px) {

    .winner-image {
        width: 170px;
        height: 220px;
    }

    .winner-content h4 {
        font-size: 15px;
    }

    .award {
        font-size: 9px;
        line-height: normal;
    }

    .swiper-slide-active .winner-image {
        transform: scale(1.05);
    }

    .swiper-slide-active .winner-content h4 {
        font-size: 15px;
    }

}




.vote-section {
    padding: 60px 20px 80px;
    text-align: center;
}

.live-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #dc3545;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.8s infinite;
}

.voting-title {
    margin: 30px 0 20px;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
}

.voting-text {
    max-width: 760px;
    margin: 0 auto;
    color: #ddd;
    font-size: 1rem;
    line-height: 1.9;
}

.voting-text strong {
    color: var(--gold);
}


.countdown-box {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.count-item {
    width: 120px;
    padding: 22px 15px;
    background: #111;
    border: 1px solid rgba(212, 175, 115, .2);
    border-radius: 20px;
    text-align: center;
}

.count-item span {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}

@media (max-width: 991.98px) {

    .vote-section {
        padding: 50px 20px 70px;
    }

    .voting-title {
        font-size: 3rem;
    }

    .count-item {
        width: 100px;
        padding: 20px 12px;
    }

    .count-item span {
        font-size: 1.8rem;
    }

}


@media (max-width: 767.98px) {

    .vote-section {
        padding: 45px 15px 60px;
    }

    .live-badge {
        font-size: .75rem;
        padding: 8px 18px;
        letter-spacing: 1px;
    }

    .voting-title {
        margin: 20px 0 15px;
        font-size: 2rem;
        line-height: 1.2;
    }

    .voting-text {
        font-size: .95rem;
        line-height: 1.8;
    }

    .countdown-box {
        gap: 12px;
        margin-top: 40px;
    }

    .count-item {
        width: calc(50% - 6px);
        max-width: 140px;
        padding: 18px 10px;
        border-radius: 16px;
    }

    .count-item span {
        font-size: 1.6rem;
    }

}


@media (max-width: 480px) {

    .vote-section {
        padding: 40px 15px 50px;
    }

    .voting-title {
        font-size: 1.7rem;
    }

    .voting-text {
        font-size: .9rem;
    }

    .count-item {
        width: calc(50% - 8px);
        padding: 16px 8px;
    }

    .count-item span {
        font-size: 1.4rem;
    }

}



.section-heading {
    max-width: 700px;
    margin: 0 auto;
}


.section-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-description {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: .95rem;
    }

}


.voting-categories {
    padding: 80px 0;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #111;
    border: 1px solid rgba(212, 175, 115, .15);
    border-radius: 16px;
    padding: 18px;
    height: 100%;
    cursor: pointer;
    transition: all .35s ease;
}


.category-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, .35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.category-img {
    border-radius: 8px;
    object-fit: cover;
}

.category-item .flex-grow-1 {
    min-width: 0;
}

.category-item .flex-grow-1 div {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.category-item small {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    font-weight: 400;
}

.category-item i {
    margin-left: auto;
    color: #d4af37;
    font-size: 1.15rem;
    transition: transform .3s ease;
}

.category-item:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {

    .voting-categories {
        padding: 60px 0;
    }

    .category-item {
        padding: 16px;
        border-radius: 14px;
    }

    .category-item .flex-grow-1 div {
        font-size: .95rem;
    }

    .category-item small {
        font-size: .8rem;
    }

}

@media (max-width: 575.98px) {

    .voting-categories {
        padding: 45px 0;
    }

    .category-item {
        padding: 14px;
        gap: 14px;
        border-radius: 12px;
    }

    .category-img {
        border-radius: 8px;
        object-fit: cover;
    }

    .category-item .flex-grow-1 div {
        font-size: .9rem;
    }

    .category-item small {
        font-size: .75rem;
    }

    .category-item i {
        font-size: 1rem;
    }

}




/* ===========================
   NOMINEE MODAL
=========================== */

.modal-content {
    background: #111;
    border: 1px solid rgba(212, 175, 115, .15);
    border-radius: 20px;
    color: #fff;
    overflow: hidden;
}

.modal-header {
    border: 0;
    padding: 15px 20px 0;
}

.modal-body {
    padding: 20px 30px 35px;
}

.modal-body img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.modal-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 15px 0 6px;
    color: #fff;
}

.modal-body .text-muted {
    color: rgba(255, 255, 255, .65) !important;
    font-size: .95rem;
    margin-bottom: 20px;
}

.modal-body p:last-of-type {
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
    font-size: .95rem;
    margin-bottom: 0;
}

/* Close Button */

.btn-close {
    filter: invert(1);
    opacity: .8;
    transition: .3s;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Backdrop */

.modal-backdrop.show {
    opacity: .75;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 767px) {

    .modal-dialog {
        margin: 1rem;
    }

    .modal-content {
        border-radius: 16px;
    }

    .modal-body {
        padding: 15px 20px 30px;
    }

    .modal-body img {
        width: 95px;
        height: 95px;
    }

    .modal-body h3 {
        font-size: 1.3rem;
    }

    .modal-body .text-muted {
        font-size: .85rem;
    }

    .modal-body p:last-of-type {
        font-size: .9rem;
        line-height: 1.7;
    }


}




.nominees-section {
    padding: 80px 0;
}

.title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.subtitle {
    font-size: .95rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.nominee-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s ease;
}

.nominee-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, .35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

.nominee-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .4s ease;
}

.nominee-card:hover .nominee-img {
    transform: scale(1.05);
}

.nominee-name {
    margin-top: 16px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.nominee-name span {
    display: block;
    margin-top: 6px;
    color: #d4af37;
    font-size: .85rem;
    font-weight: 500;
}

@media (max-width: 991.98px) {

    .nominees-section {
        padding: 60px 0;
    }

    .nominee-card {
        padding: 12px;
    }

    .nominee-name {
        font-size: .95rem;
    }

    .nominee-name span {
        font-size: .8rem;
    }

}

@media (max-width: 767.98px) {

    .nominees-section {
        padding: 50px 0;
    }

    .title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: .8rem;
        letter-spacing: 2px;
        margin-bottom: 35px;
    }

    .nominee-card {
        padding: 10px;
        border-radius: 14px;
    }

    .nominee-img {
        border-radius: 10px;
    }

    .nominee-name {
        margin-top: 12px;
        font-size: .9rem;
    }

    .nominee-name span {
        font-size: .75rem;
    }

}

@media (max-width: 575.98px) {

    .nominee-card {
        padding: 8px;
    }

    .nominee-name {
        font-size: .85rem;
    }

    .nominee-name span {
        font-size: .72rem;
        margin-top: 4px;
    }

}




.winner-details-section {
    background: #000;
    color: #fff;
    padding: 90px 0;
}

.winner-image-card {
    background: #111;
    border: 2px solid #d4af73;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.winner-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 115, .12);
    border: 1px solid rgba(212, 175, 115, .45);
    color: #d4af73;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.winner-name {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.winner-award {
    color: #d4af73;
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.winner-description {
    color: #bdbdbd;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.winner-info-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    transition: .3s;
}

.winner-info-card:hover {
    border-color: #d4af73;
    transform: translateY(-4px);
}

.winner-info-card span {
    display: block;
    color: #888;
    font-size: .85rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.winner-info-card h6 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
}

.winner-btn {
    margin-top: 40px;
    background: #d4af73;
    color: #000;
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .3s;
}

.winner-btn:hover {
    background: #fff;
    color: #000;
}

.about-winner {
    padding-top: 100px;
}

.section-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-winner p {
    color: #b8b8b8;
    line-height: 2;
    font-size: 1.02rem;
    margin-bottom: 20px;
}

@media(max-width:991px) {

    .winner-name {
        font-size: 2.5rem;
        margin-top: 35px;
    }

    .winner-award {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

}

@media(max-width:768px) {

    .winner-details-section {
        padding: 70px 0;
    }

    .winner-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .winner-award {
        font-size: 1.15rem;
    }

    .winner-description {
        font-size: .95rem;
    }

    .winner-btn {
        width: 100%;
    }

}