/* =========================================================
   WINNER DETAIL PAGE — GLOBAL VARIABLES
========================================================= */

:root {
    --detail-navy: #020b17;
    --detail-blue: #071b32;
    --detail-blue-light: #104879;
    --detail-gold: #d8aa4e;
    --detail-gold-light: #f2d58c;
    --detail-white: #ffffff;
    --detail-text: #a5b5c4;
    --detail-border: rgba(224, 183, 91, 0.32);
}

.winner-detail-hero,
.winner-detail-hero * {
    box-sizing: border-box;
}

/* =========================================================
   HERO SECTION
========================================================= */

.winner-detail-hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--detail-white);
    background: var(--detail-navy);
}

/* Background image */

.winner-detail-hero-image {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.03);
    animation: winnerDetailZoom 10s ease-in-out infinite;
}

@keyframes winnerDetailZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

/* Background overlays */

.winner-detail-overlay,
.winner-detail-gradient,
.winner-detail-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.winner-detail-overlay {
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(1, 9, 21, 0.98) 0%,
            rgba(3, 19, 39, 0.92) 38%,
            rgba(3, 20, 40, 0.7) 68%,
            rgba(1, 9, 20, 0.87) 100%
        );
}

.winner-detail-gradient {
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(2, 10, 22, 0.62) 0%,
            transparent 27%,
            transparent 62%,
            rgba(2, 10, 22, 0.96) 100%
        );
}

.winner-detail-pattern {
    z-index: 1;
    opacity: 0.11;
    background-image:
        linear-gradient(
            rgba(224, 183, 91, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(224, 183, 91, 0.1) 1px,
            transparent 1px
        );
    background-size: 88px 88px;
}

/* =========================================================
   DECORATIVE LINES
========================================================= */

.winner-detail-decoration {
    position: absolute;
    z-index: 2;
    top: 17%;
    width: 1px;
    height: 56%;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 183, 91, 0.67),
            transparent
        );
}

.winner-detail-decoration::before,
.winner-detail-decoration::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--detail-gold);
    border: 1px solid var(--detail-gold-light);
}

.winner-detail-decoration::before {
    top: 0;
}

.winner-detail-decoration::after {
    bottom: 0;
}

.detail-decoration-left {
    left: 3%;
}

.detail-decoration-right {
    right: 3%;
}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.winner-detail-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 75px 30px 120px;
}

/* Breadcrumb */

.winner-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 27px;
    color: #8fa3b7;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.winner-detail-breadcrumb a {
    color: #8fa3b7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.winner-detail-breadcrumb a:hover,
.winner-detail-breadcrumb span {
    color: var(--detail-gold-light);
}

.winner-detail-breadcrumb i {
    color: var(--detail-gold);
    font-size: 7px;
}

/* Hero layout */

.winner-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.winner-detail-hero-content {
    max-width: 850px;
}

/* =========================================================
   HERO LABEL AND TITLE
========================================================= */

.winner-detail-label {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 9px 15px;
    color: var(--detail-gold-light);
    background: rgba(216, 170, 78, 0.08);
    border: 1px solid var(--detail-border);
    border-radius: 30px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.winner-detail-label i {
    font-size: 11px;
}

.winner-detail-hero-content h1 {
    max-width: 850px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(46px, 5.2vw, 75px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-shadow: 0 11px 32px rgba(0, 0, 0, 0.5);
}

.winner-detail-hero-content h1 span {
    display: block;
    margin-top: 8px;
    color: var(--detail-gold);
    background:
        linear-gradient(
            90deg,
            #f8e5ad,
            #d8aa4e 55%,
            #a66e21
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.winner-detail-hero-content > p {
    max-width: 720px;
    margin: 0 0 29px;
    color: #bac7d2;
    font-size: 15px;
    line-height: 1.8;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   EVENT INFORMATION
========================================================= */

.winner-detail-event-info {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 30px;
    padding: 14px 18px;
    background:
        linear-gradient(
            90deg,
            rgba(12, 52, 91, 0.78),
            rgba(4, 25, 48, 0.62)
        );
    border: 1px solid rgba(224, 183, 91, 0.28);
    border-radius: 5px;
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.24),
        inset 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.winner-detail-event-info > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.winner-detail-info-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    color: var(--detail-gold-light);
    background: rgba(216, 170, 78, 0.09);
    border: 1px solid rgba(224, 183, 91, 0.3);
    border-radius: 50%;
    font-size: 13px;
}

.winner-detail-event-info > div > span:last-child {
    display: flex;
    flex-direction: column;
}

.winner-detail-event-info small {
    color: #8499ad;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.winner-detail-event-info strong {
    margin-top: 2px;
    color: #f2f5f8;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.winner-detail-info-divider {
    width: 1px;
    height: 38px;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(224, 183, 91, 0.37),
            transparent
        );
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.winner-detail-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.winner-detail-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.winner-detail-button-gold {
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f6e0a3,
            #d8aa4e 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    box-shadow: 0 14px 30px rgba(215, 169, 75, 0.24);
}

.winner-detail-button-gold:hover {
    color: #06162b;
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(215, 169, 75, 0.38);
}

.winner-detail-button-outline {
    color: #eef3f7;
    background: rgba(4, 25, 48, 0.64);
    border: 1px solid rgba(224, 183, 91, 0.46);
    backdrop-filter: blur(9px);
}

.winner-detail-button-outline i {
    color: var(--detail-gold-light);
}

.winner-detail-button-outline:hover {
    color: var(--detail-gold-light);
    background: rgba(216, 170, 78, 0.11);
    transform: translateY(-4px);
}

/* =========================================================
   RECOGNITION CARD
========================================================= */

.winner-detail-recognition {
    position: relative;
    isolation: isolate;
    width: min(100%, 390px);
    justify-self: end;
    overflow: hidden;
    padding: 32px 27px;
    text-align: center;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(238, 204, 124, 0.17),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(16, 67, 113, 0.94),
            rgba(3, 18, 36, 0.97)
        );
    border: 1px solid rgba(238, 204, 124, 0.56);
    border-radius: 8px;
    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.43),
        inset 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.winner-detail-recognition::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -100px;
    right: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    opacity: 0.17;
    background: var(--detail-gold);
    filter: blur(65px);
}

/* Card corners */

.winner-recognition-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
}

.winner-detail-recognition .corner-one {
    top: 10px;
    left: 10px;
    border-top: 1px solid var(--detail-gold);
    border-left: 1px solid var(--detail-gold);
}

.winner-detail-recognition .corner-two {
    top: 10px;
    right: 10px;
    border-top: 1px solid var(--detail-gold);
    border-right: 1px solid var(--detail-gold);
}

.winner-detail-recognition .corner-three {
    bottom: 10px;
    left: 10px;
    border-bottom: 1px solid var(--detail-gold);
    border-left: 1px solid var(--detail-gold);
}

.winner-detail-recognition .corner-four {
    right: 10px;
    bottom: 10px;
    border-right: 1px solid var(--detail-gold);
    border-bottom: 1px solid var(--detail-gold);
}

.winner-recognition-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: var(--detail-gold-light);
    background: rgba(216, 170, 78, 0.09);
    border: 1px solid rgba(238, 204, 124, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(216, 170, 78, 0.1);
    font-size: 29px;
}

.winner-detail-recognition > small {
    color: #d9ac50;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.winner-detail-recognition > strong {
    display: block;
    margin: 9px 0;
    color: var(--detail-gold-light);
    font-family: "Cinzel", Georgia, serif;
    font-size: 49px;
    font-weight: 600;
    line-height: 1;
}

.winner-detail-recognition h2 {
    margin: 0 0 11px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.35;
}

.winner-detail-recognition h2 span {
    display: block;
    color: var(--detail-gold-light);
}

.winner-detail-recognition > p {
    margin: 0;
    color: #91a5b8;
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

/* Recognition statistics */

.winner-recognition-stats {
    margin-top: 23px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-top: 1px solid rgba(224, 183, 91, 0.2);
}

.winner-recognition-stats > div {
    display: flex;
    flex-direction: column;
}

.winner-recognition-stats strong {
    color: var(--detail-gold-light);
    font-family: "Cinzel", Georgia, serif;
    font-size: 21px;
}

.winner-recognition-stats small {
    margin-top: 3px;
    color: #8196aa;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.winner-recognition-stats > i {
    width: 1px;
    height: 38px;
    background:
        linear-gradient(
            transparent,
            rgba(224, 183, 91, 0.34),
            transparent
        );
}

/* =========================================================
   BOTTOM STRIP
========================================================= */

.winner-detail-bottom {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 15px 25px;
    color: #91a5b8;
    background:
        linear-gradient(
            90deg,
            rgba(2, 13, 27, 0.96),
            rgba(10, 43, 77, 0.88),
            rgba(2, 13, 27, 0.96)
        );
    border-top: 1px solid rgba(224, 183, 91, 0.22);
    font-family: "Cinzel", Georgia, serif;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.winner-detail-bottom i {
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    background: var(--detail-gold);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .winner-detail-hero {
        min-height: auto;
    }

    .winner-detail-hero-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 45px;
    }

    .winner-detail-event-info {
        gap: 12px;
        padding-inline: 13px;
    }
}

@media (max-width: 900px) {
    .winner-detail-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .winner-detail-hero-container {
        padding-bottom: 125px;
    }

    .winner-detail-recognition {
        width: min(100%, 560px);
        justify-self: start;
    }

    .detail-decoration-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .winner-detail-hero-image {
        object-position: 58% center;
    }

    .winner-detail-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 11, 23, 0.76),
                rgba(3, 17, 34, 0.91) 50%,
                rgba(2, 10, 22, 0.98)
            );
    }

    .winner-detail-hero-container {
        padding: 48px 20px 110px;
    }
