/* ===================================================== */
/* ULTRA PREMIUM 9 MAY DESIGN — FINAL VERSION */
/* ===================================================== */


/* ===================================================== */
/* GLOBAL CINEMATIC GLOW */
/* ===================================================== */

body {
    position: relative;
    background: #0b0b10;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(212,160,23,0.035),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(255,215,0,0.025),
            transparent 40%
        ),
        radial-gradient(
            circle at 50% 10%,
            rgba(255,255,255,0.015),
            transparent 30%
        );

    pointer-events: none;
    z-index: 0;
}


/* ===================================================== */
/* MAIN SECTION */
/* ===================================================== */

.victory-premium-section {
    position: relative;
    margin: 42px auto;
    padding: 20px;
    z-index: 2;
}

.victory-background-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}


/* ===================================================== */
/* MAIN PREMIUM BANNER */
/* ===================================================== */

.victory-premium-banner {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

    padding: 56px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(8,8,12,0.96),
            rgba(16,16,24,0.96)
        );

    border: 1px solid rgba(212,160,23,0.16);

    backdrop-filter: blur(20px);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.38),
        inset 0 1px 0 rgba(255,255,255,0.03);

    overflow: hidden;
}


/* subtle luxury shine */

.victory-premium-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(212,160,23,0.035) 50%,
            transparent 80%
        );

    animation: premiumShine 9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes premiumShine {
    0% {
        transform: translateX(-40%);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    70% {
        transform: translateX(40%);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/* ===================================================== */
/* LEFT SIDE */
/* ===================================================== */

.victory-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.victory-line {
    width: 4px;
    height: 210px;
    border-radius: 50px;

    background:
        linear-gradient(
            to bottom,
            #8b6914,
            #d4a017,
            #ffd700,
            #8b6914
        );

    box-shadow:
        0 0 24px rgba(212,160,23,0.12);
}

.victory-content {
    max-width: 720px;
}


/* ===================================================== */
/* TEXT */
/* ===================================================== */

.victory-subtitle {
    display: inline-block;

    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;

    color: rgba(255,255,255,0.55);

    margin-bottom: 14px;
}

.victory-title {
    margin: 0;

    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;

    letter-spacing: 1px;

    background:
        linear-gradient(
            135deg,
            #d4a017,
            #ffd700,
            #f7d774
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.victory-description {
    margin-top: 24px;

    font-size: 18px;
    line-height: 1.9;

    color: rgba(255,255,255,0.80);
}

.victory-quote {
    margin-top: 28px;

    display: inline-block;

    padding: 12px 20px;

    border: 1px solid rgba(212,160,23,0.16);
    border-radius: 14px;

    background: rgba(255,255,255,0.02);

    font-size: 15px;
    letter-spacing: 2px;

    color: rgba(255,255,255,0.68);
}


/* ===================================================== */
/* RIGHT SIDE */
/* ===================================================== */

.victory-right {
    min-width: 260px;
    text-align: right;
}

.victory-number {
    font-size: 130px;
    font-weight: 900;
    line-height: 1;

    background:
        linear-gradient(
            180deg,
            #ffd700,
            #d4a017
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow:
        0 10px 30px rgba(212,160,23,0.08);
}

.victory-years {
    margin-top: 10px;

    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: rgba(255,255,255,0.60);
}


/* ===================================================== */
/* FLAT PREMIUM ST. GEORGE RIBBON */
/* ===================================================== */

.victory-ribbon-mini {
    position: relative;
    margin-top: 32px;
    margin-left: auto;

    width: 250px;
    height: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.05),
            rgba(0,0,0,0.16)
        ),
        repeating-linear-gradient(
            90deg,
            #111111 0px,
            #111111 34px,

            #d89c16 34px,
            #e2b12b 68px,

            #111111 68px,
            #111111 102px,

            #d89c16 102px,
            #e2b12b 136px
        );

    border: 1px solid rgba(255,255,255,0.03);

    box-shadow:
        0 14px 32px rgba(0,0,0,0.22),
        inset 0 2px 4px rgba(255,255,255,0.05),
        inset 0 -3px 6px rgba(0,0,0,0.22);

    overflow: hidden;
}

.victory-ribbon-mini::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            180deg,
            rgba(255,255,255,0.03) 0px,
            rgba(255,255,255,0.03) 1px,
            transparent 1px,
            transparent 4px
        );
}

.victory-ribbon-mini::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.14),
            transparent
        );

    transform: skewX(-20deg);

    animation: ribbonShine 7s ease-in-out infinite;
}

@keyframes ribbonShine {
    0% {
        left: -140%;
    }

    35% {
        left: 160%;
    }

    100% {
        left: 160%;
    }
}


/* ===================================================== */
/* MEMORY LINE */
/* ===================================================== */

.victory-memory-line {
    margin-top: 28px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.victory-memory-line span {
    width: 90px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,160,23,0.75),
            transparent
        );
}

.victory-memory-line p {
    margin: 0;

    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: rgba(255,255,255,0.62);
}


/* ===================================================== */
/* TABLET */
/* ===================================================== */

@media (max-width: 992px) {

    .victory-premium-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
        padding: 40px 30px;
    }

    .victory-right {
        width: 100%;
        text-align: left;
        min-width: auto;
    }

    .victory-number {
        font-size: 90px;
    }

    .victory-title {
        font-size: 40px;
    }

    .victory-line {
        height: 140px;
    }

    .victory-ribbon-mini {
        margin-left: 0;
    }
}


/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media (max-width: 768px) {

    .victory-premium-section {
        margin: 20px auto;
        padding: 12px;
    }

    .victory-premium-banner {
        padding: 28px 22px;
        border-radius: 22px;
        gap: 28px;
    }

    .victory-left {
        gap: 18px;
    }

    .victory-title {
        font-size: 30px;
    }

    .victory-number {
        font-size: 70px;
    }

    .victory-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .victory-years {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .victory-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .victory-memory-line {
        gap: 12px;
    }

    .victory-memory-line span {
        width: 40px;
    }

    .victory-memory-line p {
        font-size: 11px;
        letter-spacing: 2px;
        text-align: center;
    }

    .victory-ribbon-mini {
        width: 180px;
        height: 22px;
    }

    .victory-quote {
        font-size: 13px;
        padding: 10px 14px;
    }
}