/* =============================================================
       MENTOTO PREMIUM GOLD CARD — LUXURY EDITION
       Fokus hanya area .MENTOTO-bandar-card agar layout utama tidak rusak.
       ============================================================= */
    .MENTOTO-bandar-card {
        max-width: 420px;
        width: 100%;
        background:
            radial-gradient(circle at 18% 8%, rgba(255, 246, 190, 0.34) 0%, transparent 26%),
            radial-gradient(circle at 90% 12%, rgba(255, 214, 92, 0.28) 0%, transparent 34%),
            linear-gradient(145deg, #090805 0%, #1b1305 18%, #6f4b06 48%, #d7a316 76%, #8a6208 100%);
        border-radius: 30px;
        padding: 0;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 235, 156, 0.72);
        box-shadow:
            0 34px 90px rgba(0, 0, 0, 0.78),
            0 0 54px rgba(220, 166, 24, 0.34),
            inset 0 1px 0 rgba(255, 255, 255, 0.34),
            inset 0 -28px 80px rgba(30, 20, 4, 0.28);
        isolation: isolate;
    }

    .MENTOTO-bandar-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 30px;
        padding: 2px;
        background: linear-gradient(135deg, #fff7c2 0%, #c99116 34%, #fff0a5 58%, #6f4b06 100%);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
                mask-composite: exclude;
        pointer-events: none;
        opacity: 0.96;
        z-index: 5;
    }

    .MENTOTO-bandar-card::after {
        content: '';
        position: absolute;
        inset: -35% -45%;
        background:
            linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.16) 42%, transparent 54%),
            repeating-linear-gradient(90deg, rgba(255, 236, 159, 0.06) 0 1px, transparent 1px 42px);
        transform: rotate(-6deg);
        pointer-events: none;
        z-index: 1;
        opacity: 0.75;
    }

    .hero-title {
        padding: 26px 26px 22px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
            linear-gradient(90deg, rgba(10, 8, 3, 0.48), rgba(100, 70, 8, 0.18));
        border-bottom: 1px solid rgba(255, 237, 166, 0.46);
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.32);
        text-align: left;
        position: relative;
        z-index: 2;
        margin-bottom: 0;
    }
    .hero-title::before {
        content: '◆ LOGIN MENTOTO';
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        font-weight: 900;
        color: #fff4bd;
        letter-spacing: 3px;
        margin-bottom: 12px;
        text-shadow: 0 0 18px rgba(255, 225, 122, 0.7);
    }
    .hero-title h1 {
        font-size: 18px;
        font-weight: 900;
        line-height: 1.35;
        color: #fffdf0;
        margin: 0;
        letter-spacing: -0.15px;
        text-shadow:
            0 2px 0 rgba(0, 0, 0, 0.38),
            0 0 24px rgba(255, 220, 98, 0.38);
    }
    .hero-title h1 span {
        color: #fff4bd;
        -webkit-text-fill-color: initial;
        font-weight: 900;
    }

    .info-container {
        padding: 24px 26px 8px;
        background: rgba(15, 11, 4, 0.18);
        border: none;
        border-radius: 0;
        margin: 0;
        position: relative;
        z-index: 2;
        overflow: visible;
    }
    .info-head {
        padding: 0;
        background: transparent;
        border: none;
        margin-bottom: 17px;
    }
    .info-head h2 {
        font-size: 10px;
        font-weight: 900;
        color: #fff4bd;
        letter-spacing: 3.2px;
        text-align: left;
        text-transform: uppercase;
        margin: 0;
        text-shadow: 0 0 12px rgba(255, 223, 116, 0.44);
    }
    .info-head h2::before {
        content: '⌁ ';
        color: #ffe27a;
    }
    .info-list {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 13px;
    }
    .info-row {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 7px;
        border: none;
        background: transparent;
        position: relative;
    }
    .info-row:last-child { border: none; }
    .info-label {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }
    .info-dot { display: none; }
    .info-text {
        color: rgba(255, 248, 217, 0.88);
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        position: relative;
        padding-left: 16px;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
    }
    .info-text::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 7px;
        height: 7px;
        transform: translateY(-50%) rotate(45deg);
        background: linear-gradient(135deg, #fff6bc, #d6a100);
        box-shadow: 0 0 14px rgba(255, 226, 126, 0.88);
        border-radius: 1px;
        animation: luxuryDotPulse 2.4s ease-in-out infinite;
    }
    .info-row:nth-child(2) .info-text::before { animation-delay: 0.25s; }
    .info-row:nth-child(3) .info-text::before { animation-delay: 0.5s; }
    .info-row:nth-child(4) .info-text::before { animation-delay: 0.75s; }
    @keyframes luxuryDotPulse {
        0%, 100% { opacity: 1; transform: translateY(-50%) rotate(45deg) scale(1); }
        50%      { opacity: 0.58; transform: translateY(-50%) rotate(45deg) scale(0.72); }
    }
    .info-number {
        color: #fff7c2;
        font-size: 13px;
        font-weight: 900;
        background: rgba(12, 9, 3, 0.28);
        padding: 2px 0 2px 8px;
        border: none;
        border-radius: 0;
        letter-spacing: 0.2px;
        text-shadow: 0 0 12px rgba(255, 216, 92, 0.38);
        white-space: nowrap;
    }
    .info-row::after {
        content: '';
        display: block;
        width: 100%;
        height: 5px;
        background: rgba(10, 7, 2, 0.38);
        border-radius: 999px;
        position: relative;
        overflow: hidden;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.45);
    }
    .info-row .bar-fill {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 5px;
        border-radius: 999px;
        background: linear-gradient(90deg, #8a6208, #f6d45f, #fff2a6);
        box-shadow: 0 0 16px rgba(255, 218, 91, 0.68);
    }
    .info-row:nth-child(1) .bar-fill { width: 95%; }
    .info-row:nth-child(2) .bar-fill { width: 93%; }
    .info-row:nth-child(3) .bar-fill { width: 100%; }
    .info-row:nth-child(4) .bar-fill { width: 92%; }

    .bonus-wrap {
        margin: 24px 26px 19px;
        padding: 0;
        background: transparent;
        border: none;
        text-align: left;
        position: relative;
        z-index: 2;
    }
    .bonus-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 13px;
    }
    .bonus-head .gold-icon { display: none; }
    .bonus-head h3 {
        margin: 0;
        font-size: 10px;
        color: #fff4bd;
        font-weight: 900;
        letter-spacing: 3.2px;
        text-transform: uppercase;
        text-shadow: 0 0 12px rgba(255, 223, 116, 0.42);
    }
    .bonus-head h3::before {
        content: '⌁ ';
        color: #ffe27a;
    }
    .bonus-head::after {
        content: '● ACTIVE';
        font-size: 9px;
        font-weight: 900;
        color: #fff7c2;
        letter-spacing: 1.2px;
        background: linear-gradient(135deg, rgba(20, 15, 4, 0.88), rgba(95, 68, 9, 0.88));
        padding: 4px 11px;
        border-radius: 20px;
        border: 1px solid rgba(255, 231, 139, 0.46);
        box-shadow: 0 0 14px rgba(214, 161, 0, 0.24);
    }
    .bonus-list { display: block; }
    .bonus-item:first-child {
        padding: 22px 18px;
        background:
            radial-gradient(circle at 12% 100%, rgba(255, 240, 171, 0.18), transparent 34%),
            linear-gradient(135deg, rgba(14, 10, 3, 0.92), rgba(125, 86, 7, 0.86) 46%, rgba(207, 156, 17, 0.74));
        border: 1px solid rgba(255, 231, 145, 0.48);
        border-radius: 16px;
        margin-bottom: 11px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow:
            0 15px 32px rgba(0, 0, 0, 0.32),
            inset 0 1px 0 rgba(255, 255, 255, 0.24);
    }
    .bonus-item:first-child::before {
        content: '💎';
        position: absolute;
        left: -12px;
        bottom: -20px;
        font-size: 70px;
        opacity: 0.18;
        transform: rotate(-15deg);
    }
    .bonus-item:first-child::after {
        content: '★ TOP REWARD';
        position: absolute;
        top: 9px;
        right: 12px;
        font-size: 9px;
        font-weight: 900;
        color: #fff7c2;
        letter-spacing: 1.2px;
        background: rgba(16, 12, 4, 0.58);
        padding: 4px 9px;
        border-radius: 20px;
        border: 1px solid rgba(255, 231, 145, 0.34);
    }
    .bonus-item:first-child p {
        font-size: 16px;
        font-weight: 900;
        color: #ffffff;
        margin: 6px 0 0;
        letter-spacing: 0.35px;
        text-shadow: 0 2px 0 rgba(0, 0, 0, 0.42), 0 0 20px rgba(255, 221, 95, 0.36);
    }
    .bonus-item:first-child .highlight-gold {
        color: #fff7c2;
        font-weight: 900;
    }
    .bonus-item:not(:first-child) {
        display: inline-block;
        padding: 8px 15px;
        background: linear-gradient(135deg, rgba(22, 16, 4, 0.88), rgba(101, 73, 10, 0.78));
        border: 1px solid rgba(255, 231, 145, 0.28);
        border-radius: 999px;
        margin: 0 7px 7px 0;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        text-align: center;
    }
    .bonus-item:not(:first-child) p {
        font-size: 11px;
        font-weight: 800;
        color: rgba(255, 247, 210, 0.95);
        letter-spacing: 0.25px;
        margin: 0;
    }
    .bonus-item:not(:first-child) .highlight-black {
        color: #fff7c2;
    }

    .cta-gold-section {
        padding: 7px 26px 27px;
        margin-top: 0;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    .cta-buttons-gold {
        display: flex;
        gap: 11px;
        justify-content: stretch;
    }
    .btn-gold {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 18px;
        border-radius: 14px;
        font-weight: 900;
        font-size: 13px;
        letter-spacing: 2px;
        text-decoration: none;
        transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
        text-align: center;
        cursor: pointer;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }
    .btn-gold::after {
        content: '';
        position: absolute;
        top: 0;
        left: -45%;
        width: 38%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
        transform: skewX(-16deg);
        transition: left 0.5s ease;
    }
    .btn-gold:hover::after { left: 120%; }
    .btn-login-gold {
        background: rgba(15, 11, 3, 0.18);
        color: #fff7c2;
        border: 2px solid rgba(255, 244, 189, 0.92);
        flex: 0 0 38%;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 18px rgba(255, 217, 90, 0.18);
    }
    .btn-login-gold:hover {
        background: rgba(255, 226, 120, 0.12);
        transform: translateY(-2px);
        box-shadow: 0 0 26px rgba(255, 217, 90, 0.32);
    }
    .btn-register-gold {
        flex: 1;
        background: linear-gradient(135deg, #fff1a8 0%, #d6a100 38%, #8a6208 100%);
        color: #110d04;
        border: 2px solid rgba(255, 244, 189, 0.5);
        box-shadow:
            0 0 28px rgba(255, 214, 91, 0.36),
            0 12px 24px rgba(0, 0, 0, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.42);
    }
    .btn-register-gold::before {
        content: '▶ ';
        color: #2a1c04;
    }
    .btn-register-gold:hover {
        transform: translateY(-2px);
        filter: brightness(1.08);
        box-shadow:
            0 0 38px rgba(255, 226, 122, 0.55),
            0 16px 28px rgba(0, 0, 0, 0.3);
    }

    .MENTOTO-bandar-card .ticket-footer {
        padding: 13px 26px;
        background: rgba(10, 7, 2, 0.62);
        border-top: 1px solid rgba(255, 237, 166, 0.38);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 9px;
        color: #fff7c2;
        letter-spacing: 2px;
        font-weight: 800;
        position: relative;
        z-index: 2;
    }
    .ticket-footer .code {
        font-family: 'Courier New', monospace;
        letter-spacing: 1.5px;
    }



    /* ===== EXTRA LUXURY ELEMENTS — decorative only, card scope ===== */
    .royal-card-corner,
    .luxury-sparkle,
    .royal-gold-particles {
        position: absolute;
        pointer-events: none;
        z-index: 3;
    }

    .royal-card-corner {
        width: 48px;
        height: 48px;
        opacity: 0.92;
        filter: drop-shadow(0 0 14px rgba(255, 222, 112, 0.42));
    }
    .royal-card-corner::before,
    .royal-card-corner::after {
        content: '';
        position: absolute;
        background: linear-gradient(90deg, rgba(255,247,194,.08), #fff0a6, rgba(180,126,9,.42));
        border-radius: 999px;
    }
    .royal-card-corner::before { width: 48px; height: 2px; }
    .royal-card-corner::after { width: 2px; height: 48px; }
    .royal-card-corner.corner-tl { top: 16px; left: 16px; }
    .royal-card-corner.corner-tr { top: 16px; right: 16px; transform: rotate(90deg); }
    .royal-card-corner.corner-bl { bottom: 16px; left: 16px; transform: rotate(-90deg); }
    .royal-card-corner.corner-br { bottom: 16px; right: 16px; transform: rotate(180deg); }

    .luxury-sparkle {
        width: 7px;
        height: 7px;
        background: #fff7c2;
        transform: rotate(45deg);
        box-shadow: 0 0 16px rgba(255, 235, 137, 0.9);
        animation: royalSparkle 2.8s ease-in-out infinite;
        opacity: .9;
    }
    .luxury-sparkle.s1 { top: 38px; right: 96px; animation-delay: .1s; }
    .luxury-sparkle.s2 { top: 210px; left: 35px; width: 5px; height: 5px; animation-delay: .9s; }
    .luxury-sparkle.s3 { bottom: 93px; right: 43px; width: 6px; height: 6px; animation-delay: 1.5s; }
    @keyframes royalSparkle {
        0%, 100% { opacity: .38; transform: rotate(45deg) scale(.72); }
        50% { opacity: 1; transform: rotate(45deg) scale(1.25); }
    }

    .royal-gold-particles {
        inset: 0;
        background-image:
            radial-gradient(circle, rgba(255,242,166,.52) 0 1px, transparent 1.8px),
            radial-gradient(circle, rgba(255,214,92,.38) 0 1px, transparent 1.8px);
        background-size: 76px 76px, 112px 112px;
        background-position: 18px 22px, 42px 58px;
        opacity: .24;
        z-index: 1;
    }

    .royal-status-row {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
        padding: 12px 26px 0;
        margin-bottom: -3px;
    }
    .royal-status-pill {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 31px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(12,8,2,.58), rgba(96,66,7,.62));
        border: 1px solid rgba(255, 231, 145, .34);
        color: #fff4bd;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.14),
            0 8px 16px rgba(0,0,0,.18);
        white-space: nowrap;
    }

    .bonus-list::after {
        content: '♛  PRIORITY ACCESS  •  MENTOTO  •  TRUSTED SYSTEM';
        display: block;
        margin-top: 10px;
        padding: 8px 10px;
        border-radius: 12px;
        color: #fff4bd;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: 1.2px;
        text-align: center;
        background: linear-gradient(135deg, rgba(16,11,3,.72), rgba(119,82,8,.54));
        border: 1px solid rgba(255, 231, 145, .28);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    }



    /* ===== MENTOTO SHURIKEN GOLD PARTICLES ===== */
    .royal-shuriken {
        position: absolute;
        width: 18px;
        height: 18px;
        left: var(--x);
        top: var(--y);
        z-index: 1;
        opacity: .48;
        pointer-events: none;
        filter: drop-shadow(0 0 8px rgba(255, 224, 126, .42));
        animation:
            royalShurikenFloat var(--dur) linear infinite,
            royalShurikenPulse 3.2s ease-in-out infinite;
        animation-delay: var(--delay), calc(var(--delay) * -1);
    }

    .royal-shuriken::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            conic-gradient(
                from 45deg,
                rgba(255, 246, 190, .98) 0 8%,
                rgba(159, 109, 10, .95) 8% 18%,
                transparent 18% 25%,
                rgba(255, 238, 145, .96) 25% 33%,
                rgba(117, 78, 5, .9) 33% 43%,
                transparent 43% 50%,
                rgba(255, 246, 190, .98) 50% 58%,
                rgba(159, 109, 10, .95) 58% 68%,
                transparent 68% 75%,
                rgba(255, 238, 145, .96) 75% 83%,
                rgba(117, 78, 5, .9) 83% 93%,
                transparent 93% 100%
            );
        clip-path: polygon(50% 0%, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0% 50%, 38% 36%);
        border-radius: 50%;
        box-shadow: inset 0 0 5px rgba(255,255,255,.28);
    }

    .royal-shuriken::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: #fff0a7;
        box-shadow: 0 0 7px rgba(255, 238, 142, .65);
    }

    .royal-shuriken.p1 { --x: 9%;  --y: 9%;  --dur: 9s;  --delay: -1s; }
    .royal-shuriken.p2 { --x: 83%; --y: 15%; --dur: 11s; --delay: -4s; width: 14px; height: 14px; opacity: .38; }
    .royal-shuriken.p3 { --x: 12%; --y: 40%; --dur: 10s; --delay: -6s; width: 13px; height: 13px; opacity: .36; }
    .royal-shuriken.p4 { --x: 88%; --y: 42%; --dur: 12s; --delay: -3s; }
    .royal-shuriken.p5 { --x: 17%; --y: 69%; --dur: 13s; --delay: -8s; width: 15px; height: 15px; opacity: .42; }
    .royal-shuriken.p6 { --x: 79%; --y: 78%; --dur: 9.5s; --delay: -2s; width: 12px; height: 12px; opacity: .34; }
    .royal-shuriken.p7 { --x: 48%; --y: 22%; --dur: 14s; --delay: -10s; width: 11px; height: 11px; opacity: .30; }
    .royal-shuriken.p8 { --x: 56%; --y: 88%; --dur: 10.5s; --delay: -5s; width: 13px; height: 13px; opacity: .35; }

    @keyframes royalShurikenFloat {
        0%   { transform: translate3d(0,0,0) rotate(0deg) scale(.86); }
        25%  { transform: translate3d(10px,-12px,0) rotate(210deg) scale(1); }
        50%  { transform: translate3d(-8px,9px,0) rotate(420deg) scale(.92); }
        75%  { transform: translate3d(12px,8px,0) rotate(630deg) scale(1.04); }
        100% { transform: translate3d(0,0,0) rotate(840deg) scale(.86); }
    }

    @keyframes royalShurikenPulse {
        0%, 100% { opacity: .26; }
        45% { opacity: .58; }
        70% { opacity: .42; }
    }

    @media (max-width: 480px) {
        .royal-shuriken { width: 14px; height: 14px; opacity: .38; }
        .royal-shuriken.p4, .royal-shuriken.p8 { display: none; }
    }

    @media (max-width: 480px) {
        .royal-status-row { padding-left: 20px; padding-right: 20px; gap: 5px; }
        .royal-status-pill { min-height: 28px; font-size: 8px; letter-spacing: .7px; }
        .royal-card-corner { width: 36px; height: 36px; }
        .royal-card-corner::before { width: 36px; }
        .royal-card-corner::after { height: 36px; }
        .bonus-list::after { font-size: 8px; letter-spacing: .8px; }
    }

    @media (max-width: 480px) {
        .MENTOTO-bandar-card { border-radius: 24px; }
        .MENTOTO-bandar-card::before { border-radius: 24px; }
        .hero-title { padding: 22px 20px 17px; }
        .hero-title h1 { font-size: 16px; }
        .info-container, .cta-gold-section { padding-left: 20px; padding-right: 20px; }
        .bonus-wrap { margin-left: 20px; margin-right: 20px; }
        .btn-gold { font-size: 12px; padding: 13px 14px; }
        .info-label { align-items: flex-start; }
        .info-number { font-size: 12px; text-align: right; }
    }

    /* ===== FULL SCREEN FLOATING SHURIKEN AMBIENCE ===== */
    .screen-shuriken-rain {
        position: fixed;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 25;
    }

    .screen-shuriken {
        position: absolute;
        top: var(--sy);
        left: var(--sx);
        width: var(--size);
        height: var(--size);
        opacity: var(--op);
        pointer-events: none;
        filter: drop-shadow(0 0 10px rgba(255, 220, 108, .38));
        will-change: transform, opacity;
        animation:
            screenShurikenFloatAmbient var(--float) ease-in-out infinite,
            screenShurikenPulse 3.2s ease-in-out infinite;
        animation-delay: var(--delay), calc(var(--delay) * -1);
    }

    .screen-shuriken::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            conic-gradient(
                from 45deg,
                rgba(255, 246, 190, .98) 0 8%,
                rgba(159, 109, 10, .95) 8% 18%,
                transparent 18% 25%,
                rgba(255, 238, 145, .96) 25% 33%,
                rgba(117, 78, 5, .9) 33% 43%,
                transparent 43% 50%,
                rgba(255, 246, 190, .98) 50% 58%,
                rgba(159, 109, 10, .95) 58% 68%,
                transparent 68% 75%,
                rgba(255, 238, 145, .96) 75% 83%,
                rgba(117, 78, 5, .9) 83% 93%,
                transparent 93% 100%
            );
        clip-path: polygon(50% 0%, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0% 50%, 38% 36%);
        border-radius: 50%;
        box-shadow: inset 0 0 5px rgba(255,255,255,.26);
    }

    .screen-shuriken::after {
        content: '';
        position: absolute;
        width: 24%;
        height: 24%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: #fff0a7;
        box-shadow: 0 0 7px rgba(255, 238, 142, .52);
    }

    .screen-shuriken.s1  { --sx: 5%;  --sy: 9%;  --driftX: 12px;  --driftY: -10px; --float: 7.8s;  --delay: -1s;  --size: 22px; --op: .22; }
    .screen-shuriken.s2  { --sx: 13%; --sy: 23%; --driftX: -16px; --driftY: 11px;  --float: 9.6s;  --delay: -6s;  --size: 30px; --op: .25; }
    .screen-shuriken.s3  { --sx: 22%; --sy: 56%; --driftX: 14px;  --driftY: -12px; --float: 8.4s;  --delay: -3s;  --size: 21px; --op: .20; }
    .screen-shuriken.s4  { --sx: 31%; --sy: 14%; --driftX: -12px; --driftY: 14px;  --float: 10.2s; --delay: -11s; --size: 25px; --op: .24; }
    .screen-shuriken.s5  { --sx: 43%; --sy: 68%; --driftX: 17px;  --driftY: -9px;  --float: 8.9s;  --delay: -8s;  --size: 32px; --op: .25; }
    .screen-shuriken.s6  { --sx: 56%; --sy: 28%; --driftX: -18px; --driftY: 12px;  --float: 9.5s;  --delay: -4s;  --size: 24px; --op: .23; }
    .screen-shuriken.s7  { --sx: 67%; --sy: 52%; --driftX: 13px;  --driftY: -13px; --float: 7.9s;  --delay: -10s; --size: 20px; --op: .18; }
    .screen-shuriken.s8  { --sx: 76%; --sy: 16%; --driftX: -15px; --driftY: 10px;  --float: 11.4s; --delay: -7s;  --size: 29px; --op: .25; }
    .screen-shuriken.s9  { --sx: 86%; --sy: 62%; --driftX: 11px;  --driftY: -8px;  --float: 8.1s;  --delay: -12s; --size: 26px; --op: .24; }
    .screen-shuriken.s10 { --sx: 94%; --sy: 34%; --driftX: -10px; --driftY: 12px;  --float: 9.9s;  --delay: -5s;  --size: 21px; --op: .18; }
    .screen-shuriken.s11 { --sx: 8%;  --sy: 76%; --driftX: 15px;  --driftY: -11px; --float: 10.8s; --delay: -9s;  --size: 23px; --op: .21; }
    .screen-shuriken.s12 { --sx: 18%; --sy: 40%; --driftX: -13px; --driftY: 10px;  --float: 8.7s;  --delay: -2s;  --size: 27px; --op: .23; }
    .screen-shuriken.s13 { --sx: 36%; --sy: 82%; --driftX: 18px;  --driftY: -14px; --float: 11.1s; --delay: -13s; --size: 22px; --op: .20; }
    .screen-shuriken.s14 { --sx: 49%; --sy: 12%; --driftX: -14px; --driftY: 9px;   --float: 9.1s;  --delay: -6.5s;--size: 28px; --op: .24; }
    .screen-shuriken.s15 { --sx: 63%; --sy: 74%; --driftX: 12px;  --driftY: -10px; --float: 10.4s; --delay: -7.5s;--size: 24px; --op: .22; }
    .screen-shuriken.s16 { --sx: 82%; --sy: 24%; --driftX: -16px; --driftY: 13px;  --float: 9.8s;  --delay: -11.5s;--size: 30px; --op: .24; }

    @keyframes screenShurikenFloatAmbient {
        0%   { transform: translate3d(0,0,0) rotate(0deg) scale(.88); }
        25%  { transform: translate3d(var(--driftX), calc(var(--driftY) * .7), 0) rotate(180deg) scale(1); }
        50%  { transform: translate3d(calc(var(--driftX) * -.7), var(--driftY), 0) rotate(420deg) scale(.94); }
        75%  { transform: translate3d(calc(var(--driftX) * .55), calc(var(--driftY) * -.65), 0) rotate(680deg) scale(1.06); }
        100% { transform: translate3d(0,0,0) rotate(900deg) scale(.88); }
    }

    @keyframes screenShurikenPulse {
        0%, 100% { opacity: .26; }
        45% { opacity: .58; }
        70% { opacity: .42; }
    }

    @media (max-width: 768px) {
        .screen-shuriken.s2, .screen-shuriken.s4, .screen-shuriken.s8, .screen-shuriken.s10, .screen-shuriken.s12, .screen-shuriken.s14, .screen-shuriken.s16 { display: none; }
        .screen-shuriken { filter: drop-shadow(0 0 8px rgba(255, 220, 108, .28)); }
    }