/* ==================================================
   WINNER DETAIL HERO — BACKGROUND BRIGHTNESS FIX
================================================== */

.winner-detail-hero-image {
    opacity: 1;
    filter:
        brightness(1.08)
        contrast(1.03)
        saturate(1.08);
}

/* Main dark overlay को हल्का करें */

.winner-detail-overlay {
    background: linear-gradient(
        90deg,
        rgba(1, 9, 21, 0.24) 0%,
        rgba(3, 19, 39, 0.38) 38%,
        rgba(3, 20, 40, 0.32) 68%,
        rgba(1, 9, 20, 0.26) 100%
    );
}

/* Top और bottom gradient हल्का */

.winner-detail-gradient {
    background: linear-gradient(
        180deg,
        rgba(2, 10, 22, 0.28) 0%,
        transparent 27%,
        transparent 65%,
        rgba(2, 10, 22, 0.7) 100%
    );
}

/* Grid pattern भी हल्का रखें */

.winner-detail-pattern {
    opacity: 0.06;
}
@media (max-width: 767px) {
    .winner-detail-hero-image {
        filter:
            brightness(0.46)
            contrast(1.02)
            saturate(1.05);
    }

    .winner-detail-overlay {
        background: linear-gradient(
            180deg,
            rgba(2, 11, 23, 0.45) 0%,
            rgba(3, 17, 34, 0.33) 50%,
            rgba(2, 10, 22, 0.32) 100%
        );
    }

    .winner-detail-gradient {
        background: linear-gradient(
            180deg,
            transparent,
            rgba(2, 10, 22, 0.12) 55%,
            rgba(2, 10, 22, 0.65) 100%
        );
    }
}
    .winner-detail-hero-content h1 {
        font-size: clamp(36px, 10vw, 49px);
    }

    .winner-detail-hero-content > p {
        font-size: 13px;
    }

    .winner-detail-event-info {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 6px 15px;
    }

    .winner-detail-event-info > div {
        padding: 11px 0;
    }

    .winner-detail-info-divider {
        width: 100%;
        height: 1px;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(224, 183, 91, 0.35),
                transparent
            );
    }

    .winner-detail-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .winner-detail-button {
        width: 100%;
    }

    .winner-detail-recognition {
        padding: 28px 20px;
    }

    .winner-detail-bottom {
        gap: 9px;
        font-size: 7px;
        text-align: center;
    }

    .detail-decoration-left {
        left: 8px;
        opacity: 0.5;
    }
}

@media (max-width: 430px) {
    .winner-detail-hero-container {
        padding-top: 38px;
    }

    .winner-detail-hero-content h1 {
        font-size: 34px;
    }

    .winner-detail-label {
        font-size: 8px;
    }

    .winner-detail-bottom span:last-child,
    .winner-detail-bottom i:last-of-type {
        display: none;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .winner-detail-hero-image {
        animation: none;
        transform: none;
    }

    .winner-detail-button {
        transition: none;
    }

    .winner-detail-button:hover {
        transform: none;
    }
}
/* =========================================================
   DUBAI 2025 — EVENT OVERVIEW
========================================================= */

.winner-detail-overview,
.winner-detail-overview * {
    box-sizing: border-box;
}

.winner-detail-overview {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 105px 0 0;
    background:
        radial-gradient(
            circle at 10% 25%,
            rgba(20, 76, 127, 0.12),
            transparent 31%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(210, 163, 67, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8fafc,
            #edf3f8
        );
}

/* Background pattern */

.winner-detail-overview::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.32;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(8, 42, 74, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 42, 74, 0.04) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

/* Top divider */

.winner-detail-overview::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(194, 145, 50, 0.52),
            transparent
        );
}

/* Background glows */

.winner-overview-glow {
    position: absolute;
    z-index: -1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.overview-glow-one {
    top: 40px;
    left: -200px;
    width: 450px;
    height: 450px;
    opacity: 0.1;
    background: #176aa8;
}

.overview-glow-two {
    right: -170px;
    bottom: 70px;
    width: 400px;
    height: 400px;
    opacity: 0.09;
    background: #d3a345;
}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.winner-overview-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px 90px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
    align-items: center;
    gap: clamp(55px, 7vw, 100px);
}

