
/* ===== Awards Section ===== */
.awards2026 {
    position: relative;
    min-height: 100vh;
    padding: 100px 24px 80px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.18), transparent 45%),
        radial-gradient(circle at 80% 100%, rgba(212, 175, 55, 0.12), transparent 45%),
        linear-gradient(160deg, #15151c 0%, #0d0d12 60%, #08080b 100%);
    overflow: hidden;
}

.awards2026::before {
    content: "2026";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(180px, 38vw, 520px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 0;
}

.awards2026 > * {
    position: relative;
    z-index: 1;
}

.awards2026 h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.1;
    background: linear-gradient(180deg, #fff 0%, #f7e9b0 45%, #d4af37 75%, #b8902a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 8px 40px rgba(212, 175, 55, 0.25);
    margin-bottom: 16px;
}

.awards2026 > p {
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.6);
    margin-bottom: 64px;
}

.awards2026 > p::before,
.awards2026 > p::after {
    content: "";
    display: inline-block;
    width: 36px;
    height: 1px;
    margin: 0 16px;
    vertical-align: middle;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* ===== Swiper ===== */
.swiper-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 10px 60px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
    border-radius: 18px;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #f7e9b0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
        #16161d;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.swiper-slide:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.swiper-slide:hover::after {
    transform: translateX(100%);
}

.swiper-slide-active {
    border-color: rgba(212, 175, 55, 0.5);
}

/* ===== Pagination ===== */
.swiper-pagination {
    bottom: 16px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(245, 245, 245, 0.3);
    opacity: 1;
    transition: width 0.3s ease, background 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f7e9b0, #d4af37);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .awards2026 {
        padding: 70px 16px 60px;
    }
    .awards2026 > p {
        margin-bottom: 40px;
        letter-spacing: 0.12em;
    }
    .awards2026 > p::before,
    .awards2026 > p::after {
        width: 20px;
        margin: 0 10px;
    }
    .swiper-slide {
        height: 280px;
    }
}
