:root {
    --primary: #ffffff;
    --primary-alt: #cccccc;
    --accent: #888888;
    --primary-glow: rgba(255,255,255,0.3);
    --transition-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: #000;
    font-family: 'Archivo', sans-serif;
    overflow-x: hidden;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}
#intro {
    position: fixed; inset: 0;
    background: #000;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    gap: 0; z-index: 9999; cursor: pointer;
    transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
#intro.exit { opacity: 0; transform: scale(1.06); pointer-events: none; }
.intro-logo {
    width: 500px; height: auto;
    opacity: 0; transform: translateY(20px) scale(0.92);
    animation: introLogoIn 1s var(--transition-bounce) 0.2s forwards;
    filter: drop-shadow(0 0 40px rgba(255,255,255,0.4));
}
@keyframes introLogoIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.intro-enter {
    margin-top: 48px; font-size: 11px; letter-spacing: 5px;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
    font-weight: 500; opacity: 0;
    animation: introCTAIn 0.8s ease 1.1s forwards;
}
@keyframes introCTAIn { to { opacity: 1; } }
.intro-enter span { display: inline-block; animation: blink 2s ease-in-out 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 0.45; } 50% { opacity: 1; color: #fff; } }
.effects { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.star {
    position: absolute; width: 2px; height: 2px;
    background: rgba(255,255,255,0.6); border-radius: 50%;
    box-shadow: 0 0 4px rgba(255,255,255,0.8);
    animation: twinkle 4s infinite ease-in-out;
}
@keyframes twinkle { 0%,100% { opacity: 0.2; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }
.chain {
    position: absolute; top: -10%;
    font-size: 28px; color: rgba(255,255,255,0.15);
    animation: floatChain linear infinite;
    filter: blur(0.5px);
}
@keyframes floatChain { from { transform: translateY(0) rotate(0deg); } to { transform: translateY(120vh) rotate(360deg); } }
.page { min-height: 100vh; width: 100%; display: block; position: relative; opacity: 1; }
.page-background {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    z-index: -1;
    transition: transform 0.8s var(--transition-smooth), filter 0.8s ease, opacity 0.8s ease;
}
#page-home.scrolled .page-background {
    transform: scale(0.7) rotateX(40deg) rotateY(-10deg);
    filter: brightness(0.3) blur(10px) grayscale(0.5);
    opacity: 0.3;
}
.page-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -1;
    opacity: 0; filter: blur(14px) brightness(0.5); transform: scale(1.08);
    transition: opacity 1.4s ease, filter 1.4s ease, transform 1.4s ease;
}
.page-video.playing { opacity: 1; filter: blur(0) brightness(1); transform: scale(1); }
.page-video.leaving { opacity: 0; filter: blur(20px) brightness(0.3); transform: scale(0.94); }
.page-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}
.nav-menu { position: fixed; top: 30px; right: 40px; display: flex; gap: 35px; z-index: 1000; }
.nav-item {
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 10px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; position: relative;
    transition: color 0.3s ease; cursor: pointer;
}
.nav-item::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #fff, #aaa);
    transition: width 0.4s var(--transition-bounce);
}
.nav-item:hover, .nav-item.active { color: #fff; }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }
.logo-container {
    display: flex; justify-content: center;
    padding-top: 20px; margin-bottom: auto;
    position: relative; z-index: 2;
}
.logo-container img {
    width: 340px; height: auto;
    filter: drop-shadow(0 10px 30px rgba(255,255,255,0.25));
    transition: transform 0.5s var(--transition-bounce), filter 0.5s ease;
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.logo-container img:hover {
    transform: scale(1.1) translateY(-8px) rotate(2deg);
    filter: drop-shadow(0 20px 50px rgba(255,255,255,0.5)) brightness(1.15);
    animation: none;
}

.rectangles-container {
    display: flex; justify-content: center; align-items: center;
    gap: 12px; margin-top: 20px; height: 380px;
    position: relative; z-index: 2; padding: 0 20px;
}
.rectangle {
    overflow: hidden; width: 130px; height: 340px;
    transition: all 0.5s var(--transition-bounce);
    border-radius: 16px; cursor: pointer;
    display: flex; flex-direction: column;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    background: #111; flex-shrink: 0;
}
.rectangle:hover {
    width: 260px; transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255,255,255,0.2), 0 20px 60px rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.25); z-index: 10;
}
.banner {
    position: absolute; top: 0; left: 0; width: 100%; height: 55%;
    background-size: cover; background-position: center;
    z-index: 1; transition: height 0.5s var(--transition-bounce);
}
.banner::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: linear-gradient(to bottom, transparent, #111);
}
.avatar-wrap {
    position: absolute; left: 50%; transform: translateX(-50%);
    top: calc(55% - 40px); z-index: 4;
    width: 80px; height: 80px;
    transition: transform 0.4s var(--transition-bounce);
}
.avatar-circle {
    width: 100%; height: 100%; border-radius: 50%;
    background-size: cover; background-position: center;
    border: 3px solid rgba(255,255,255,0.12);
    box-shadow: 0 6px 20px rgba(0,0,0,0.8);
    position: relative;
}
.avatar-deco {
    position: absolute; inset: -12px;
    width: calc(100% + 24px); height: calc(100% + 24px);
    pointer-events: none; z-index: 5;
    display: none;
}
.avatar-deco.loaded { display: block; }
.rectangle:hover .avatar-wrap { transform: translateX(-50%) scale(1.06); }
.rectangle:hover .avatar-circle {
    box-shadow: 0 10px 30px rgba(0,0,0,0.9), 0 0 0 3px rgba(255,255,255,0.35);
}
.status-dot {
    position: absolute; width: 13px; height: 13px;
    border-radius: 50%; border: 2px solid #111;
    bottom: 0; right: 0; background: #747f8d;
}
.status-dot.online { background: #43b581; box-shadow: 0 0 6px #43b581; }
.status-dot.idle { background: #faa61a; box-shadow: 0 0 6px #faa61a; }
.status-dot.dnd { background: #f04747; box-shadow: 0 0 6px #f04747; }
.rect-info {
    position: absolute; left: 0; width: 100%;
    top: calc(55% + 46px); bottom: 0;
    padding: 4px 10px 10px; z-index: 3;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none; overflow: hidden; text-align: center;
}
.rectangle:hover .rect-info { opacity: 1; transform: translateY(0); }
.rect-username { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.rect-tag { font-size: 10px; color: rgba(255,255,255,0.5); margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rect-bio { font-size: 10px; color: rgba(255,255,255,0.65); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rect-status-text { font-size: 10px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 5px; justify-content: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rect-status-text .dot-small { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-online { background: #43b581; } .dot-idle { background: #faa61a; } .dot-dnd { background: #f04747; } .dot-offline { background: #747f8d; }
.rect-spotify { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.07); display: none; align-items: center; gap: 8px; }
.rect-spotify.active { display: flex; }
.rect-spotify-art { width: 28px; height: 28px; border-radius: 4px; flex-shrink: 0; }
.rect-spotify-song { font-size: 10px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rect-spotify-artist { font-size: 9px; color: rgba(255,255,255,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.name-text-bottom {
    position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px; white-space: nowrap;
    transition: color 0.3s ease;
}
.rectangle:hover .name-text-bottom { color: rgba(255,255,255,0.85); }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes blinkCursor { 0%,100% { opacity: 0; } 50% { opacity: 1; } }
@keyframes serverScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tdot { width: 12px; height: 12px; border-radius: 50%; }
.tdot.red { background: #ff5f57; } .tdot.yellow { background: #ffbd2e; } .tdot.green { background: #28ca41; }
.t-blu { color: #ccc; } .t-wht { color: #fff; } .t-dim { color: rgba(255,255,255,0.35); }
.t-blue { color: #aaa; } .t-grn { color: #ddd; } .t-ylw { color: #eee; } .t-org { color: #ccc; }
.t-cyn { color: #bbb; }

.exclusive-style {
    background-image: url('https://file.garden/aWEjqj03KS-m2Cfz/xolums/xolums.gif');
    background-size: auto 70%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: #000;
    position: relative;
}
.exclusive-style .page-video { display: none; }
.exclusive-style .page-background { display: none; }
.exclusive-style .page-overlay {
    background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(0,0,0,0.75) 100%);
}
.exclusive-style::before {
    content: '';
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 50% 30% at 15% 60%, rgba(255,255,255,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 25% at 85% 40%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.exclusive-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 800;
    margin: 60px 0 50px; text-align: center;
    background: linear-gradient(45deg, #ffffff, #000000, #ffffff, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s linear infinite;
    letter-spacing: 1px; position: relative; z-index: 2;
}
.exclusive-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 900;
    margin-bottom: 8px; text-align: center;
    background: linear-gradient(135deg, #fff 0%, #ddd 50%, #aaa 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite;
    letter-spacing: 2px; position: relative; z-index: 2;
}
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(3, 160px);
    gap: 40px 32px;
    position: relative; z-index: 2;
    justify-content: center;
}
.excl-slot {
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; cursor: pointer;
}
.excl-avatar-ring {
    width: 110px; height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
    transition: box-shadow 0.4s ease, transform 0.4s var(--transition-bounce);
    position: relative;
}
.excl-slot:hover .excl-avatar-ring {
    box-shadow: 0 0 30px rgba(255,255,255,0.4), 0 0 60px rgba(255,255,255,0.2);
    transform: scale(1.06);
}
.excl-avatar-inner {
    width: 100%; height: 100%; border-radius: 50%;
    background-size: cover; background-position: center;
    background-color: #1a1a1a;
    border: 2px solid #000;
    position: relative; overflow: visible;
}
.excl-deco {
    position: absolute;
    top: -18px; left: -18px;
    width: calc(100% + 36px); height: calc(100% + 36px);
    pointer-events: none; z-index: 5;
    display: none;
}
.excl-deco.loaded { display: block; }
.excl-status-badge {
    position: absolute; bottom: 4px; right: 4px;
    width: 18px; height: 18px; border-radius: 50%;
    border: 3px solid #000;
    background: #747f8d; z-index: 6;
    transition: background 0.3s ease;
}
.excl-label {
    margin-top: 12px;
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 130px; text-align: center;
    transition: color 0.3s ease;
}
.excl-slot:hover .excl-label { color: #fff; }
.excl-popup {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%; transform: translateX(-50%) translateY(10px) scale(0.95);
    width: 240px;
    background: #1e1f22;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s var(--transition-bounce);
    z-index: 100;
}
.excl-slot:hover .excl-popup {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: all;
}
.excl-popup-banner {
    width: 100%; height: 72px;
    background-size: cover; background-position: center;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
}
.excl-popup-body {
    padding: 0 12px 14px;
    position: relative;
}
.excl-popup-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-top: -28px;
    margin-bottom: 6px;
}
.excl-popup-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background-size: cover; background-position: center;
    background-color: #2b2d31;
    border: 4px solid #1e1f22;
    position: relative;
}
.excl-popup-deco {
    position: absolute;
    top: -10px; left: -10px;
    width: calc(100% + 20px); height: calc(100% + 20px);
    pointer-events: none; z-index: 5;
    display: none;
}
.excl-popup-deco.loaded { display: block; }
.excl-popup-status-dot {
    position: absolute; bottom: 3px; right: 3px;
    width: 13px; height: 13px; border-radius: 50%;
    border: 2.5px solid #1e1f22;
    background: #747f8d; z-index: 6;
}
.excl-popup-name {
    font-size: 16px; font-weight: 800; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 2px; letter-spacing: 0.2px;
}
.excl-popup-tag {
    font-size: 12px; color: rgba(255,255,255,0.45);
    margin-bottom: 8px; white-space: nowrap;
}
.excl-popup-status-row {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: rgba(255,255,255,0.5);
}
.excl-popup-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: #747f8d; }
.excl-popup-activity {
    margin-top: 8px; padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 10px; color: rgba(255,255,255,0.4);
    display: none;
}
.excl-popup-activity.active { display: block; }
.excl-popup-activity-title { font-weight: 700; color: rgba(255,255,255,0.65); margin-bottom: 2px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.excl-popup-activity-name { color: rgba(255,255,255,0.55); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.excl-popup::after {
    content: '';
    position: absolute;
    bottom: -7px; left: 50%; transform: translateX(-50%);
    width: 14px; height: 7px;
    background: #1e1f22;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#page-transition { position: fixed; inset: 0; z-index: 8888; pointer-events: none; background: #000; opacity: 0; transition: opacity 0.45s ease; }
#page-transition.fade-in { opacity: 1; pointer-events: all; }
#page-home .page-background { background-size: cover !important; background-position: center !important; }
#page-home .logo-container img { opacity: 0; transform: translateY(-36px) scale(0.85); transition: opacity 0.8s ease, transform 0.8s ease; }
#page-home.in-view .logo-container img { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.15s; }
.exclusive-style .exclusive-title { opacity: 0; transform: translateY(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.exclusive-style.in-view .exclusive-title { opacity: 1; transform: translateY(0); }
.exclusive-style .exclusive-sub { opacity: 0; transition: opacity 0.7s ease 0.2s; }
.exclusive-style.in-view .exclusive-sub { opacity: 1; }
.exclusive-style .excl-slot { opacity: 0; transform: translateY(24px) scale(0.9); transition: opacity 0.5s ease, transform 0.5s var(--transition-bounce); }
.exclusive-style.in-view .excl-slot:nth-child(1) { opacity:1; transform:translateY(0) scale(1); transition-delay:.10s; }
.exclusive-style.in-view .excl-slot:nth-child(2) { opacity:1; transform:translateY(0) scale(1); transition-delay:.18s; }
.exclusive-style.in-view .excl-slot:nth-child(3) { opacity:1; transform:translateY(0) scale(1); transition-delay:.26s; }
.exclusive-style.in-view .excl-slot:nth-child(4) { opacity:1; transform:translateY(0) scale(1); transition-delay:.34s; }
.exclusive-style.in-view .excl-slot:nth-child(5) { opacity:1; transform:translateY(0) scale(1); transition-delay:.42s; }
.exclusive-style.in-view .excl-slot:nth-child(6) { opacity:1; transform:translateY(0) scale(1); transition-delay:.50s; }
@media(max-width:768px) {
    .nav-menu { top: 16px; right: 16px; gap: 16px; }
    .nav-item { font-size: 10px; letter-spacing: 1.5px; }
    .logo-container img { width: 180px; }
    .rectangles-container { flex-wrap: wrap; height: auto; gap: 14px; padding: 20px; align-items: center; justify-content: center; }
    .rectangle { width: 130px !important; height: 300px !important; }
    .rectangle:hover { width: 130px !important; transform: translateY(-6px); }
    .intro-logo { width: 160px; }
    .exclusive-grid { grid-template-columns: repeat(2, 140px); gap: 32px 20px; }
    .excl-popup { display: none; }
}
@media(max-width:480px) {
    .nav-menu { top: 12px; right: 12px; gap: 12px; }
    .nav-item { font-size: 9px; letter-spacing: 1px; }
    .logo-container img { width: 150px; }
    .rectangle { width: 110px !important; height: 260px !important; }
    .intro-logo { width: 130px; }
    .exclusive-grid { grid-template-columns: repeat(2, 120px); gap: 28px 16px; }
}

@media (hover: none) and (pointer: coarse) {

    .rectangles-container {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        padding: 20px 24px 60px !important;
        gap: 12px !important;
        height: auto !important;
        min-height: 400px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        scrollbar-width: none !important;
    }
    .rectangles-container::-webkit-scrollbar { display: none !important; }

    .rectangle {
        scroll-snap-align: center !important;
        flex-shrink: 0 !important;
        width: 130px !important;
        height: 320px !important;
    }

    .rectangle:hover {
        width: 130px !important;
        transform: none !important;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
        border-color: rgba(255,255,255,0.06) !important;
        z-index: auto !important;
    }
    .rectangle:hover .rect-info    { opacity: 0 !important; transform: translateY(6px) !important; }
    .rectangle:hover .avatar-wrap  { transform: translateX(-50%) !important; }
    .rectangle:hover .avatar-circle { box-shadow: 0 6px 20px rgba(0,0,0,0.8) !important; }
    .rectangle:hover .name-text-bottom { color: rgba(255,255,255,0.5) !important; }

    .rectangle.mobile-expanded {
        width: 230px !important;
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 60px rgba(255,255,255,0.2), 0 20px 60px rgba(0,0,0,0.7) !important;
        border-color: rgba(255,255,255,0.25) !important;
        z-index: 10 !important;
    }
    .rectangle.mobile-expanded .rect-info    { opacity: 1 !important; transform: translateY(0) !important; }
    .rectangle.mobile-expanded .avatar-wrap  { transform: translateX(-50%) scale(1.06) !important; }
    .rectangle.mobile-expanded .avatar-circle { box-shadow: 0 10px 30px rgba(0,0,0,0.9), 0 0 0 3px rgba(255,255,255,0.35) !important; }
    .rectangle.mobile-expanded .name-text-bottom { color: rgba(255,255,255,0.85) !important; }

    .rectangle::after {
        content: '';
        position: absolute; bottom: 10px; left: 50%;
        transform: translateX(-50%);
        font-size: 7.5px; letter-spacing: 1.5px; text-transform: uppercase;
        color: rgba(255,255,255,0.22); pointer-events: none; z-index: 5;
        font-family: 'Archivo', sans-serif; white-space: nowrap;
        transition: opacity 0.3s ease;
    }
    .rectangle.mobile-expanded::after { opacity: 0 !important; }

    .excl-popup { display: block !important; }

    .excl-slot:hover .excl-popup       { opacity: 0 !important; pointer-events: none !important; transform: translateX(-50%) translateY(10px) scale(0.95) !important; }
    .excl-slot:hover .excl-avatar-ring { box-shadow: none !important; transform: none !important; }
    .excl-slot:hover .excl-label       { color: rgba(255,255,255,0.55) !important; }

    .excl-slot.mobile-expanded .excl-popup       { opacity: 1 !important; pointer-events: all !important; transform: translateX(-50%) translateY(0) scale(1) !important; }
    .excl-slot.mobile-expanded .excl-avatar-ring { box-shadow: 0 0 30px rgba(255,255,255,0.4), 0 0 60px rgba(255,255,255,0.2) !important; transform: scale(1.06) !important; }
    .excl-slot.mobile-expanded .excl-label       { color: #fff !important; }

    .exclusive-grid { gap: 70px 20px !important; }

    .nav-menu { gap: 8px !important; flex-wrap: wrap !important; justify-content: flex-end !important; max-width: 75vw !important; }
    .nav-item { font-size: 8.5px !important; letter-spacing: 1px !important; }

}

@keyframes mscrollAnim {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}