/* =========================================================
   SECTION LABEL AND HEADING
========================================================= */

.winner-detail-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}

.winner-detail-section-label > span {
    position: relative;
    width: 45px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            #c18a33,
            #e4bd67
        );
}

.winner-detail-section-label > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    background: #d8aa4e;
}

.winner-detail-section-label small {
    color: #b47c28;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.winner-detail-section-title {
    max-width: 790px;
    margin: 0 0 22px;
    color: #092845;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(35px, 3.8vw, 54px);
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: -0.02em;
}

.winner-detail-section-title span {
    display: block;
    margin-top: 6px;
    background:
        linear-gradient(
            90deg,
            #dfb55a,
            #bc812c 62%,
            #965e1b
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraphs */

.winner-overview-lead {
    max-width: 760px;
    margin: 0 0 14px;
    color: #425b71;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}

.winner-overview-description {
    max-width: 760px;
    margin: 0;
    color: #718396;
    font-size: 13px;
    line-height: 1.8;
}

/* =========================================================
   EVENT HIGHLIGHTS
========================================================= */

.winner-overview-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 29px;
}

.winner-overview-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 102px;
    padding: 16px;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f4f7fa
        );
    border: 1px solid rgba(10, 47, 81, 0.1);
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(5, 31, 57, 0.055);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.winner-overview-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(193, 138, 51, 0.35);
    box-shadow: 0 19px 38px rgba(5, 31, 57, 0.1);
}

.winner-highlight-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: #b77e2a;
    background: rgba(207, 157, 63, 0.1);
    border: 1px solid rgba(193, 138, 51, 0.24);
    border-radius: 50%;
    font-size: 14px;
}

.winner-overview-highlight > span:last-child {
    display: flex;
    flex-direction: column;
}

.winner-overview-highlight strong {
    margin-bottom: 5px;
    color: #173b5b;
    font-size: 12px;
}

.winner-overview-highlight small {
    color: #7a8d9e;
    font-size: 9px;
    line-height: 1.55;
}

/* =========================================================
   RIGHT EVENT SUMMARY CARD
========================================================= */

.winner-overview-card {
    position: relative;
    isolation: isolate;
    width: min(100%, 390px);
    justify-self: end;
    overflow: hidden;
    padding: 29px 26px 26px;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(238, 204, 124, 0.17),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #0e416f,
            #04182f
        );
    border: 1px solid rgba(224, 183, 91, 0.5);
    border-radius: 8px;
    box-shadow:
        0 30px 65px rgba(5, 31, 57, 0.25),
        inset 0 1px rgba(255, 255, 255, 0.05);
}

.winner-overview-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -90px;
    bottom: -90px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.13;
    background: #d8aa4e;
    filter: blur(65px);
}

/* Card label */

.winner-overview-card-label {
    position: absolute;
    top: 0;
    right: 25px;
    padding: 7px 12px;
    color: #08223d;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    border-radius: 0 0 4px 4px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Card header */

.winner-overview-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 0 20px;
    border-bottom: 1px solid rgba(224, 183, 91, 0.19);
}

.winner-overview-trophy {
    width: 59px;
    height: 59px;
    flex: 0 0 59px;
    display: grid;
    place-items: center;
    color: #f2d58c;
    background: rgba(218, 172, 78, 0.09);
    border: 1px solid rgba(224, 183, 91, 0.36);
    border-radius: 50%;
    font-size: 21px;
}

.winner-overview-card-header > div {
    display: flex;
    flex-direction: column;
}

.winner-overview-card-header small {
    color: #8fa4b7;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.winner-overview-card-header h3 {
    margin: 4px 0 0;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
}

/* Event facts */

.winner-overview-facts {
    margin-top: 11px;
}

.winner-overview-facts > div {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(154, 178, 199, 0.11);
}

.winner-overview-facts > div:last-child {
    border-bottom: 0;
}

.winner-overview-facts > div > i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    color: #e0b65b;
    background: rgba(218, 172, 78, 0.07);
    border: 1px solid rgba(224, 183, 91, 0.2);
    border-radius: 50%;
    font-size: 11px;
}

.winner-overview-facts > div > span {
    display: flex;
    flex-direction: column;
}

.winner-overview-facts small {
    color: #7f94a8;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.winner-overview-facts strong {
    margin-top: 2px;
    color: #eaf0f5;
    font-size: 10px;
}

/* Card button */

.winner-overview-card-button {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 19px;
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f5dfa1,
            #d8a948 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.winner-overview-card-button:hover {
    color: #06162b;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(215, 169, 75, 0.3);
}

/* =========================================================
   STATISTICS STRIP
========================================================= */

.winner-overview-stats {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 27px 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(218, 172, 78, 0.14),
            transparent 27%
        ),
        linear-gradient(
            110deg,
            #051a31,
            #0d3c67,
            #061b33
        );
    border-top: 1px solid rgba(224, 183, 91, 0.35);
    border-right: 1px solid rgba(224, 183, 91, 0.13);
    border-left: 1px solid rgba(224, 183, 91, 0.13);
    border-radius: 7px 7px 0 0;
    box-shadow: 0 -13px 40px rgba(5, 31, 57, 0.12);
}

.winner-overview-stats > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.winner-overview-stats > div > i {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    color: #f0d486;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(224, 183, 91, 0.27);
    border-radius: 50%;
    font-size: 14px;
}

.winner-overview-stats > div > span {
    display: flex;
    flex-direction: column;
}

.winner-overview-stats strong {
    color: #f2d58c;
    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
    line-height: 1;
}

.winner-overview-stats small {
    margin-top: 4px;
    color: #8fa4b7;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.winner-overview-stat-divider {
    width: 1px;
    height: 43px;
    background:
        linear-gradient(
            transparent,
            rgba(224, 183, 91, 0.32),
            transparent
        );
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .winner-overview-container {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 45px;
    }

    .winner-overview-highlights {
        grid-template-columns: 1fr;
    }

    .winner-overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .winner-overview-stat-divider {
        display: none;
    }

    .winner-overview-stats > div {
        justify-content: flex-start;
        padding: 15px 30px;
    }
}

@media (max-width: 800px) {
    .winner-detail-overview {
        padding-top: 80px;
    }

    .winner-overview-container {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 0 20px 75px;
    }

    .winner-overview-card {
        width: min(100%, 580px);
        justify-self: start;
    }

    .winner-detail-section-title {
        font-size: clamp(32px, 8vw, 44px);
    }
}

