/* ================================================
   THE ROYAL V2.1 - REFACTORED CSS
   Same visual design, cleaner code structure
   ================================================ */

/* =========================
   CSS CUSTOM PROPERTIES
   ========================= */
:root {
    /* Brand Colors */
    --color-primary: #ffca37;
    --color-primary-hover: rgba(255, 255, 255, 0.98);
    --color-bg: #010129;

    /* Glass Effect Colors */
    --glass-bg: rgba(21, 2, 139, 0.5);
    --glass-bg-light: rgba(255, 255, 255, 0.06);
    --glass-bg-dark: rgba(0, 0, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-light: rgba(255, 255, 255, 0.2);
    --glass-glow: rgba(21, 2, 139, 0.3);
    --gold-glow: rgba(255, 202, 55, 0.25);

    /* Text Colors */
    --text-white: #ffffff;
    --text-white-90: rgba(255, 255, 255, 0.9);
    --text-white-80: rgba(255, 255, 255, 0.8);
    --text-white-70: rgba(255, 255, 255, 0.7);
    --text-white-50: rgba(255, 255, 255, 0.5);
    --text-black: #000000;

    /* Blur Values */
    --blur-sm: 8px;
    --blur-md: 16px;
    --blur-lg: 24px;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Barlow', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* =========================
   RESET & BASE STYLES
   ========================= */
* {
    outline: none !important;
    box-sizing: border-box;
}

ul, ol {
    padding: 0;
    margin: 0;
}

ul li, ol li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

p, h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

a, a:hover, a:focus, a:active {
    outline: none !important;
    text-decoration: none;
}

body {
    font-family: var(--font-primary);
    font-size: clamp(14px, 1.5vw, 16px);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   CHROME BACKDROP-FILTER FIX
   Remove backdrop-filter from main elements to prevent
   Chrome flickering on hover. Use higher opacity backgrounds instead.
   ========================= */

/* Contain animations to prevent compositing issues */
.testimonial-grid,
.ic-card {
    contain: layout style;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================
   LAYOUT
   ========================= */
.container {
    max-width: 1200px;
    padding: 0 clamp(15px, 3vw, 30px);
    margin: auto;
}

.position-relative {
    z-index: 1;
}

/* =========================
   TYPOGRAPHY
   ========================= */
.text-yellow {
    color: var(--color-primary) !important;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.title-img {
    height: clamp(36px, 5vw, 48px);
}

.offer-disclaimer {
    font-size: clamp(11px, 1.2vw, 13px);
    opacity: 0.9;
}

/* =========================
   BUTTONS
   ========================= */
.page-btn {
    background: linear-gradient(135deg, rgba(255, 202, 55, 0.95) 0%, rgba(245, 184, 0, 0.95) 100%);
    color: var(--text-black);
    font-family: var(--font-primary);
    font-size: clamp(13px, 1.5vw, 15px);
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 28px);
    transition: all var(--transition-base);
    font-weight: 600;
    line-height: normal;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, rgba(245, 245, 245, 0.95) 100%);
    box-shadow: 0 8px 30px rgba(255, 202, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    filter: brightness(1.05);
}

/* =========================
   HEADER
   ========================= */
.header {
    padding: clamp(8px, 1.5vw, 12px) 0;
    width: 100%;
}

.logo span {
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: normal;
}

.logo img {
    max-width: clamp(140px, 18vw, 180px);
}

.header-tagline {
    display: none;
    font-family: var(--font-primary);
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 400;
    color: var(--text-white) !important;
    line-height: 1.3;
    white-space: nowrap;
    -webkit-text-fill-color: var(--text-white);
}

@media (min-width: 992px) {
    .header-tagline {
        display: block;
        color: var(--text-white) !important;
    }
}

.header-right-btn-img {
    max-width: clamp(280px, 30vw, 380px);
}

.header-right-btn-img a {
    display: inline-block;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all var(--transition-base);
}

.header-right-btn-img a:hover {
    border-color: var(--glass-border-light);
    box-shadow: 0 0 16px rgba(255, 202, 55, 0.15);
}

.header-right-btn a {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 500;
    border: 1px solid var(--glass-border-light);
    border-radius: 10px;
    padding: clamp(6px, 1vw, 10px) clamp(10px, 1.5vw, 14px);
    transition: all var(--transition-base);
    background: var(--glass-bg-light);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-right-btn a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.header-right-btn a:hover svg {
    fill: var(--text-black);
    transition: all var(--transition-base);
}

.header-right-btn a:hover span {
    color: var(--text-black) !important;
    transition: all var(--transition-base);
}

.social-icon li a:hover svg {
    fill: var(--color-primary);
}

/* =========================
   CONTENT MAIN & HERO
   ========================= */
.content-main {
    background-image: url(../images/main-bg-img.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-content h6 {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.4;
    font-weight: 500;
}

/* =========================
   WIN BIG SECTION
   ========================= */
.win-big-every-hand {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vw, 24px);
    align-items: center;
}

.win-big-every-hand li {
    width: 100%;
    max-width: 500px;
}

.win-big-every-hand li a {
    display: block;
}

.win-big-every-hand li a img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity var(--transition-base);
}

.win-big-every-hand li a:hover img {
    opacity: 0.9;
}

/* =========================
   WHY PLAYERS CHOOSE
   ========================= */
.why-players-choose {
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.85) 0%, rgba(30, 10, 160, 0.9) 100%);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-xl);
    padding: clamp(20px, 3vw, 30px) clamp(18px, 2.5vw, 25px);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-players-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.why-players-choose ul {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 18px);
}

.why-players-choose ul li {
    display: flex;
    align-items: center;
}

.why-players-choose ul li .d-flex {
    width: 100%;
}

.why-players-choose ul li img {
    max-width: clamp(32px, 4vw, 40px);
    height: clamp(32px, 4vw, 40px);
    min-width: clamp(32px, 4vw, 40px);
    object-fit: contain;
}

.why-players-choose ul li p {
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.5;
}

/* =========================
   START WINNING SECTION
   ========================= */
.start-winning {
    max-width: 1000px;
    margin: 0 auto;
}

.start-winning .row {
    align-items: center;
    justify-content: center;
}

.start-winning .col-lg-6:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-winning .col-lg-6:last-child ul {
    max-width: 480px;
    margin: 0 auto;
}

.start-winning .offer-disclaimer {
    max-width: 480px;
    margin: 0 auto;
    font-size: clamp(10px, 1.2vw, 12px);
}

.start-winning-img {
    max-width: clamp(300px, 40vw, 450px);
}

.start-winning-box {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 18px);
    background: linear-gradient(145deg, rgba(21, 2, 139, 0.88) 0%, rgba(25, 5, 140, 0.92) 100%);
    border: 1px solid var(--glass-border-light);
    padding: clamp(16px, 2vw, 22px);
    border-radius: var(--radius-lg);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.start-winning-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.start-winning-box:hover {
    box-shadow: 0 8px 32px rgba(21, 2, 139, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.start-winning-box:hover::after {
    left: 100%;
}

.start-winning-icon {
    min-width: clamp(45px, 6vw, 60px);
    max-width: clamp(45px, 6vw, 60px);
}

.start-winning-content h4 {
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.2;
}

.start-winning-content h6 {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.2;
}

@media (min-width: 992px) {
    .start-winning .row {
        min-height: 420px;
    }

    .start-winning .col-lg-6:first-child {
        justify-content: center;
        padding-right: clamp(16px, 2.5vw, 32px);
    }

    .start-winning-img.phone-video-img {
        max-width: 240px !important;
        width: 100%;
        height: auto !important;
        object-fit: contain;
    }

    .start-winning .col-lg-6:last-child {
        padding-left: clamp(16px, 2.5vw, 32px);
    }

    .start-winning .col-lg-6:last-child ul {
        margin: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .start-winning-img.phone-video-img {
        max-width: 200px !important;
    }

    .start-winning .col-lg-6:first-child {
        margin-bottom: 32px;
    }
}

@media (max-width: 767px) {
    .start-winning .col-lg-6:first-child {
        margin-bottom: 24px;
    }

    .start-winning-img.phone-video-img {
        max-width: min(180px, 50vw) !important;
    }

    .start-winning-box {
        padding: clamp(12px, 3vw, 16px) !important;
    }
}

/* =========================
   PHONE IMAGES (Animated WebP with Alpha)
   ========================= */
.phone-video-img,
.start-winning-img,
.phone-3-img {
    max-width: clamp(220px, 28vw, 300px);
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    /* Animated WebP with native alpha transparency - no CSS crop needed */
}

/* =========================
   BONUS PROMOTION
   ========================= */
.bonus-promotion {
    background-image: url(../images/bonus-promotion-bg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.bonus-promotion .container {
    max-width: 900px;
}

.bonus-promotion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 3vw, 24px);
    max-width: 780px;
    margin: 0 auto clamp(24px, 4vw, 40px);
}

.bonus-promotion-img {
    display: block;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.bonus-promotion-img:hover {
    border-color: rgba(255, 202, 55, 0.25);
    box-shadow: 0 0 24px rgba(255, 202, 55, 0.12), 0 8px 24px rgba(0, 0, 0, 0.25);
}

.bonus-promotion-img img {
    display: block;
    width: 100%;
    height: auto;
}

.bonus-promotion-img:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .bonus-promotion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
    }
}

/* =========================
   REAL WINNER SECTION
   ========================= */
.real-winner {
    position: relative;
    background-image: url(../images/real-winner-bg.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.real-winner .container {
    max-width: 900px;
}

.real-winner ul {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 18px);
    padding: 0;
    list-style: none;
}

.real-winner ul li {
    padding: 0 !important;
    border: 0 !important;
}

.real-winner-box {
    width: 100%;
    max-width: 850px;
    margin: auto;
    display: flex;
    align-items: stretch;
    min-height: clamp(60px, 8vw, 80px);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.real-winner-box-left {
    background: linear-gradient(180deg, rgba(40, 40, 50, 0.95) 0%, rgba(15, 15, 20, 0.98) 100%);
    width: 30%;
    min-width: 100px;
    max-width: 160px;
    padding: clamp(12px, 1.5vw, 16px) clamp(8px, 1vw, 12px);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    isolation: isolate;
}

.real-winner-box-right {
    flex: 1;
    background: linear-gradient(180deg, rgba(220, 175, 80, 0.95) 0%, rgba(200, 150, 60, 0.98) 100%);
    padding: clamp(10px, 2vw, 16px) clamp(12px, 2vw, 20px);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.real-winner-icon {
    min-width: clamp(32px, 4vw, 44px);
    max-width: clamp(32px, 4vw, 44px);
    height: clamp(32px, 4vw, 44px);
    object-fit: contain;
}

.real-winner-name {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    font-family: var(--font-display);
    font-weight: 600;
    margin: 0;
}

.real-winner-box-right h4 {
    color: var(--text-black);
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    text-shadow: 1px 1px white;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.real-winner-icon-three {
    height: clamp(40px, 5vw, 52px);
    object-fit: contain;
    margin: auto;
}

@media (max-width: 576px) {
    .real-winner ul {
        max-width: 100%;
        padding: 0 8px;
    }

    .real-winner-box-left {
        width: 32%;
        min-width: 80px;
        flex-direction: column;
        gap: 4px;
        padding: 8px 4px;
    }

    .real-winner-box-right {
        width: 68%;
    }

    .real-winner-box-right h4 {
        font-size: clamp(0.7rem, 3vw, 0.9rem);
    }

    .real-winner-name {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }
}

/* =========================
   MARQUEE
   ========================= */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, #110299 0%, #1a03cc 50%, #110299 100%);
    padding: clamp(4px, 0.5vw, 6px) 0;
}

.marquee-content {
    color: var(--text-white);
    font-size: clamp(12px, 1.3vw, 14px);
    font-family: var(--font-display);
    display: inline-block;
    padding-left: 10%;
    animation: marquee 120s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =========================
   TESTIMONIALS - Cross-fade Grid
   ========================= */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    position: relative;
    min-height: 220px;
}

.testimonial-group {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testimonial-group.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-box {
    background: linear-gradient(160deg, rgba(30, 15, 160, 0.7) 0%, rgba(15, 5, 100, 0.8) 100%);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-xl);
    padding: clamp(18px, 2.5vw, 24px);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.testimonial-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 202, 55, 0.2), transparent);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-content h3 {
    font-weight: 600;
    color: var(--text-white);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-family: var(--font-display);
    margin: 0;
}

.testimonial-content p {
    font-family: var(--font-primary);
    color: var(--text-white-90);
    font-weight: 400;
    font-size: clamp(12px, 1.3vw, 14px);
    line-height: 1.55;
    flex: 1;
    margin: 0;
}

.testimonial-content img {
    max-width: 100px;
    width: 100%;
    height: auto;
}

/* Testimonial Dots Navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.testimonial-dots .dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .testimonial-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        min-height: 380px;
    }
}

/* Mobile: 1 column, show 2 testimonials */
@media (max-width: 576px) {
    .testimonial-group {
        grid-template-columns: 1fr;
    }
    .testimonial-group .testimonial-box:nth-child(n+3) {
        display: none;
    }
    .testimonial-grid {
        min-height: 320px;
    }
    .testimonial-box {
        min-height: 140px;
    }
}

/* =========================
   ROYAL BATTER
   ========================= */
.royal-batter {
    background-image: url(../images/royal-batter.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.royal-batter ul {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.5vw, 14px);
}

.royal-batter-list {
    max-width: 950px;
    margin: auto;
    padding: clamp(12px, 2vw, 18px) clamp(16px, 2.5vw, 24px);
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.85) 0%, rgba(10, 5, 60, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: background var(--transition-base), border-color var(--transition-base);
    display: flex;
    align-items: center;
}

.royal-batter-list:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(21, 2, 139, 0.3);
}

.royal-batter-list img {
    min-width: clamp(28px, 3.5vw, 36px);
    max-width: clamp(28px, 3.5vw, 36px);
}

.royal-batter-list p {
    color: var(--text-white);
    font-size: clamp(15px, 1.7vw, 18px);
    font-family: var(--font-display);
    font-weight: 500;
}

/* =========================
   TRUSTED SECTION
   ========================= */
.trusted-section {
    text-align: center;
}

.trusted-desc {
    color: var(--text-white-90);
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: clamp(14px, 1.6vw, 17px);
    max-width: 650px;
    text-align: center;
    margin: auto;
    line-height: 1.6;
}

.trusted-section-icon {
    max-width: clamp(237px, 31vw, 304px);
    margin: 0 auto;
    padding: 0;
}

.trusted-payment ul {
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.8) 0%, rgba(10, 5, 60, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: clamp(10px, 2vw, 16px) clamp(8px, 1.5vw, 12px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(20px, 4vw, 40px);
    max-width: 1100px;
    margin: 0 auto;
}

.trusted-payment ul li {
    padding: clamp(6px, 1vw, 10px) clamp(15px, 2.5vw, 25px);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    flex: 0 0 auto;
}

.trusted-payment ul li:first-child {
    border-left: 0;
}

.trusted-payment ul li img {
    height: clamp(28px, 4vw, 38px);
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all var(--transition-base);
}

.trusted-payment ul li img:hover {
    opacity: 1;
    filter: brightness(1.15);
}

/* =========================
   LEGAL SECURE SECTION
   ========================= */
.legal-secure {
    background-image: url(../images/legal-secure-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: clamp(20px, 3vw, 28px);
    border-radius: var(--radius-xl);
    max-width: 750px;
    margin: auto;
    border: 1px solid var(--glass-border-light);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.legal-secure::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    z-index: 0;
}

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

.legal-secure .row {
    align-items: center;
    justify-content: center;
}

.legal-secure-text {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.15;
    font-weight: 700;
}

.logo-glass-panel {
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.7) 0%, rgba(15, 5, 100, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.legal-secure.logo-glass-panel {
    background-image: url(../images/legal-secure-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.legal-secure.logo-glass-panel::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.logo-box-img {
    max-width: clamp(120px, 20vw, 200px);
    height: auto;
}

@media (min-width: 768px) {
    .legal-secure .row {
        min-height: 180px;
    }

    .legal-secure .col-md-6:first-child {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-box-img {
        max-height: 140px;
        width: auto;
    }
}

@media (max-width: 767px) {
    .legal-secure .row {
        text-align: center;
    }

    .logo-box-img {
        max-width: 200px;
        margin: 0 auto;
    }

    .legal-secure-text {
        margin-top: 16px;
    }
}

.location-text {
    font-weight: 400;
    font-size: clamp(12px, 1.4vw, 14px);
    font-family: var(--font-primary);
}

.location-badge-bg {
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.9) 0%, rgba(40, 20, 180, 0.92) 100%);
    border: 1px solid var(--glass-border-light);
    border-radius: 14px;
    padding: clamp(6px, 1vw, 10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.location-badge-bg p {
    color: var(--text-white);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.location-badge-offter ul li {
    padding: 0 !important;
    border: 0 !important;
}

/* =========================
   BONUS OFFER CARD
   ========================= */
.bonus-offer-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: filter var(--transition-base);
    cursor: pointer;
}

.bonus-offer-card-link:hover {
    filter: brightness(1.08);
}

.bonus-offer-card-link:hover .bonus-offer-card {
    border-color: rgba(255, 202, 55, 0.3);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 202, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.bonus-offer-card {
    max-width: 540px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px);
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.9) 0%, rgba(10, 5, 50, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bonus-offer-header {
    text-align: center;
    margin-bottom: clamp(16px, 3vw, 24px);
}

.bonus-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(90deg, #FF4FA3, #FF6B6B);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.bonus-headline {
    color: var(--text-white);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.bonus-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 2vw, 16px);
    margin-bottom: clamp(16px, 3vw, 24px);
}

.bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(16px, 3vw, 24px) clamp(12px, 2vw, 16px);
    background: linear-gradient(135deg, rgba(255, 202, 55, 0.15) 0%, rgba(255, 202, 55, 0.05) 100%);
    border: 1px solid rgba(255, 202, 55, 0.25);
    border-radius: 14px;
    text-align: center;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.bonus-item:hover {
    border-color: rgba(255, 202, 55, 0.5);
    box-shadow: 0 4px 16px rgba(255, 202, 55, 0.2);
}

.bonus-icon {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bonus-amount {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    text-shadow: 0 2px 8px var(--gold-glow);
}

.bonus-label {
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-sublabel {
    font-size: clamp(10px, 1.4vw, 12px);
    color: var(--text-white-70);
    font-weight: 500;
}

.bonus-terms {
    list-style: none;
    padding: 0;
    margin: 0 0 clamp(12px, 2vw, 16px) 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-terms li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(12px, 1.6vw, 14px);
    color: var(--text-white-80);
    padding: 0 !important;
    border: 0 !important;
}

.term-check {
    color: #4ADE80;
    font-weight: bold;
    font-size: 14px;
}

.term-info {
    color: var(--text-white-50);
    font-size: 12px;
}

.bonus-legal {
    text-align: center;
    font-size: clamp(10px, 1.4vw, 12px);
    color: var(--text-white-50);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: clamp(8px, 1.5vw, 12px);
}

@media (max-width: 420px) {
    .bonus-offer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FINAL CTA SECTION
   ========================= */
.final-cta-card {
    max-width: 540px;
    margin: auto;
    padding: clamp(28px, 5vw, 48px);
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.9) 0%, rgba(10, 5, 50, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
}

.final-cta-badge {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 12px);
    margin-bottom: clamp(16px, 2.5vw, 24px);
    flex-wrap: wrap;
}

.final-cta-badge .badge-word {
    display: inline-block;
    padding: clamp(6px, 1vw, 10px) clamp(12px, 2vw, 18px);
    background: linear-gradient(135deg, rgba(255, 202, 55, 0.15) 0%, rgba(255, 202, 55, 0.08) 100%);
    border: 1px solid rgba(255, 202, 55, 0.4);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 8px rgba(255, 202, 55, 0.3);
}

.final-cta-badge .badge-word:first-child {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.5);
    color: #4ade80;
    text-shadow: 0 1px 8px rgba(34, 197, 94, 0.4);
}

.final-cta-eyebrow {
    font-family: var(--font-primary);
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
    opacity: 0.9;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 12px;
}

.final-cta-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 400;
    color: var(--text-white-70);
    margin-bottom: clamp(20px, 4vw, 32px);
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.final-cta-actions .page-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.final-cta-stores {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.final-cta-stores img {
    height: clamp(38px, 5vw, 46px);
    width: auto;
    transition: opacity var(--transition-fast), filter var(--transition-fast);
    opacity: 0.85;
}

.final-cta-stores img:hover {
    opacity: 1;
    filter: brightness(1.1);
}

.final-cta-legal {
    font-family: var(--font-primary);
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    font-weight: 400;
    color: var(--text-white-50);
    margin-top: clamp(16px, 3vw, 24px);
    letter-spacing: 0.05em;
}

.final-cta-row {
    justify-content: center;
}

.final-cta-phone-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-phone-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.final-cta-phone {
    /* WebM video has built-in alpha transparency */
}

@media (min-width: 992px) {
    .final-cta-row {
        min-height: 420px;
    }

    .final-cta-phone-col {
        height: 100%;
    }

    .final-cta-phone {
        max-width: none !important;
        width: auto !important;
        height: clamp(340px, 38vw, 420px) !important;
        max-height: 100%;
        object-fit: contain;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .final-cta-phone {
        max-width: 240px !important;
    }
}

@media (max-width: 991px) {
    .final-cta-phone-col {
        margin-top: 24px;
    }

    .final-cta-phone {
        max-width: min(260px, 60vw) !important;
    }
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background: linear-gradient(180deg, rgba(10, 5, 20, 0.98) 0%, rgba(5, 2, 10, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-text {
    color: rgba(138, 128, 128, 0.8);
    font-size: clamp(9px, 1vw, 10px);
    line-height: 1.5;
}

.footer-logo {
    max-width: clamp(70px, 10vw, 100px);
    width: 100%;
    margin: 0 auto;
    opacity: 0.9;
}

/* =========================
   FLOATING CARDS (IC CARDS)
   ========================= */
.ic-card {
    position: absolute;
    z-index: -1;
    opacity: 0.85;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.ic-card-1 { left: 0; top: 50%; transform: translateY(-50%); animation-name: float-centered; }
.ic-card-2 { right: 0; top: 0; animation-delay: 0.5s; }
.ic-card-3 { left: 30px; bottom: 150px; animation-delay: 1s; }
.ic-card-4 { right: 20px; top: 50%; transform: translateY(-50%); animation-delay: 1.5s; animation-name: float-centered; }
.ic-card-5 { left: 0; top: 0; animation-delay: 2s; }
.ic-card-6 { top: -50px; right: 0; animation-delay: 2.5s; }
.ic-card-7 { left: 0; top: -100px; animation-delay: 3s; }
.ic-card-8 { right: 0; top: 50%; transform: translateY(-50%); animation-delay: 3.5s; animation-name: float-centered; }
.ic-card-9 { left: 0; animation-delay: 4s; }
.ic-card-10 { right: 0; top: -100px; animation-delay: 4.5s; }
.ic-card-11 { left: 0; top: 100px; animation-delay: 5s; }
.ic-card-12 { right: 0; bottom: 50px; animation-delay: 5.5s; }
.ic-card-13 { right: 0; top: 50%; transform: translateY(-50%); animation-delay: 6s; animation-name: float-centered; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-centered {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 15px)); }
}

/* =========================
   PRESS LOGOS
   ========================= */
.press-logos {
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.75) 0%, rgba(10, 5, 60, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: clamp(16px, 2.5vw, 24px) clamp(20px, 3vw, 32px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(20px, 4vw, 48px);
}

.press-logos li {
    flex: 0 0 auto;
}

.press-logos li img {
    height: clamp(24px, 4vw, 36px);
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all var(--transition-base);
    filter: grayscale(100%);
}

.press-logos li img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.1);
}

/* =========================
   RESPONSIVE ADJUSTMENTS
   ========================= */
@media (max-width: 768px) {
    .header-right-btn a span {
        display: none;
    }
}

/* =========================
   GLASS UTILITY CLASSES
   ========================= */
.glass-card {
    background: linear-gradient(135deg, rgba(21, 2, 139, 0.85) 0%, rgba(25, 10, 140, 0.9) 100%);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card-light {
    background: rgba(21, 2, 139, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.glass-overlay {
    position: relative;
}

.glass-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-bg-dark);
    border-radius: inherit;
    z-index: -1;
}

.glass-shine {
    position: relative;
}

.glass-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.glass-glow {
    box-shadow: 0 0 40px var(--glass-glow), var(--shadow-md);
}

.frosted {
    background: rgba(21, 2, 139, 0.85);
}

/* =========================
   SECTION CONTAINERS
   ========================= */
section .container {
    max-width: 1140px;
}

/* =========================
   WINNER PHOTO CARDS
   Gorgeous glass morphism cards for real winner photos
   Side-by-side layouts with responsive stacking
   ========================= */

/* WIN BIG Section Grid - Side by side */
.win-big-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.win-big-winner-col {
    display: flex;
    justify-content: center;
}

.win-big-cards-col {
    display: flex;
    justify-content: center;
}

/* REAL WINNERS Section Grid - Side by side (reversed) */
.real-winner-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}

.real-winner-list-col {
    order: 1;
}

.real-winner-photo-col {
    order: 2;
    display: flex;
    justify-content: center;
}

/* Winner Photo Link wrapper */
.winner-photo-link {
    display: block;
    text-decoration: none;
}

/* Winner Photo Card - Base styles */
.winner-photo-card {
    position: relative;
    width: clamp(200px, 40vw, 320px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(138, 43, 226, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition-slow);
    cursor: default;
}

.winner-photo-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(138, 43, 226, 0.25),
        0 0 40px var(--gold-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Animated glow effect */
.winner-photo-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        rgba(255, 202, 55, 0.4),
        rgba(138, 43, 226, 0.4),
        rgba(255, 202, 55, 0.4),
        rgba(138, 43, 226, 0.4)
    );
    background-size: 400% 400%;
    border-radius: calc(var(--radius-xl) + 2px);
    z-index: -1;
    animation: glowShift 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes glowShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.winner-photo-card:hover .winner-photo-glow {
    opacity: 1;
}

/* Winner Photo Image */
.winner-photo-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
}

/* Overlay with text */
.winner-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(16px, 3vw, 24px) clamp(12px, 2vw, 20px);
    background: linear-gradient(
        to top,
        rgba(0, 0, 20, 0.95) 0%,
        rgba(0, 0, 20, 0.7) 60%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
}

/* Winner Badge */
.winner-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, #f5b800 100%);
    color: var(--text-black);
    font-family: var(--font-display);
    font-size: clamp(10px, 1.5vw, 13px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: clamp(4px, 0.8vw, 6px) clamp(10px, 1.5vw, 16px);
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(255, 202, 55, 0.4);
}

/* Winner Amount */
.winner-amount {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    color: var(--color-primary);
    text-shadow: 0 2px 12px rgba(255, 202, 55, 0.5);
    letter-spacing: 1px;
}

/* Winner Quote */
.winner-quote {
    font-family: var(--font-primary);
    font-size: clamp(12px, 1.8vw, 16px);
    font-style: italic;
    color: var(--text-white-90);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* Man variant - purple/blue casino vibe */
.winner-photo-card--man {
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.winner-photo-card--man .winner-photo-glow {
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.5),
        rgba(75, 0, 130, 0.5),
        rgba(255, 202, 55, 0.3),
        rgba(138, 43, 226, 0.5)
    );
    background-size: 400% 400%;
}

/* Woman variant - warm celebration vibe */
.winner-photo-card--woman {
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 202, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.winner-photo-card--woman .winner-photo-glow {
    background: linear-gradient(
        45deg,
        rgba(255, 202, 55, 0.4),
        rgba(255, 150, 50, 0.4),
        rgba(255, 255, 255, 0.2),
        rgba(255, 202, 55, 0.4)
    );
    background-size: 400% 400%;
}

/* Responsive adjustments - Tablet */
@media (max-width: 868px) {
    /* Stack WIN BIG grid */
    .win-big-grid {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 32px);
        max-width: 500px;
    }

    .win-big-winner-col {
        order: 1;
    }

    .win-big-cards-col {
        order: 2;
    }

    /* Stack REAL WINNERS grid */
    .real-winner-grid {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 32px);
        max-width: 600px;
    }

    .real-winner-photo-col {
        order: 1;
    }

    .real-winner-list-col {
        order: 2;
    }

    .winner-photo-card {
        width: clamp(200px, 50vw, 280px);
    }

    .winner-photo-overlay {
        padding: clamp(12px, 3vw, 18px) clamp(10px, 2vw, 16px);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .winner-photo-card {
        width: clamp(180px, 60vw, 240px);
    }

    .win-big-grid,
    .real-winner-grid {
        gap: clamp(16px, 4vw, 24px);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .winner-photo-glow {
        animation: none;
    }

    .winner-photo-card:hover {
        transform: none;
    }
}