@media (max-width: 560px) {
    .winner-detail-overview {
        padding-top: 65px;
    }

    .winner-detail-section-label small {
        font-size: 9px;
    }

    .winner-detail-section-title {
        font-size: 30px;
    }

    .winner-overview-lead {
        font-size: 14px;
    }

    .winner-overview-description {
        font-size: 12px;
    }

    .winner-overview-highlights {
        grid-template-columns: 1fr;
    }

    .winner-overview-card {
        padding: 26px 19px 21px;
    }

    .winner-overview-stats {
        grid-template-columns: 1fr;
        padding: 12px 20px;
        border-radius: 0;
    }

    .winner-overview-stats > div {
        padding: 16px 5px;
        border-bottom: 1px solid rgba(224, 183, 91, 0.13);
    }

    .winner-overview-stats > div:last-of-type {
        border-bottom: 0;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .winner-overview-highlight,
    .winner-overview-card-button {
        transition: none;
    }

    .winner-overview-highlight:hover,
    .winner-overview-card-button:hover {
        transform: none;
    }
}
/* =========================================================
   DUBAI 2025 — WINNERS WITH PHOTOS
========================================================= */

.dubai-winners,
.dubai-winners * {
    box-sizing: border-box;
}

.dubai-winners {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(21, 80, 134, 0.2),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(211, 164, 68, 0.1),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #020b17,
            #071b32 52%,
            #020b17
        );
}

.dubai-winners::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(221, 177, 84, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(221, 177, 84, 0.09) 1px,
            transparent 1px
        );
    background-size: 86px 86px;
}

.dubai-winners::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(225, 183, 88, 0.6),
            transparent
        );
}

.dubai-winners-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.winners-list-glow-one {
    top: 80px;
    left: -210px;
    width: 470px;
    height: 470px;
    opacity: 0.15;
    background: #176aa8;
}

.winners-list-glow-two {
    right: -180px;
    bottom: 10%;
    width: 430px;
    height: 430px;
    opacity: 0.12;
    background: #d4a548;
}

/* Container */

.dubai-winners-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Heading */

.dubai-winners-heading {
    margin-bottom: 38px;
}

.dubai-winners-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: end;
    gap: 70px;
}

.dubai-winners-heading
.winner-detail-section-title {
    margin-bottom: 0;
    color: #fff;
}

.dubai-winners-heading-grid > p {
    margin: 0 0 5px;
    padding-left: 23px;
    color: #9cafc0;
    border-left: 1px solid rgba(224, 183, 91, 0.32);
    font-size: 13px;
    line-height: 1.8;
}

/* Search and filters */

.dubai-winners-tools {
    margin-bottom: 17px;
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    align-items: center;
    gap: 18px;
    background:
        linear-gradient(
            100deg,
            rgba(13, 53, 92, 0.9),
            rgba(4, 24, 47, 0.96)
        );
    border: 1px solid rgba(224, 183, 91, 0.28);
    border-radius: 6px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.dubai-winner-search {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    background: rgba(2, 15, 30, 0.55);
    border: 1px solid rgba(157, 181, 202, 0.18);
    border-radius: 3px;
}

.dubai-winner-search:focus-within {
    border-color: rgba(238, 204, 124, 0.6);
    box-shadow: 0 0 0 3px rgba(216, 170, 78, 0.08);
}

.dubai-winner-search > i {
    margin-left: 16px;
    color: #d8aa4e;
    font-size: 13px;
}

.dubai-winner-search input {
    width: 100%;
    height: 46px;
    padding: 0 44px 0 12px;
    color: #edf3f8;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 11px;
}

.dubai-winner-search input::placeholder {
    color: #71869a;
}

.dubai-winner-search button {
    position: absolute;
    top: 50%;
    right: 7px;
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    color: #8398ab;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.dubai-winner-filters {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.winner-filter {
    min-height: 35px;
    padding: 0 13px;
    color: #95a8b9;
    background: rgba(3, 20, 39, 0.55);
    border: 1px solid rgba(157, 181, 202, 0.15);
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.winner-filter:hover {
    color: #f0d486;
    transform: translateY(-2px);
}

.winner-filter.active {
    color: #08223d;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    border-color: #f0d183;
}

.dubai-winner-results {
    margin-bottom: 22px;
    display: flex;
    justify-content: flex-end;
    color: #8095a8;
    font-size: 9px;
}

.dubai-winner-results strong {
    color: #f0d486;
}

/* Winners grid */

.dubai-winners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

/* Winner card */

.dubai-winner-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(218, 172, 78, 0.075),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(13, 54, 94, 0.92),
            rgba(4, 24, 47, 0.98)
        );
    border: 1px solid rgba(224, 183, 91, 0.25);
    border-radius: 7px;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px rgba(255, 255, 255, 0.035);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.dubai-winner-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -70px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0;
    background: #d8aa4e;
    filter: blur(55px);
    transition: opacity 0.4s ease;
}

.dubai-winner-card::after {
    content: "";
    position: absolute;
    z-index: 4;
    right: 11px;
    bottom: 11px;
    width: 27px;
    height: 27px;
    border-right: 1px solid rgba(224, 183, 91, 0.34);
    border-bottom: 1px solid rgba(224, 183, 91, 0.34);
}

.dubai-winner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(238, 204, 124, 0.62);
    box-shadow:
        0 31px 62px rgba(0, 0, 0, 0.37),
        0 0 24px rgba(216, 170, 78, 0.07);
}

.dubai-winner-card:hover::before {
    opacity: 0.14;
}

.dubai-winner-card[hidden] {
    display: none;
}

/* Winner photo */

.dubai-winner-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #104879,
            #04182f
        );
}

.dubai-winner-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition:
        transform 0.9s ease,
        filter 0.5s ease;
}

.dubai-winner-card:hover
.dubai-winner-photo img {
    transform: scale(1.06);
    filter: saturate(1.07);
}

.dubai-winner-photo-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(2, 11, 23, 0.02) 35%,
            rgba(3, 18, 35, 0.23) 66%,
            rgba(3, 18, 35, 0.94) 100%
        );
}

.dubai-winner-photo-badge {
    position: absolute;
    z-index: 3;
    right: 14px;
    bottom: 14px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    color: #08223d;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    border: 1px solid rgba(255, 236, 184, 0.75);
    border-radius: 2px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Card body */

.dubai-winner-card-body {
    position: relative;
    min-height: 275px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 14px;
    padding: 23px 21px 30px;
}

.dubai-winner-number {
    position: absolute;
    top: 17px;
    right: 18px;
    color: rgba(241, 211, 134, 0.09);
    font-family: "Cinzel", Georgia, serif;
    font-size: 37px;
    font-weight: 700;
    line-height: 1;
}

.dubai-winner-icon {
    position: relative;
    z-index: 2;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: grid;
    place-items: center;
    color: #f0d486;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(224, 183, 91, 0.3);
    border-radius: 50%;
    font-size: 15px;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.dubai-winner-card:hover
.dubai-winner-icon {
    color: #08223d;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    transform: rotate(-6deg) scale(1.06);
}

.dubai-winner-content {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding-top: 4px;
}

.dubai-winner-content small {
    display: block;
    max-width: calc(100% - 35px);
    margin-bottom: 8px;
    color: #d8aa4e;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.dubai-winner-content h3 {
    margin: 0 0 7px;
    color: #fff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.dubai-winner-content > strong {
    display: block;
    margin-bottom: 12px;
    color: #bdc9d4;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.dubai-winner-content p {
    margin: 0;
    color: #91a5b8;
    font-size: 11px;
    line-height: 1.7;
}

/* First card highlight */

.dubai-winner-card:first-child {
    border-color: rgba(238, 204, 124, 0.54);
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(238, 204, 124, 0.17),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #124b7c,
            #061c35
        );
}

/* Empty state */

.dubai-winners-empty {
    max-width: 520px;
    margin: 45px auto 0;
    padding: 45px 25px;
    color: #91a5b8;
    background: rgba(5, 28, 53, 0.72);
    border: 1px solid rgba(224, 183, 91, 0.24);
    border-radius: 6px;
    text-align: center;
}

.dubai-winners-empty[hidden] {
    display: none;
}

.dubai-winners-empty > i {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    color: #f0d486;
    background: rgba(218, 172, 78, 0.08);
    border: 1px solid rgba(224, 183, 91, 0.28);
    border-radius: 50%;
    font-size: 20px;
}

.dubai-winners-empty h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 20px;
}

.dubai-winners-empty p {
    margin: 0;
    font-size: 11px;
}

/* Responsive */

@media (max-width: 1100px) {
    .dubai-winners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dubai-winners-tools {
        grid-template-columns: 1fr;
    }

    .dubai-winner-filters {
        justify-content: flex-start;
    }
}

@media (max-width: 800px) {
    .dubai-winners {
        padding: 85px 0;
    }

    .dubai-winners-container {
        padding: 0 20px;
    }

    .dubai-winners-heading-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dubai-winners-heading-grid > p {
        padding-left: 18px;
    }

    .dubai-winner-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
    }

    .winner-filter {
        flex: 0 0 auto;
    }
}

@media (max-width: 600px) {
    .dubai-winners {
        padding: 70px 0;
    }

    .dubai-winners-tools {
        padding: 13px;
    }

    .dubai-winners-grid {
        grid-template-columns: 1fr;
    }

    .dubai-winner-photo {
        height: 380px;
    }

    .dubai-winner-card-body {
        min-height: auto;
    }
}

@media (max-width: 400px) {
    .dubai-winner-photo {
        height: 340px;
    }

    .dubai-winner-card-body {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dubai-winner-card,
    .dubai-winner-photo img,
    .dubai-winner-icon,
    .winner-filter {
        transition: none;
    }

    .dubai-winner-card:hover,
    .winner-filter:hover {
        transform: none;
    }

    .dubai-winner-card:hover
    .dubai-winner-photo img {
        transform: none;
    }
}
/* =========================================================
   LUXURY WINNER CARDS — PHOTO FRAME & ANIMATION
========================================================= */

.dubai-winners-grid {
    gap: 24px;
}

/* Luxury card */

.dubai-winner-card {
    overflow: visible;
    padding: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(229, 190, 102, 0.68),
            rgba(88, 57, 20, 0.35) 18%,
            rgba(10, 44, 77, 0.96) 45%,
            rgba(225, 182, 87, 0.45) 100%
        );
    border: 1px solid rgba(238, 204, 124, 0.58);
    border-radius: 5px;
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 229, 168, 0.05),
        inset 0 1px rgba(255, 245, 216, 0.15);
}

/* Inner dark card surface */

.dubai-winner-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 8px;
    width: auto;
    height: auto;
    opacity: 1;
    border-radius: 2px;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(232, 192, 101, 0.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0d3b66,
            #03172d
        );
    filter: none;
}

/* Outer decorative corner */

.dubai-winner-card::after {
    z-index: 7;
    right: -5px;
    bottom: -5px;
    width: 37px;
    height: 37px;
    border-right: 2px solid #e1b75c;
    border-bottom: 2px solid #e1b75c;
    filter: drop-shadow(0 0 7px rgba(225, 183, 92, 0.4));
}

/* Top-left decorative corner */

.dubai-winner-card-body::before {
    content: "";
    position: absolute;
    z-index: 7;
    top: -3px;
    left: -3px;
    width: 35px;
    height: 35px;
    pointer-events: none;
    border-top: 1px solid #e1b75c;
    border-left: 1px solid #e1b75c;
}

/* Card hover */

.dubai-winner-card:hover {
    transform: translateY(-11px);
    border-color: #f1d386;
    box-shadow:
        0 38px 75px rgba(0, 0, 0, 0.44),
        0 0 32px rgba(216, 170, 78, 0.12),
        inset 0 1px rgba(255, 245, 216, 0.2);
}

/* =========================================================
   LUXURY PHOTO FRAME
========================================================= */

.dubai-winner-photo {
    position: relative;
    height: 330px;
    margin: 0;
    overflow: hidden;
    background: #06182e;
    border: 1px solid rgba(246, 219, 153, 0.72);
    border-radius: 2px;
    box-shadow:
        inset 0 0 0 6px rgba(4, 21, 41, 0.72),
        inset 0 0 0 7px rgba(224, 183, 91, 0.25),
        0 17px 34px rgba(0, 0, 0, 0.28);
}

/* Inner frame */

.dubai-winner-photo::before {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 9px;
    pointer-events: none;
    border: 1px solid rgba(244, 213, 140, 0.35);
    box-shadow:
        inset 0 0 24px rgba(2, 13, 27, 0.24);
}

/* Animated golden shine */

.dubai-winner-photo::after {
    content: "";
    position: absolute;
    z-index: 5;
    top: -40%;
    left: -90%;
    width: 42%;
    height: 180%;
    pointer-events: none;
    opacity: 0;
    transform: rotate(17deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 235, 182, 0.32),
            transparent
        );
}

.dubai-winner-card:hover
.dubai-winner-photo::after {
    opacity: 1;
    animation: winnerPhotoShine 1.2s ease forwards;
}

@keyframes winnerPhotoShine {
    from {
        left: -90%;
    }

    to {
        left: 145%;
    }
}

/* Slow image breathing animation */

.dubai-winner-photo img {
    transform-origin: center top;
    animation: winnerPhotoBreath 9s ease-in-out infinite;
}

@keyframes winnerPhotoBreath {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.045);
    }

    100% {
        transform: scale(1);
    }
}

.dubai-winner-card:hover
.dubai-winner-photo img {
    animation-play-state: paused;
    transform: scale(1.075);
    filter:
        saturate(1.09)
        contrast(1.03)
        brightness(1.03);
}

/* Luxury photo overlay */

.dubai-winner-photo-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(2, 11, 23, 0.02) 30%,
            rgba(3, 18, 35, 0.12) 55%,
            rgba(3, 18, 35, 0.89) 100%
        ),
        linear-gradient(
            90deg,
            rgba(2, 13, 27, 0.14),
            transparent 45%,
            rgba(2, 13, 27, 0.12)
        );
}

/* =========================================================
   LUXURY WINNER BADGE
========================================================= */

.dubai-winner-photo-badge {
    right: 19px;
    bottom: 19px;
    min-height: 33px;
    padding: 0 13px;
    color: #06182e;
    background:
        linear-gradient(
            135deg,
            #fff0bd 0%,
            #e2b75c 48%,
            #aa7021 100%
        );
    border: 1px solid #f6dc98;
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.32),
        0 0 16px rgba(224, 183, 91, 0.2);
    font-size: 8px;
}

.dubai-winner-photo-badge i {
    font-size: 10px;
}

/* =========================================================
   LUXURY CARD CONTENT
========================================================= */

.dubai-winner-card-body {
    min-height: 285px;
    margin-top: 0;
    padding: 27px 23px 31px;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(225, 183, 91, 0.09),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(13, 54, 94, 0.97),
            rgba(3, 19, 38, 0.99)
        );
}

/* Gold divider below photo */

.dubai-winner-card-body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 72%;
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            #f0d183,
            transparent
        );
    box-shadow: 0 0 12px rgba(224, 183, 91, 0.3);
}

/* Winner icon */

.dubai-winner-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    color: #f4d991;
    background:
        radial-gradient(
            circle,
            rgba(218, 172, 78, 0.16),
            rgba(218, 172, 78, 0.055)
        );
    border: 1px solid rgba(242, 211, 134, 0.46);
    box-shadow:
        0 9px 20px rgba(0, 0, 0, 0.18),
        inset 0 0 14px rgba(224, 183, 91, 0.06);
}

/* Category label */

.dubai-winner-content small {
    color: #e0b65b;
    font-size: 8px;
}

/* Winner name */

.dubai-winner-content h3 {
    color: #ffffff;
    font-size: 18px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.28);
}

/* Designation */

.dubai-winner-content > strong {
    color: #d5dee6;
    font-size: 10px;
}

/* Biography */

.dubai-winner-content p {
    color: #9eafbe;
    font-size: 11px;
}

/* Number watermark */

.dubai-winner-number {
    top: 18px;
    right: 20px;
    color: rgba(242, 211, 134, 0.12);
    font-size: 41px;
}

/* =========================================================
   STAGGERED CARD ENTRANCE
========================================================= */

@media (prefers-reduced-motion: no-preference) {
    .dubai-winner-card {
        animation: luxuryWinnerReveal 0.7s ease both;
    }

    .dubai-winner-card:nth-child(3n + 1) {
        animation-delay: 0.05s;
    }

    .dubai-winner-card:nth-child(3n + 2) {
        animation-delay: 0.13s;
    }

    .dubai-winner-card:nth-child(3n + 3) {
        animation-delay: 0.21s;
    }
}

@keyframes luxuryWinnerReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .dubai-winner-photo {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .dubai-winners-grid {
        gap: 24px;
    }

    .dubai-winner-card {
        padding: 7px;
    }

    .dubai-winner-photo {
        height: 420px;
    }

    .dubai-winner-card-body {
        min-height: auto;
        padding: 25px 20px 30px;
    }

    .dubai-winner-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .dubai-winner-photo {
        height: 365px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .dubai-winner-card,
    .dubai-winner-photo img,
    .dubai-winner-photo::after {
        animation: none !important;
        transition: none;
    }

    .dubai-winner-card:hover {
        transform: none;
    }

    .dubai-winner-card:hover
    .dubai-winner-photo img {
        transform: none;
    }
}
/* Search/filter appearance */

.dubai-winner-card:not([hidden]) {
    animation: winnerFilterAppear 0.45s ease both;
}

@keyframes winnerFilterAppear {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dubai-winner-card:not([hidden]) {
        animation: none;
    }
}
/* =========================================================
   EXPLORE OTHER AWARD EDITIONS — LUXURY DESIGN
========================================================= */

.winner-other-editions,
.winner-other-editions * {
    box-sizing: border-box;
}

.winner-other-editions {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(20, 76, 127, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 82%,
            rgba(210, 163, 67, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #f8fafc,
            #edf3f8
        );
}

/* Background grid */

.winner-other-editions::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.32;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(8, 42, 74, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 42, 74, 0.04) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

/* Top golden divider */

.winner-other-editions::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(90%, 1200px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(194, 145, 50, 0.55),
            transparent
        );
}

/* Background glows */

.other-editions-glow {
    position: absolute;
    z-index: -1;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
}

.editions-glow-one {
    top: 50px;
    right: -190px;
    width: 450px;
    height: 450px;
    opacity: 0.1;
    background: #176aa8;
}

.editions-glow-two {
    left: -170px;
    bottom: -80px;
    width: 400px;
    height: 400px;
    opacity: 0.09;
    background: #d3a345;
}

/* =========================================================
   CONTAINER AND HEADING
========================================================= */

.other-editions-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
}

.other-editions-heading {
    margin-bottom: 48px;
}

.other-editions-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: end;
    gap: 70px;
}

.other-editions-heading
.winner-detail-section-title {
    margin-bottom: 0;
}

.other-editions-heading-grid > p {
    margin: 0 0 5px;
    padding-left: 23px;
    color: #687b8e;
    border-left: 1px solid rgba(190, 143, 52, 0.32);
    font-size: 13px;
    line-height: 1.8;
}

/* =========================================================
   EDITION CARDS GRID
========================================================= */

.other-editions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

.other-edition-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #0d3a64,
            #04182f
        );
    border: 1px solid rgba(224, 183, 91, 0.38);
    border-radius: 7px;
    box-shadow:
        0 25px 55px rgba(5, 31, 57, 0.22),
        inset 0 1px rgba(255, 255, 255, 0.04);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.other-edition-card::after {
    content: "";
    position: absolute;
    z-index: 5;
    right: 11px;
    bottom: 11px;
    width: 29px;
    height: 29px;
    pointer-events: none;
    border-right: 1px solid rgba(238, 204, 124, 0.48);
    border-bottom: 1px solid rgba(238, 204, 124, 0.48);
}

.other-edition-card:hover {
    transform: translateY(-9px);
    border-color: rgba(238, 204, 124, 0.72);
    box-shadow:
        0 35px 70px rgba(5, 31, 57, 0.32),
        0 0 28px rgba(216, 170, 78, 0.08);
}

/* =========================================================
   EDITION IMAGE
========================================================= */

.other-edition-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin: 7px 7px 0;
    background: #071b32;
    border: 1px solid rgba(244, 213, 140, 0.42);
}

.other-edition-image::before {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 8px;
    pointer-events: none;
    border: 1px solid rgba(244, 213, 140, 0.22);
}

/* Golden shine */

.other-edition-image::after {
    content: "";
    position: absolute;
    z-index: 5;
    top: -45%;
    left: -90%;
    width: 40%;
    height: 190%;
    pointer-events: none;
    opacity: 0;
    transform: rotate(17deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 235, 182, 0.32),
            transparent
        );
}

.other-edition-card:hover
.other-edition-image::after {
    opacity: 1;
    animation: otherEditionShine 1.2s ease forwards;
}

@keyframes otherEditionShine {
    from {
        left: -90%;
    }

    to {
        left: 145%;
    }
}

.other-edition-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    animation: otherEditionBreath 9s ease-in-out infinite;
    transition:
        transform 0.9s ease,
        filter 0.5s ease;
}

@keyframes otherEditionBreath {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

.other-edition-card:hover
.other-edition-image img {
    animation-play-state: paused;
    transform: scale(1.07);
    filter:
        saturate(1.08)
        contrast(1.03);
}

.other-edition-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(2, 11, 23, 0.02) 30%,
            rgba(3, 18, 35, 0.2) 60%,
            rgba(3, 18, 35, 0.94) 100%
        );
}

/* Year */

.other-edition-year {
    position: absolute;
    z-index: 3;
    right: 17px;
    bottom: 15px;
    color: #f2d58c;
    font-family: "Cinzel", Georgia, serif;
    font-size: 27px;
    font-weight: 600;
    text-shadow: 0 7px 20px rgba(0, 0, 0, 0.55);
}

/* Edition badge */

.other-edition-badge {
    position: absolute;
    z-index: 3;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    color: #08223d;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    border: 1px solid rgba(255, 236, 184, 0.72);
    border-radius: 2px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* =========================================================
   EDITION CONTENT
========================================================= */

.other-edition-content {
    position: relative;
    min-height: 305px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 24px 29px;
}

.other-edition-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 70%;
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            #e0b65b,
            transparent
        );
}

.other-edition-content > small {
    display: block;
    margin-bottom: 8px;
    color: #d8aa4e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.other-edition-content h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.other-edition-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.other-edition-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #91a5b8;
    font-size: 8px;
}

.other-edition-meta i {
    color: #d8aa4e;
}

.other-edition-content p {
    margin: 0 0 22px;
    color: #9cafc0;
    font-size: 11px;
    line-height: 1.75;
}

/* =========================================================
   EDITION BUTTON
========================================================= */

.other-edition-button {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: auto;
    padding: 0 18px;
    color: #f0d486;
    background: rgba(216, 170, 78, 0.07);
    border: 1px solid rgba(224, 183, 91, 0.4);
    border-radius: 2px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.other-edition-button:hover {
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f5dfa1,
            #c99137
        );
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(215, 169, 75, 0.25);
}

.other-edition-button i {
    transition: transform 0.3s ease;
}

.other-edition-button:hover i {
    transform: translateX(5px);
}

/* =========================================================
   ALL EDITIONS CARD
========================================================= */

.other-edition-all {
    min-height: 612px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 38px 28px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(238, 204, 124, 0.2),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #124b7c,
            #061c35
        );
    border-color: rgba(238, 204, 124, 0.62);
}

.other-edition-all-pattern {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 20px 20px;
}

.other-edition-all-icon {
    position: relative;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    margin-bottom: 21px;
    color: #f2d58c;
    background: rgba(218, 172, 78, 0.1);
    border: 1px solid rgba(238, 204, 124, 0.48);
    border-radius: 50%;
    box-shadow:
        0 0 0 8px rgba(218, 172, 78, 0.04),
        0 20px 38px rgba(0, 0, 0, 0.25);
    font-size: 31px;
    transition:
        color 0.4s ease,
        background 0.4s ease,
        transform 0.4s ease;
}

.other-edition-all:hover
.other-edition-all-icon {
    color: #08223d;
    background:
        linear-gradient(
            135deg,
            #f4dc9b,
            #c99137
        );
    transform: rotate(-7deg) scale(1.07);
}

.other-edition-all > small {
    color: #d8aa4e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.other-edition-all h3 {
    margin: 12px 0;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.35;
}

.other-edition-all > p {
    max-width: 340px;
    margin: 0 auto 23px;
    color: #a8b7c5;
    font-size: 11px;
    line-height: 1.75;
}

/* Statistics */

.other-edition-all-stats {
    width: 100%;
    max-width: 310px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 25px;
    padding: 17px 0;
    border-top: 1px solid rgba(224, 183, 91, 0.19);
    border-bottom: 1px solid rgba(224, 183, 91, 0.19);
}

.other-edition-all-stats > div {
    display: flex;
    flex-direction: column;
}

.other-edition-all-stats strong {
    color: #f2d58c;
    font-family: "Cinzel", Georgia, serif;
    font-size: 22px;
}

.other-edition-all-stats small {
    margin-top: 3px;
    color: #8196aa;
    font-size: 7px;
    text-transform: uppercase;
}

.other-edition-all-stats > i {
    width: 1px;
    height: 37px;
    background:
        linear-gradient(
            transparent,
            rgba(224, 183, 91, 0.34),
            transparent
        );
}

.other-edition-button-gold {
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f5dfa1,
            #d8a948 55%,
            #a66e21
        );
    border-color: #f0d183;
}

/* =========================================================
   BACK NAVIGATION
========================================================= */

.other-editions-navigation {
    margin-top: 35px;
    padding: 18px 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: rgba(8, 44, 76, 0.05);
    border-top: 1px solid rgba(190, 143, 52, 0.2);
    border-bottom: 1px solid rgba(190, 143, 52, 0.2);
}

.other-editions-navigation > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #a97020;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.other-editions-navigation > a i {
    transition: transform 0.3s ease;
}

.other-editions-navigation > a:hover i {
    transform: translateX(-5px);
}

.other-editions-navigation > span {
    color: #718396;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* =========================================================
   ENTRANCE ANIMATION
========================================================= */

@media (prefers-reduced-motion: no-preference) {
    .other-edition-card {
        animation: otherEditionReveal 0.75s ease both;
    }

    .other-edition-card:nth-child(1) {
        animation-delay: 0.05s;
    }

    .other-edition-card:nth-child(2) {
        animation-delay: 0.15s;
    }

    .other-edition-card:nth-child(3) {
        animation-delay: 0.25s;
    }
}

@keyframes otherEditionReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .other-editions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .other-edition-all {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        min-height: 550px;
        justify-self: center;
    }
}

@media (max-width: 800px) {
    .winner-other-editions {
        padding: 85px 0;
    }

    .other-editions-container {
        padding: 0 20px;
    }

    .other-editions-heading-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .other-editions-heading-grid > p {
        padding-left: 18px;
    }

    .other-editions-navigation {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .winner-other-editions {
        padding: 70px 0;
    }

    .other-editions-grid {
        grid-template-columns: 1fr;
    }

    .other-edition-all {
        grid-column: auto;
        width: 100%;
        min-height: 520px;
    }

    .other-edition-image {
        height: 330px;
    }

    .other-edition-content {
        min-height: auto;
    }

    .other-editions-navigation > span {
        line-height: 1.6;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .other-edition-card,
    .other-edition-image img,
    .other-edition-image::after,
    .other-edition-all-icon {
        animation: none !important;
        transition: none;
    }

    .other-edition-card:hover {
        transform: none;
    }

    .other-edition-card:hover
    .other-edition-image img {
        transform: none;
    }
}
/* =========================================================
   COMPACT NOMINATION FINAL CTA
========================================================= */

.winner-nomination-cta,
.winner-nomination-cta * {
    box-sizing: border-box;
}

.winner-nomination-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 42px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(218, 172, 78, 0.17),
            transparent 28%
        ),
        linear-gradient(
            105deg,
            #031326,
            #0d416f 50%,
            #031326
        );
    border-top: 1px solid rgba(224, 183, 91, 0.4);
    border-bottom: 1px solid rgba(224, 183, 91, 0.25);
}

/* Diagonal background texture */

.winner-nomination-cta::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    background-image:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 19px 19px;
}

/* Top golden light */

.winner-nomination-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(80%, 850px);
    height: 1px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            #f0d183,
            transparent
        );
    box-shadow: 0 0 18px rgba(224, 183, 91, 0.4);
}

/* Background glow */

.nomination-cta-glow {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 15%;
    width: 280px;
    height: 280px;
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: 0.12;
    background: #d8aa4e;
    filter: blur(90px);
}

/* Main layout */

.nomination-cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

/* =========================================================
   CTA ICON
========================================================= */

.nomination-cta-icon {
    position: relative;
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    display: grid;
    place-items: center;
    color: #f2d58c;
    background:
        radial-gradient(
            circle,
            rgba(218, 172, 78, 0.18),
            rgba(218, 172, 78, 0.06)
        );
    border: 1px solid rgba(238, 204, 124, 0.5);
    border-radius: 50%;
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.25),
        inset 0 0 20px rgba(224, 183, 91, 0.06);
    font-size: 27px;
}

.nomination-icon-ring {
    position: absolute;
    inset: -7px;
    border: 1px dashed rgba(224, 183, 91, 0.25);
    border-radius: 50%;
    animation: nominationRingRotate 18s linear infinite;
}

@keyframes nominationRingRotate {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   CTA CONTENT
========================================================= */

.nomination-cta-content {
    min-width: 0;
}

.nomination-cta-content > small {
    display: block;
    margin-bottom: 5px;
    color: #d8aa4e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nomination-cta-content h2 {
    margin: 0 0 6px;
    color: #ffffff;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(22px, 2.7vw, 35px);
    font-weight: 600;
    line-height: 1.25;
}

.nomination-cta-content h2 span {
    color: #f2d58c;
}

.nomination-cta-content p {
    max-width: 700px;
    margin: 0;
    color: #9cafc0;
    font-size: 10px;
    line-height: 1.65;
}

/* =========================================================
   CTA BUTTONS
========================================================= */

.nomination-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nomination-cta-button {
    min-width: 185px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.nomination-button-gold {
    color: #06162b;
    background:
        linear-gradient(
            135deg,
            #f6e0a3,
            #d8aa4e 55%,
            #a66e21
        );
    border: 1px solid #f0d183;
    box-shadow: 0 13px 28px rgba(215, 169, 75, 0.22);
}

.nomination-button-gold:hover {
    color: #06162b;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(215, 169, 75, 0.38);
}

.nomination-button-outline {
    color: #edf3f8;
    background: rgba(3, 19, 38, 0.62);
    border: 1px solid rgba(224, 183, 91, 0.42);
}

.nomination-button-outline i {
    color: #f0d486;
}

.nomination-button-outline:hover {
    color: #f0d486;
    background: rgba(218, 172, 78, 0.1);
    transform: translateY(-3px);
}

.nomination-cta-button i {
    transition: transform 0.3s ease;
}

.nomination-cta-button:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .nomination-cta-container {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .nomination-cta-actions {
        grid-column: 1 / -1;
        padding-left: 98px;
    }
}

@media (max-width: 700px) {
    .winner-nomination-cta {
        padding: 48px 0;
    }

    .nomination-cta-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        text-align: center;
    }

    .nomination-cta-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .nomination-cta-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .nomination-cta-button {
        width: 100%;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .nomination-icon-ring {
        animation: none;
    }

    .nomination-cta-button {
        transition: none;
    }

    .nomination-cta-button:hover {
        transform: none;
    }
}
.winner-detail-hero {
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(24, 93, 151, 0.3),
            transparent 34%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(216, 170, 78, 0.11),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #020b17 0%,
            #092744 48%,
            #031326 100%
        );
}

/* ========================================
   SABRANG FILM AWARDS 2025 — HERO
======================================== */

.sabrang-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;

    background-image: url("../images/winners/sabrang-awards-2025-hero.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    animation: sabrangHeroMotion 8s ease-in-out infinite alternate;
}

/* Image darkening layer */
.sabrang-hero .winner-detail-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(2, 9, 20, 0.94) 0%,
            rgba(3, 16, 31, 0.78) 45%,
            rgba(3, 15, 28, 0.38) 100%
        ),
        linear-gradient(
            0deg,
            rgba(2, 9, 19, 0.82) 0%,
            transparent 52%,
            rgba(2, 8, 17, 0.35) 100%
        );
}

/* Subtle premium pattern */
.sabrang-hero .winner-detail-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.09;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(215, 173, 91, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 173, 91, 0.35) 1px, transparent 1px);
    background-size: 75px 75px;
    mask-image: linear-gradient(to right, #000, transparent 75%);
}

/* Content */
.sabrang-hero .winner-detail-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 125px;
    padding-bottom: 100px;
}

.sabrang-hero .winner-detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 9px 17px;
    border: 1px solid rgba(218, 178, 93, 0.55);
    border-radius: 50px;
    background: rgba(4, 18, 34, 0.56);
    color: #e3bd6f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.sabrang-hero h1 {
    max-width: 800px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -2px;
    text-shadow: 0 5px 28px rgba(0, 0, 0, 0.45);
}

.sabrang-hero h1 span {
    display: block;
    margin-top: 8px;
    color: #ddb35e;
}

.sabrang-hero p {
    max-width: 680px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.sabrang-hero .winner-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.sabrang-hero .winner-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(3, 14, 27, 0.62);
    color: rgba(255, 255, 255, 0.91);
    font-size: 14px;
    backdrop-filter: blur(7px);
}

.sabrang-hero .winner-detail-meta i {
    color: #ddb35e;
}

.sabrang-hero .winner-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    border: 1px solid #dfba6a;
    border-radius: 5px;
    background: linear-gradient(135deg, #e2bd6b, #b77a25);
    color: #071525;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(185, 125, 35, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sabrang-hero .winner-detail-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 17px 38px rgba(185, 125, 35, 0.42);
}

/* Slow background movement */
@keyframes sabrangHeroMotion {
    0% {
        background-size: 100% auto;
        background-position: center center;
    }

    100% {
        background-size: 106% auto;
        background-position: center 46%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sabrang-hero {
        min-height: 650px;
        background-position: 62% center;
        animation: none;
    }

    .sabrang-hero .winner-detail-overlay {
        background: rgba(2, 10, 21, 0.76);
    }

    .sabrang-hero .winner-detail-hero-content {
        padding-top: 130px;
        padding-bottom: 75px;
    }

    .sabrang-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .sabrang-hero p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .sabrang-hero {
        animation: none;
    }
}