:root {
    --bg: #151415;
    --topbar: #141316;
    --sidebar: #1d1c1f;
    --panel: #1a191c;
    --panel-2: #232226;
    --text: #ededed;
    --muted: #a9a9b2;
    --border: rgba(255, 255, 255, 0.08);
    --border-2: rgba(255, 255, 255, 0.12);
    --shadow: 0 0 0 rgba(0, 0, 0, 0);
    --shadow-soft: 0 0 0 rgba(0, 0, 0, 0);
    --radius: 18px;
    --purple: #ef4444;
    --purple-2: #b91c1c;
    --purple-glow: rgba(239, 68, 68, 0.25);
    --blue-glow: rgba(239, 68, 68, 0.18);
    --sidebar-w: 253px;
    --content-offset: 286px;
    --topbar-h: 66px;
    --container-max: 1240px;
}
* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-size: 15px;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        "Apple Color Emoji",
        "Segoe UI Emoji";
    color: var(--text);
    background: radial-gradient(1100px 600px at 55% 10%, rgb(239 68 68 / 0.12) 0%, #fff0 55%),
        radial-gradient(1200px 700px at 90% 30%, rgb(239 68 68 / 0.1) 0%, #fff0 60%),
        linear-gradient(180deg, #101012 0%, var(--bg) 40%, #101012 100%);
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    color: inherit;
}
.hidden {
    display: none !important;
}
.glass {
    background: rgb(26 25 28 / 0.78);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border: 1px solid rgb(255 255 255 / 0.08);
    box-shadow: var(--shadow);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .glass {
        background: rgb(26 25 28 / 0.92);
    }
}
.glass--topbar {
    background: rgb(20 19 22 / 0.72);
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
}
.glass--sidebar {
    background: rgb(29 28 31 / 0.86);
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-radius: 0;
    box-shadow: none;
}
.glass--panel {
    background: rgb(26 25 28 / 0.72);
    box-shadow: var(--shadow-soft);
}
.glass--pill {
    background: rgb(26 25 28 / 0.58);
    box-shadow: none;
}
.glass--modal {
    background: rgb(26 25 28 / 0.86);
    box-shadow: none;
}
.app-shell {
    min-height: 100%;
}
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-h);
    z-index: 50;
    display: grid;
    grid-template-columns: var(--content-offset) 1fr;
    align-items: center;
}
.topbar-left {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 22px;
    gap: 12px;
}
.hamburger {
    display: none;
}
.hamburger--right {
    display: none;
}
.brand {
    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
}
.brand-logo {
    height: 66px;
    width: auto;
    display: block;
}
.beta-pill {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgb(239 68 68 / 0.18);
    border: 1px solid rgb(239 68 68 / 0.35);
    color: #fee2e2;
    transform: translateY(6px);
}
.topbar-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 22px;
    gap: 18px;
}
.search-pill {
    height: 38px;
    width: 360px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgb(255 255 255 / 0.08);
}
.search-pill input {
    width: 100%;
    border: none;
    outline: none;
    background: #fff0;
    color: var(--text);
    font-size: 14px;
}
.search-pill input::placeholder {
    color: rgb(169 169 178 / 0.55);
}
.search-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}
.top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.icon-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.35);
    border-radius: 12px;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.icon-btn:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.12);
    box-shadow: none;
}
.icon-btn svg {
    width: 18px;
    height: 18px;
    opacity: 0.85;
}
.notif-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.notif-btn {
    position: relative;
    overflow: visible;
}
.notif-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--purple);
    box-shadow: 0 0 0 3px rgb(20 19 22 / 0.85);
}
.notif-panel {
    position: absolute;
    right: -100px;
    top: calc(100% + 22px);
    width: 320px;
    max-width: min(92vw, 360px);
    border-radius: 16px;
    padding: 12px;
    z-index: 80;
    background: #1d1c1f;
}
.notif-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.notif-panel-title {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
    opacity: 0.95;
}
.notif-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.notif-mini-btn {
    height: 30px;
    padding: 0 10px;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.55);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease;
}
.notif-mini-btn:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.16);
}
.notif-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow: auto;
    padding-right: 2px;
}
.notif-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.35);
}
.notif-item.unread {
    border-color: rgb(239 68 68 / 0.22);
}
.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--purple);
    margin-top: 6px;
    flex: 0 0 auto;
}
.notif-item-title {
    font-weight: 900;
    font-size: 12px;
}
.notif-item-meta {
    color: rgb(169 169 178 / 0.78);
    font-size: 12px;
    margin-top: 2px;
}
.notif-empty {
    color: rgb(169 169 178 / 0.78);
    font-size: 12px;
    padding: 10px;
}
.snackbar {
    position: fixed;
    right: 16px;
    top: 86px;
    z-index: 120;
    width: 340px;
    max-width: calc(100vw - 32px);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.78);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.snackbar-title {
    font-weight: 900;
    font-size: 13px;
}
.snackbar-desc {
    color: rgb(169 169 178 / 0.82);
    font-size: 12px;
    margin-top: 2px;
}
.snackbar-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}
.login-pill {
    height: 36px;
    padding: 0 18px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.02em;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(180deg, var(--purple) 0%, var(--purple-2) 100%);
    box-shadow: 0 10px 26px rgb(239 68 68 / 0.2);
    transition:
        transform 0.15s ease,
        filter 0.15s ease,
        box-shadow 0.15s ease;
}
.login-pill:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 14px 34px rgb(239 68 68 / 0.28);
}
.user-pill {
    height: 40px;
    padding: 0 12px 0 10px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.55);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.user-pill img {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 0.1);
}
.user-pill span {
    font-weight: 700;
    font-size: 13px;
    color: rgb(237 237 237 / 0.92);
}
.topbar-sep {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: rgb(255 255 255 / 0.06);
}
.sidebar {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    z-index: 40;
    transform: translateX(0);
    transition: transform 0.2s ease;
    border-right: 1px solid rgb(255 255 255 / 0.06);
    padding: 14px 14px 18px;
}
.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}
.sidebar-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.side-action {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.32);
    box-shadow: none;
    height: 54px;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.side-action--big {
    grid-column: 1 / -1;
    height: 64px;
    padding: 10px 12px;
    background: linear-gradient(180deg, rgb(239 68 68 / 0.18), rgb(26 25 28 / 0.22));
}
.side-action:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.16);
    box-shadow: none;
}
.side-action-text {
    line-height: 1.05;
}
.side-action-kicker {
    font-size: 12px;
    font-weight: 700;
    color: rgb(237 237 237 / 0.76);
}
.side-action-title {
    font-size: 14px;
    font-weight: 900;
}
.side-action-img {
    height: 44px;
    width: auto;
    opacity: 0.95;
    filter: none;
}
.nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 6px;
}
.nav-item {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.35);
    color: rgb(237 237 237 / 0.78);
    cursor: pointer;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}
.nav-item:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.12);
    background: rgb(26 25 28 / 0.44);
    box-shadow: none;
}
.nav-item.active {
    background: rgb(239 68 68 / 0.22);
    border-color: rgb(239 68 68 / 0.55);
    box-shadow: 0 18px 38px rgb(239 68 68 / 0.12);
    color: rgb(237 237 237 / 0.92);
}
.nav-ic {
    width: 20px;
    display: grid;
    place-items: center;
    opacity: 0.85;
}
.nav-ic svg {
    width: 18px;
    height: 18px;
}
.nav-label {
    font-weight: 700;
    font-size: 14px;
}
.nav-item--group {
    justify-content: space-between;
}
.nav-item--group .nav-label {
    flex: 1;
}
.nav-caret svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}
.nav-sub {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 2px;
    padding-left: 26px;
}
.nav-item--group[aria-expanded="true"] + .nav-sub {
    display: flex;
}
.nav-subitem {
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    color: rgb(237 237 237 / 0.7);
    border: 1px solid rgb(255 255 255 / 0.05);
    background: rgb(26 25 28 / 0.28);
    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        transform 0.15s ease;
}
.nav-subitem:hover {
    border-color: rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.38);
    transform: translateY(-1px);
}
.nav-subitem.active {
    border-color: rgb(239 68 68 / 0.45);
    background: rgb(239 68 68 / 0.14);
    color: rgb(237 237 237 / 0.92);
}
.nav-subdot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgb(239 68 68 / 0.65);
    box-shadow: 0 0 0 4px rgb(239 68 68 / 0.12);
}
.nav-ext {
    width: 14px;
    height: 14px;
    opacity: 0.65;
    margin-left: auto;
}
.content {
    margin-left: var(--content-offset);
    padding-top: calc(var(--topbar-h) + 22px);
    padding-bottom: 60px;
    padding-right: 22px;
    padding-left: 0;
    min-height: 100vh;
    min-height: 100dvh;
}
.page {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
}
body.sidebar-collapsed .sidebar {
    transform: translateX(-110%);
}
body.sidebar-collapsed .content {
    margin-left: 0;
    padding-left: 22px;
    padding-right: 22px;
}
body.sidebar-collapsed .topbar {
    grid-template-columns: auto 1fr;
}
.page-header {
    padding: 8px 0 0;
}
.h1 {
    font-size: 34px;
    font-weight: 900;
    margin: 10px 0 6px;
}
.hsub {
    margin: 0 0 18px;
    color: rgb(169 169 178 / 0.75);
    font-size: 14px;
}
.hr {
    height: 1px;
    background: rgb(255 255 255 / 0.06);
    margin: 22px 0 20px;
}
.section {
    margin-top: 14px;
}
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 6px 0 12px;
}
.section-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.section-ic {
    width: 18px;
    height: 18px;
    color: var(--purple);
    filter: drop-shadow(0 6px 14px rgb(239 68 68 / 0.28));
}
.section-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.01em;
}
.pill-count {
    font-size: 12px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgb(26 25 28 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.1);
    color: rgb(237 237 237 / 0.85);
}
.section-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.viewall-btn {
    height: 30px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.45);
    color: rgb(237 237 237 / 0.75);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
}
.nav-arrows {
    display: flex;
    gap: 8px;
}
.arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.45);
    display: grid;
    place-items: center;
    cursor: pointer;
}
.arrow-btn svg {
    width: 16px;
    height: 16px;
    opacity: 0.75;
}
.row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 295px;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    justify-content: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.row::-webkit-scrollbar {
    display: none;
}
.card-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
    box-shadow: none;
    height: 196px;
    background: rgb(26 25 28 / 0.4);
    cursor: pointer;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.card-hero:hover {
    transform: translateY(-2px);
    border-color: rgb(255 255 255 / 0.14);
    box-shadow: none;
}
.card-hero .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}
.card-hero:hover .bg {
    filter: blur(8px) brightness(0.78) saturate(1.08);
    transform: scale(1.08);
}
.card-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 0.04) 0%, rgb(0 0 0 / 0.55) 100%);
}
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 18px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: rgb(237 237 237 / 0.9);
}
.badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow: 0 0 0 4px rgb(239 68 68 / 0.12);
}
.badge.hot .dot {
    background: #f59f00;
    box-shadow: 0 0 0 4px rgb(245 159 0 / 0.14);
}
.badge.new .dot {
    background: #ef4444;
}
.card-hero .label {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-weight: 900;
    font-size: 16px;
    text-shadow: 0 10px 22px rgb(0 0 0 / 0.65);
}
.card-hero .hero-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    max-width: 72%;
    height: auto;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 10px 22px rgb(0 0 0 / 0.55));
    opacity: 1;
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
}
.card-hero:hover .hero-logo,
.card-hero:focus-visible .hero-logo {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.98);
}
.card-hero .hero-claim {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%) scale(0.98);
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgb(239 68 68 / 0.18), rgb(0 0 0 / 0.55));
    border: 1px solid rgb(239 68 68 / 0.35);
    color: rgb(255 255 255 / 0.94);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 18px 40px rgb(0 0 0 / 0.35);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
}
.card-hero:hover .hero-claim,
.card-hero:focus-visible .hero-claim {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.media-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.4);
    box-shadow: none;
    height: 222px;
}
.media-card--tiktok {
    height: 242px;
}
.media-card .thumb {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(239 68 68 / 0.18), rgb(239 68 68 / 0.12));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(105%);
    transition:
        filter 0.2s ease,
        transform 0.2s ease;
}
.media-card:hover .thumb {
    filter: blur(7px) brightness(0.72) saturate(105%);
    transform: scale(1.06);
}
.media-card .thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
}
.media-card .play {
    position: absolute;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.12);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
}
.media-card:hover .play {
    opacity: 1;
    transform: translateX(-50%) scale(1.02);
}
.media-card .play svg {
    width: 18px;
    height: 18px;
}
.media-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
    pointer-events: none;
}
.media-card:hover .media-hover {
    opacity: 1;
    transform: translateY(0);
}
.media-play {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.55);
    border: 1px solid rgb(255 255 255 / 0.14);
    display: grid;
    place-items: center;
}
.media-play svg {
    width: 22px;
    height: 22px;
}
.media-platform {
    width: 82px;
    height: auto;
    opacity: 0.98;
    filter: drop-shadow(0 10px 22px rgb(0 0 0 / 0.55));
}
.media-card .meta {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
}
.media-card:hover .meta,
.media-card:focus-visible .meta {
    opacity: 0;
    transform: translateY(8px);
}
.media-title {
    font-weight: 900;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
}
.media-row {
    display: flex;
    gap: 14px;
    color: rgb(169 169 178 / 0.85);
    font-size: 12px;
    font-weight: 700;
    align-items: center;
}
.media-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.media-chip svg {
    width: 14px;
    height: 14px;
    opacity: 0.9;
}
.social-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}
.social-tile {
    height: 95px;
    border-radius: 16px;
    border: 1px solid rgb(255 255 255 / 0.08);
    box-shadow: none;
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: 0.02em;
    transition:
        transform 0.15s ease,
        filter 0.15s ease,
        box-shadow 0.15s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.social-tile:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: none;
}
.social-tile.twitch {
    background-image: url(../social-twitch-DV8JToNu.png?v=20260227c);
}
.social-tile.youtube {
    background-image: url(../social-youtube-dw_7RbjL.png?v=20260227c);
}
.social-tile.instagram {
    background-image: url(../social-instagram-DdT6xB99.png?v=20260227c);
}
.social-tile.discord {
    background-image: url(../social-discord-DvMVKVHd.png?v=20260227c);
}
.social-tile.telegram {
    background-image: url(../social-telegram-cSDPk8ik.png?v=20260227c);
}
.social-tile.tiktok {
    background-image: url(../social-tiktok-KrE1XSnu.png?v=20260227c);
}
.top-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-socials .social-tile {
    height: 34px;
    width: 70px;
    border-radius: 14px;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
}
.top-socials .social-tile:hover {
    transform: translateY(-1px);
}
@media (max-width: 1200px) {
    .top-socials {
        gap: 8px;
    }
    .top-socials .social-tile {
        width: 70px;
    }
}
@media (max-width: 980px) {
    .top-socials {
        display: none;
    }
}
.top-socials .social-tile {
    position: relative;
    overflow: hidden;
}
.top-socials .social-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.08);
}
.top-socials .top-social-ico {
    width: 18px;
    height: 18px;
    color: rgb(255 255 255 / 0.92);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.35));
    transition:
        transform 0.12s ease,
        opacity 0.12s ease;
}
.top-socials .social-tile:hover .top-social-ico {
    transform: scale(1.06);
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.offer-card {
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.32);
    box-shadow: none;
    overflow: hidden;
    padding: 0;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
    cursor: default;
    position: relative;
    perspective: 1200px;
}
.offer-card:hover {
    transform: translateY(-2px);
    border-color: rgb(255 255 255 / 0.14);
    box-shadow: none;
}
.offer-flip {
    position: relative;
    width: 100%;
    min-height: 430px;
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.offer-card.is-flipped .offer-flip {
    transform: rotateY(180deg);
}
.offer-face {
    position: absolute;
    inset: 0;
    padding: 14px;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
}
.offer-back {
    transform: rotateY(180deg);
    background: rgb(16 16 18 / 0.25);
}
.offer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 0.14);
    background: rgb(0 0 0 / 0.25);
    color: rgb(237 237 237 / 0.92);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
}
.offer-close svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}
.offer-back-head {
    padding-top: 22px;
}
.offer-back-title {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.01em;
}
.offer-back-sub {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 700;
    color: rgb(169 169 178 / 0.7);
}
.offer-back-body {
    margin-top: 14px;
    flex: 1;
    overflow: auto;
    padding-right: 6px;
}
.offer-info {
    display: grid;
    gap: 10px;
}
.offer-kv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.2);
    font-size: 12px;
    font-weight: 800;
    color: rgb(169 169 178 / 0.9);
}
.offer-kv strong {
    color: rgb(237 237 237 / 0.94);
    font-size: 13px;
    font-weight: 900;
}
.offer-bullets {
    margin: 14px 0 0 0;
    padding-left: 18px;
    color: rgb(237 237 237 / 0.86);
    font-size: 12px;
    font-weight: 700;
}
.offer-bullets li {
    margin: 8px 0;
}
.claim-btn--ghost {
    background: rgb(0 0 0 / 0.25);
    border: 1px solid rgb(255 255 255 / 0.14);
    color: rgb(237 237 237 / 0.92);
}
.offer-img {
    height: 132px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.08);
    position: relative;
}
.offer-img .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.offer-titlebar {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 0.05) 0%, rgb(0 0 0 / 0.6) 100%);
}
.offer-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    max-width: 76%;
    height: auto;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 10px 22px rgb(0 0 0 / 0.55));
}
.offer-title {
    font-weight: 900;
    font-size: 18px;
}
.offer-more {
    height: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.3);
    border: 1px solid rgb(255 255 255 / 0.1);
    font-size: 10px;
    font-weight: 900;
    color: rgb(237 237 237 / 0.7);
    cursor: pointer;
    appearance: none;
}
.offer-legal {
    margin-top: 4px;
    font-size: 11px;
    color: rgb(169 169 178 / 0.55);
    font-weight: 700;
}
.offer-meta {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 18px;
    color: rgb(169 169 178 / 0.85);
    font-size: 12px;
    font-weight: 700;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.meta-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.85;
}
.meta-item strong {
    color: rgb(237 237 237 / 0.92);
    font-size: 14px;
    margin-left: auto;
    font-weight: 900;
}
.claim-btn {
    margin-top: 14px;
    width: 100%;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: #ededed;
    color: #0f0f12;
    font-weight: 900;
    letter-spacing: 0.02em;
    cursor: pointer;
}
.shop-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 8px;
}
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tab {
    height: 28px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.45);
    color: rgb(237 237 237 / 0.7);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
}
.tab.active {
    background: rgb(239 68 68 / 0.2);
    border-color: rgb(239 68 68 / 0.45);
    color: rgb(237 237 237 / 0.92);
}
.filter-right {
    display: flex;
    gap: 10px;
    align-items: center;
}
.filter-pill {
    height: 28px;
    border-radius: 10px;
    padding: 0 12px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(237 237 237 / 0.7);
    font-weight: 800;
    font-size: 13px;
}
.filter-pill svg {
    width: 16px;
    height: 16px;
    opacity: 0.85;
}
.select {
    height: 28px;
    border-radius: 10px;
    padding: 0 12px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.45);
    color: rgb(237 237 237 / 0.7);
    font-weight: 800;
    font-size: 13px;
    outline: none;
}

/* Custom dropdown (native <select> replacement) */
.cselect {
    position: relative;
    display: inline-block;
    min-width: 140px;
}
.cselect-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}
.cselect-btn {
    height: 28px;
    border-radius: 10px;
    padding: 0 12px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.45);
    color: rgb(237 237 237 / 0.7);
    font-weight: 800;
    font-size: 13px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    transition: .12s ease;
}
.cselect-btn:hover {
    filter: brightness(1.06);
}
.cselect-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cselect-caret {
    width: 12px;
    height: 12px;
    opacity: 0.7;
    position: relative;
    transition: .12s ease;
}
.cselect-caret:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 3px;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgb(237 237 237 / 0.7);
    border-bottom: 2px solid rgb(237 237 237 / 0.7);
    transform: rotate(45deg);
}
.cselect.open .cselect-caret {
    transform: rotate(180deg);
}
.cselect-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: rgb(20 19 22 / 0.95);
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 60px rgb(0 0 0 / 0.55);
    overflow: hidden;
    display: none;
    z-index: 70;
    max-height: 280px;
    overflow: auto;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.cselect.open .cselect-menu {
    display: block;
}
.cselect-opt {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 10px 12px;
    color: rgb(237 237 237 / 0.78);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: .12s ease;
}
.cselect-opt:hover {
    background: rgb(239 68 68 / 0.14);
}
.cselect-opt.is-selected {
    background: rgb(239 68 68 / 0.18);
    color: rgb(237 237 237 / 0.92);
}
.cselect-opt:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.shop-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.product-card {
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.32);
    box-shadow: none;
    overflow: hidden;
    padding: 14px;
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 14px;
}
.product-img {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.08);
    height: 168px;
    background: rgb(26 25 28 / 0.5);
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}
.product-title {
    font-weight: 900;
    font-size: 16px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.soon-badge {
    width: 26px;
    height: 26px;
    object-fit: contain;
    opacity: 0.95;
}
.product-desc {
    color: rgb(169 169 178 / 0.7);
    font-size: 12px;
    line-height: 1.35;
    margin-top: 6px;
}
.product-meta {
    margin-top: 10px;
    color: rgb(169 169 178 / 0.78);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 700;
}
.product-meta .meta-line {
    display: flex;
    gap: 8px;
    align-items: center;
}
.product-meta svg {
    width: 14px;
    height: 14px;
    opacity: 0.9;
}
.product-btn {
    margin-top: 12px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: rgb(239 68 68 / 0.2);
    color: rgb(237 237 237 / 0.85);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: not-allowed;
    opacity: 0.65;
}
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.community-card {
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.26);
    box-shadow: none;
    padding: 22px 18px 18px;
    text-align: center;
}
.comm-ic {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 6px auto 16px;
}
.comm-ic svg {
    width: 34px;
    height: 34px;
    color: #fff;
}
.community-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}
.community-card p {
    margin: 10px auto 16px;
    max-width: 320px;
    color: rgb(169 169 178 / 0.7);
    font-weight: 600;
    line-height: 1.5;
}
.comm-btn {
    height: 42px;
    padding: 0 20px;
    border-radius: 12px;
    border: none;
    font-weight: 900;
    cursor: pointer;
    color: #fff;
}
.comm-btn:hover {
    filter: brightness(1.04);
}
.live-wrap {
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.22);
    box-shadow: none;
    padding: 14px;
}
.live-box {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.22);
    aspect-ratio: 16 / 9;
    position: relative;
}
.live-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.live-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    color: rgb(237 237 237 / 0.8);
}
.table-wrap {
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.26);
    box-shadow: none;
    overflow: hidden;
}
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    color: rgb(237 237 237 / 0.85);
    font-weight: 900;
    padding: 18px 18px;
    text-align: left;
}
.table td {
    padding: 18px 18px;
    border-top: 1px solid rgb(255 255 255 / 0.06);
    color: rgb(237 237 237 / 0.82);
    font-weight: 700;
    font-size: 13px;
}
.table td.muted {
    color: rgb(169 169 178 / 0.8);
    font-weight: 700;
}
.player-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 55px;
    height: 55px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.25);
    overflow: hidden;
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}
.points {
    text-align: right;
    font-weight: 900;
}
.watch {
    text-align: center;
}
.table td.watch {
    color: rgb(169 169 178 / 0.85);
}
.stats-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(0 0 0 / 0.08);
}
.stats-pagebtn {
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.16);
    color: rgb(237 237 237 / 0.86);
    font-weight: 900;
    font-size: 12px;
    line-height: 1;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.08s ease,
        border-color 0.12s ease,
        background 0.12s ease;
}
.stats-pagebtn:hover {
    transform: translateY(-1px);
    border-color: rgb(167 88 255 / 0.55);
}
.stats-pagebtn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}
.stats-pagebtn.nav {
    padding: 0 8px;
}
.stats-pagebtn.nav i {
    width: 16px;
    height: 16px;
}
.stats-pagebtn.active {
    border-color: rgb(147 25 25 / 95%);
    box-shadow: 0 0 0 1px rgb(255 88 88 / 35%) inset;
    background: rgb(255 88 88 / 12%);
    color: #fff;
}
.stats-ellipsis {
    color: rgb(169 169 178 / 0.9);
    font-weight: 900;
    letter-spacing: 0.02em;
    user-select: none;
}
.footer {
    margin-top: 110px;
    color: rgb(237 237 237 / 0.88);
}
.footer-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 28px 28px 18px;
}
.glass--footer {
    background: rgb(12 12 14 / 0.5);
    backdrop-filter: blur(20px) saturate(155%);
    -webkit-backdrop-filter: blur(20px) saturate(155%);
    border: 1px solid rgb(255 255 255 / 0.1);
    box-shadow: 0 18px 70px rgb(0 0 0 / 0.55);
}
.footer-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(600px 220px at 18% 0%, rgb(239 68 68 / 0.18), #fff0 55%),
        radial-gradient(600px 240px at 82% 0%, rgb(239 68 68 / 0.16), #fff0 58%);
    pointer-events: none;
    opacity: 0.9;
}
.footer-card > * {
    position: relative;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 46px;
    align-items: start;
}
.footer-brand {
    display: flex;
    gap: 18px;
    align-items: center;
}
.footer-logo-img {
    height: 76px;
    width: auto;
    display: block;
    filter: drop-shadow(0 12px 26px rgb(0 0 0 / 0.45));
}
.footer-domain {
    font-weight: 900;
    margin-top: 4px;
}
.footer-tagline,
.footer-link {
    color: rgb(191 191 202 / 0.78);
    margin-top: 6px;
    font-weight: 700;
}
.footer-link {
    opacity: 0.95;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}
.footer-col-title {
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}
.footer-link-item {
    display: block;
    color: rgb(191 191 202 / 0.88);
    margin: 10px 0;
    font-weight: 700;
}
.footer-link-item:hover {
    color: rgb(237 237 237 / 0.98);
}
.footer-sep {
    height: 1px;
    background: rgb(255 255 255 / 0.07);
    margin: 26px 0 18px;
}
.footer-bottom {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    align-items: center;
    gap: 16px;
    padding-bottom: 6px;
}
.footer-disclaimer {
    color: rgb(191 191 202 / 0.78);
    font-weight: 700;
    font-size: 13px;
}
.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.social-ic {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.35);
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        background 0.15s ease;
}
.social-ic:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.16);
    background: rgb(26 25 28 / 0.45);
}
.social-ic svg {
    width: 18px;
    height: 18px;
    opacity: 0.85;
}
.footer-copy {
    text-align: right;
    color: rgb(191 191 202 / 0.78);
    font-weight: 700;
    font-size: 13px;
}
.footer-copy a {
    color: inherit;
    text-decoration: none;
}
.footer-copy a:hover {
    text-decoration: none;
}
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.55);
    display: grid;
    place-items: center;
    padding: 18px;
    z-index: 100;
}
#ageBackdrop {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
#logoutBackdrop {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.modal {
    width: min(560px, 96vw);
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.1);
    padding: 18px;
}
.modal--sm {
    width: min(460px, 96vw);
}
.modal-head {
    padding: 4px 6px 10px;
}
.modal-head--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.modal-title {
    font-size: 22px;
    font-weight: 900;
}
#ageBackdrop .modal-head {
    text-align: center;
}
#ageTitle.age-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#ageTitle.age-title .age-ic,
#ageTitle.age-title svg,
#ageTitle.age-title .lucide {
    width: 22px;
    height: 22px;
    opacity: 0.9;
    filter: drop-shadow(0 10px 28px rgb(239 68 68 / 0.35));
}
.modal-sub {
    margin-top: 6px;
    color: rgb(169 169 178 / 0.75);
    font-weight: 700;
    font-size: 13px;
}
.modal-body {
    padding: 8px 6px 12px;
}
.modal-text {
    margin: 0;
    color: rgb(169 169 178 / 0.8);
    font-weight: 600;
    line-height: 1.6;
}
.modal-actions {
    display: flex;
    gap: 10px;
    padding: 4px 6px 6px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.35);
    font-weight: 900;
    cursor: pointer;
}
.btn-primary {
    border: none;
    background: linear-gradient(180deg, var(--purple) 0%, var(--purple-2) 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgb(239 68 68 / 0.22);
}
.btn-primary:hover {
    filter: brightness(1.05);
}
.btn-ghost {
    background: rgb(26 25 28 / 0.28);
    color: rgb(237 237 237 / 0.85);
}
.btn-ghost:hover {
    background: rgb(26 25 28 / 0.4);
}
.login-card {
    border-radius: 16px;
    padding: 14px;
    border: 1px solid rgb(255 255 255 / 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
}
.login-ic {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgb(239 68 68 / 0.18);
    border: 1px solid rgb(239 68 68 / 0.35);
    display: grid;
    place-items: center;
}
.login-ic svg {
    width: 22px;
    height: 22px;
    color: #fee2e2;
}
.login-title {
    font-weight: 900;
}
.login-desc {
    color: rgb(169 169 178 / 0.78);
    font-weight: 600;
    font-size: 12px;
    margin-top: 4px;
}
.login-text {
    flex: 1;
}
.login-hint {
    margin-top: 14px;
    color: rgb(169 169 178 / 0.75);
    font-weight: 700;
    font-size: 12px;
}
.login-hint a {
    color: rgb(237 237 237 / 0.92);
    text-decoration: underline;
}
.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    border-radius: 18px;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.cookie-title {
    font-weight: 900;
    margin-bottom: 4px;
}
.cookie-desc {
    color: rgb(169 169 178 / 0.75);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
}
.cookie-desc a {
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cookie-opts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cookie-opt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(26 25 28 / 0.35);
}
.cookie-opt-title {
    font-weight: 900;
}
.cookie-opt-desc {
    margin-top: 6px;
    color: rgb(169 169 178 / 0.75);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.35;
}
.toggle {
    width: 52px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.18);
    position: relative;
    cursor: pointer;
    padding: 0;
}
.toggle span {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgb(237 237 237 / 0.85);
    transition:
        left 0.15s ease,
        background 0.15s ease;
}
.toggle[aria-pressed="true"] {
    background: rgb(239 68 68 / 0.22);
    border-color: rgb(239 68 68 / 0.45);
}
.toggle[aria-pressed="true"] span {
    left: 26px;
    background: rgb(255 255 255 / 0.95);
}
.toggle--locked {
    opacity: 0.55;
    cursor: default;
}
.toggle--locked span {
    left: 26px;
    background: rgb(255 255 255 / 0.85);
}
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.55);
    z-index: 35;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}
@media (min-width: 981px) {
    .hamburger {
        display: none !important;
    }
    .hamburger--right {
        display: none !important;
    }
}
@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .social-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 980px) {
    .topbar {
        grid-template-columns: auto 1fr;
    }
    .topbar-left {
        padding-left: calc(14px + env(safe-area-inset-left));
    }
    .brand-logo {
        height: 54px;
    }
    .topbar-left {
        gap: 10px;
    }
    .top-actions {
        gap: 10px;
    }
    .login-pill {
        padding: 0 14px;
    }
    .user-pill span {
        display: none;
    }
    .topbar-right {
        padding-right: calc(14px + env(safe-area-inset-right));
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .search-pill {
        width: auto;
        flex: 1 1 auto;
        min-width: 140px;
    }
    .hamburger {
        display: grid;
    }
    .hamburger--right {
        display: none;
    }
    .sidebar {
        transform: translateX(-110%);
        transition: transform 0.2s ease;
        box-shadow: none;
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .sidebar-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }
    .content {
        margin-left: 0;
        padding-left: calc(14px + env(safe-area-inset-left));
        padding-right: calc(14px + env(safe-area-inset-right));
        padding-bottom: calc(110px + env(safe-area-inset-bottom));
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer-copy {
        text-align: left;
    }
    .footer-social {
        justify-content: flex-start;
    }
    .footer-card {
        padding: 22px 18px 16px;
        border-radius: 14px;
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        grid-template-columns: 120px 1fr;
    }
    .bottom-nav {
        display: flex !important;
    }
    #ageBackdrop.modal-backdrop {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: calc(18px + env(safe-area-inset-left));
        padding-right: calc(18px + env(safe-area-inset-right));
    }
    #ageBackdrop.modal-backdrop .modal {
        width: min(560px, calc(100vw - 36px));
        margin-left: auto;
        margin-right: auto;
    }
    #slotDemoBackdrop.modal-backdrop {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: calc(18px + env(safe-area-inset-left));
        padding-right: calc(18px + env(safe-area-inset-right));
    }
    #slotDemoBackdrop.modal-backdrop .modal {
        width: min(1180px, calc(100vw - 36px));
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 520px) {
    .footer-card {
        padding: 20px 16px 14px;
    }
    .search-pill {
        width: auto;
        min-width: 120px;
    }
    .top-actions .icon-btn[aria-label="Notifications"] {
        display: inline-flex;
    }
    .login-pill {
        padding: 0 14px;
    }
    .row {
        grid-auto-columns: 195px !important;
    }
    .section-title {
        font-size: 17px;
    }
    .card-hero {
        height: 186px;
    }
    .media-card {
        height: 212px;
    }
    .media-card--tiktok {
        height: 232px;
    }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}
.bottom-nav {
    position: fixed;
    left: calc(12px + env(safe-area-inset-left));
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    height: 74px;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 18px;
}
.glass--bottomnav {
    background: rgb(20 19 22 / 0.82);
    border: 1px solid rgb(255 255 255 / 0.08);
    box-shadow: none;
}
.bottom-nav-btn {
    flex: 1 1 0%;
    min-width: 0;
    border: 1px solid #fff0;
    background: #fff0;
    color: rgb(237 237 237 / 0.68);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 6px;
    border-radius: 14px;
    cursor: pointer;
    transition:
        background 0.15s ease,
        transform 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}
.bottom-nav-btn svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}
.bottom-nav-btn span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.bottom-nav-btn:hover {
    background: rgb(255 255 255 / 0.04);
    transform: translateY(-1px);
}
.bottom-nav-btn.active {
    color: #fff;
    background: rgb(239 68 68 / 0.18);
    border-color: rgb(239 68 68 / 0.3);
}
.bh-top {
    display: flex;
    justify-content: flex-end;
    margin: 6px 0 14px;
}
.bh-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.bh-pill {
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.3);
    color: rgb(237 237 237 / 0.88);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition:
        transform 0.12s ease,
        background 0.12s ease,
        border-color 0.12s ease;
}
.bh-pill:hover {
    transform: translateY(-1px);
    background: rgb(26 25 28 / 0.42);
    border-color: rgb(255 255 255 / 0.16);
}
.bh-pill.active {
    background: rgb(239 68 68 / 0.18);
    border-color: rgb(239 68 68 / 0.35);
}
.bh-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 18px;
    align-items: start;
}
@media (max-width: 1100px) {
    .bh-grid {
        grid-template-columns: 1fr;
    }
}
.bh-card {
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.26);
    overflow: hidden;
}
.bh-summary {
    padding: 14px;
}
.bh-summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 2px 2px 12px;
}
.bh-summary-title {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(237 237 237 / 0.85);
}
.bh-navbtn {
    width: 34px;
    height: 34px;
    border-radius: 12px;
}
.bh-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bh-meta-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgb(0 0 0 / 0.18);
    border: 1px solid rgb(255 255 255 / 0.06);
}
.bh-meta-ic {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.22);
    color: rgb(237 237 237 / 0.92);
}
.bh-meta-ic svg {
    width: 18px;
    height: 18px;
}
.bh-meta-label {
    font-size: 12px;
    color: rgb(169 169 178 / 0.78);
    font-weight: 800;
    line-height: 1.1;
}
.bh-meta-value {
    font-size: 13px;
    color: rgb(237 237 237 / 0.88);
    font-weight: 900;
    margin-top: 3px;
}
.bh-table-card {
    padding: 0;
}
.bh-table-wrap {
    overflow: auto;
}
.bh-table {
    width: 100%;
    border-collapse: collapse;
}
.bh-table th {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    color: rgb(237 237 237 / 0.85);
    font-weight: 900;
    padding: 18px 18px;
    text-align: left;
    white-space: nowrap;
}
.bh-table td {
    padding: 18px 18px;
    border-top: 1px solid rgb(255 255 255 / 0.06);
    color: rgb(237 237 237 / 0.82);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}
.bh-slot-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}
.bh-thumb {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.25);
    overflow: hidden;
    flex: 0 0 auto;
}
.bh-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bh-slot-name {
    font-weight: 900;
    color: rgb(237 237 237 / 0.9);
}
.bh-provider {
    color: rgb(169 169 178 / 0.86);
    font-weight: 800;
}
.bh-right {
    text-align: right;
}
.bh-center {
    text-align: center;
}
.bh-win {
    font-weight: 900;
    color: rgb(237 237 237 / 0.92);
}
.bh-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-top: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(0 0 0 / 0.14);
}
@media (max-width: 780px) {
    .bh-table-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
.bh-note {
    color: rgb(169 169 178 / 0.82);
    font-weight: 800;
    font-size: 12px;
}
.bh-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.bh-pagebtn {
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.26);
    color: rgb(237 237 237 / 0.86);
    font-weight: 900;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.bh-pagebtn svg {
    width: 16px;
    height: 16px;
}
.bh-pagebtn.active {
    background: rgb(239 68 68 / 0.22);
    border-color: rgb(239 68 68 / 0.38);
}
.bh-empty {
    text-align: center;
    color: rgb(169 169 178 / 0.82);
    font-weight: 900;
    padding: 28px !important;
}
@keyframes bhShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
.skeleton {
    background: linear-gradient(90deg, rgb(255 255 255 / 0.05), rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.05));
    background-size: 200% 100%;
    animation: bhShimmer 1.2s ease-in-out infinite;
}
.sk-line {
    height: 12px;
    border-radius: 10px;
    display: inline-block;
}
/* ===============================================
   BONUS HUNT V2
   =============================================== */
.bh2-wrap {
    min-height: 0;
}
.bh2-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}
.bh2-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.28);
    color: rgb(237 237 237 / 0.65);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.bh2-tab.active {
    background: rgb(99 102 241 / 0.18);
    border-color: rgb(99 102 241 / 0.42);
    color: rgb(237 237 237 / 0.95);
}
.bh2-tab:hover:not(.active) {
    background: rgb(26 25 28 / 0.44);
    color: rgb(237 237 237 / 0.85);
}
/* Badges */
.bh2-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
}
.bh2-badge--collecting {
    background: rgb(245 158 11 / 0.18);
    border-color: rgb(245 158 11 / 0.42);
    color: rgb(245 158 11);
}
.bh2-badge--opening {
    background: rgb(249 115 22 / 0.18);
    border-color: rgb(249 115 22 / 0.42);
    color: rgb(249 115 22);
}
.bh2-badge--completed {
    background: rgb(169 169 178 / 0.12);
    border-color: rgb(169 169 178 / 0.28);
    color: rgb(169 169 178);
}
/* Panel */
.bh2-panel {}
.bh2-panel.hidden { display: none; }
.bh2-panel-loading {
    text-align: center;
    padding: 40px;
    color: rgb(169 169 178 / 0.75);
    font-weight: 800;
}
/* Hunt header row */
.bh2-hunt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.bh2-hunt-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.bh2-hunt-title {
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgb(237 237 237 / 0.92);
}
.bh2-hunt-date {
    font-weight: 700;
    font-size: 13px;
    color: rgb(169 169 178 / 0.8);
}
/* Two-column layout: sidebar + table */
.bh2-layout {
    display: grid;
    grid-template-columns: 252px 1fr;
    gap: 16px;
    align-items: start;
}
@media (max-width: 1060px) {
    .bh2-layout {
        grid-template-columns: 1fr;
    }
}
/* Sidebar */
.bh2-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bh2-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13.5px 14px;
    border-radius: 14px;
    background: rgb(26 25 28 / 0.28);
    border: 1px solid rgb(255 255 255 / 0.07);
}
.bh2-stat-ic {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 0.09);
    background: rgb(0 0 0 / 0.22);
    color: rgb(237 237 237 / 0.88);
    flex: 0 0 auto;
}
.bh2-stat-ic svg {
    width: 17px;
    height: 17px;
}
.bh2-stat-text {
    min-width: 0;
}
.bh2-stat-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(169 169 178 / 0.72);
    margin-bottom: 2px;
}
.bh2-stat-value {
    font-size: 15px;
    font-weight: 900;
    color: rgb(237 237 237 / 0.92);
    line-height: 1.25;
}
/* Profit colours */
.bh2-profit-pos { color: rgb(52 211 153); }
.bh2-profit-neg { color: rgb(248 113 113); }
/* Multi badge inside table */
.bh2-multi-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgb(99 102 241 / 0.18);
    border: 1px solid rgb(99 102 241 / 0.34);
    color: rgb(199 210 254);
    font-weight: 900;
    font-size: 12px;
}
/* Super / Extreme badges */
.bh2-super-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgb(245 158 11 / 0.18);
    border: 1px solid rgb(245 158 11 / 0.34);
    color: rgb(245 158 11);
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 6px;
    vertical-align: middle;
}
.bh2-extreme-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgb(239 68 68 / 0.18);
    border: 1px solid rgb(239 68 68 / 0.34);
    color: rgb(239 68 68);
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 6px;
    vertical-align: middle;
}
/* Number cell */
.bh2-td-num {
    color: rgb(169 169 178 / 0.72);
    font-size: 13px;
    font-weight: 700;
}
/* Back button */
.bh2-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.3);
    color: rgb(237 237 237 / 0.8);
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 18px;
    transition: background 0.12s, border-color 0.12s;
}
.bh2-back-btn:hover {
    background: rgb(26 25 28 / 0.5);
    border-color: rgb(255 255 255 / 0.18);
}
.bh2-back-btn svg {
    width: 16px;
    height: 16px;
}
/* Empty state */
.bh2-empty-state {
    text-align: center;
    padding: 52px 24px;
    color: rgb(169 169 178 / 0.72);
    font-weight: 800;
    font-size: 14px;
}
/* History grid */
.bh2-history-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 1280px) {
    .bh2-history-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
    .bh2-history-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .bh2-history-grid { grid-template-columns: 1fr; }
}
/* History card */
.bh2-history-card {
    padding: 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.12s, border-color 0.12s;
}
.bh2-history-card:hover {
    transform: translateY(-2px);
    border-color: rgb(255 255 255 / 0.14);
}
.bh2-hcard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
}
.bh2-hcard-title {
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(237 237 237 / 0.9);
}
.bh2-hcard-date {
    font-size: 11px;
    font-weight: 700;
    color: rgb(169 169 178 / 0.72);
    white-space: nowrap;
}
.bh2-hcard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}
.bh2-hcard-stat-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgb(169 169 178 / 0.68);
    margin-bottom: 3px;
}
.bh2-hcard-stat-value {
    font-size: 14px;
    font-weight: 900;
    color: rgb(237 237 237 / 0.9);
}
.bh2-hcard-best {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    background: rgb(99 102 241 / 0.08);
    border: 1px solid rgb(99 102 241 / 0.18);
    border-radius: 10px;
    font-size: 12px;
    overflow: hidden;
}
.bh2-hcard-best-label {
    color: rgb(169 169 178 / 0.8);
    font-weight: 700;
    white-space: nowrap;
}
.bh2-hcard-best-name {
    color: rgb(237 237 237 / 0.88);
    font-weight: 800;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bh2-hcard-best-multi {
    color: rgb(139 152 255);
    font-weight: 900;
    white-space: nowrap;
}
.bh2-history-pager {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
}
.bh2-hpager-ellipsis {
    color: rgb(169 169 178 / 0.7);
    font-weight: 800;
    font-size: 13px;
    padding: 0 4px;
}
.legal-wrap {
    padding: 18px;
}
.legal-doc {
    max-width: 980px;
    margin: 0 auto;
    color: rgb(237 237 237 / 0.85);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 600;
}
.legal-doc p {
    margin: 10px 0;
    color: rgb(169 169 178 / 0.86);
}
.legal-doc ul {
    margin: 10px 0 12px;
    padding-left: 18px;
}
.legal-doc li {
    margin: 6px 0;
    color: rgb(169 169 178 / 0.86);
}
.legal-doc h2 {
    margin: 18px 0 8px;
    font-size: 16px;
    font-weight: 900;
    color: rgb(237 237 237 / 0.92);
}
.legal-doc h3 {
    margin: 14px 0 6px;
    font-size: 14px;
    font-weight: 850;
    color: rgb(237 237 237 / 0.9);
    opacity: 0.95;
}
.biz-email {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.2px;
    color: rgb(237 237 237 / 0.95);
    margin: 8px 0 0;
}
body {
    font-size: 15px;
}
.search-pill input {
    font-size: 13px;
}
.nav-label {
    font-size: 13px;
}
.login-pill {
    font-size: 12px;
}
.footer-disclaimer,
.footer-copy {
    font-size: 12px;
}
.footer-tagline,
.footer-link,
.footer-link-item {
    font-size: 12px;
}
.about-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px;
}
.about-banner {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
    height: 210px;
    position: relative;
}
.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.02);
}
.about-header {
    margin-top: 18px;
}
.about-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 18px;
    margin-top: 18px;
}
.about-bottom {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 18px;
    margin-top: 18px;
    margin-bottom: 12px;
}
.about-card {
    border-radius: 18px;
    padding: 22px;
}
.about-profile {
    text-align: center;
    padding-top: 26px;
    padding-bottom: 26px;
}
.about-avatar {
    width: 140px;
    height: 140px;
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 4px solid rgb(239 68 68 / 0.25);
    box-shadow: 0 0 0 8px rgb(239 68 68 / 0.08);
    background: rgb(0 0 0 / 0.2);
}
.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-avatar img.about-logo {
    object-fit: contain;
    padding: 0;
}
.about-name {
    font-weight: 1000;
    font-size: 30px;
    letter-spacing: 0.02em;
    color: rgb(239 68 68 / 0.95);
    margin-top: 6px;
}
.about-role {
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.18em;
    opacity: 0.7;
    margin-top: 6px;
}
.about-mini {
    margin-top: 16px;
    color: rgb(169 169 178 / 0.82);
    font-weight: 700;
    line-height: 1.55;
}
.about-card-title {
    font-weight: 1000;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: rgb(239 68 68 / 0.92);
    margin-bottom: 12px;
}
.about-text {
    color: rgb(169 169 178 / 0.86);
    font-weight: 700;
    line-height: 1.7;
}
.about-text p {
    margin: 0 0 14px;
}
.about-text p:last-child {
    margin-bottom: 0;
}
.about-text strong {
    color: rgb(237 237 237 / 0.92);
}
.about-biz-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.about-biz-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgb(239 68 68 / 0.14);
    border: 1px solid rgb(239 68 68 / 0.25);
    flex: 0 0 auto;
    margin-top: 2px;
}
.about-biz-ic svg {
    width: 18px;
    height: 18px;
    opacity: 0.95;
}
.about-biz-title {
    font-weight: 1000;
    font-size: 14px;
}
.about-biz-sub {
    margin-top: 4px;
    color: rgb(169 169 178 / 0.82);
    font-weight: 700;
    line-height: 1.35;
    font-size: 12px;
}
.about-biz-email {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgb(0 0 0 / 0.35);
    border: 1px solid rgb(239 68 68 / 0.35);
    color: rgb(239 68 68 / 0.92);
    font-weight: 900;
    letter-spacing: 0.02em;
    width: 100%;
    text-align: center;
}
.about-social-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}
.about-social-btn {
    height: 62px;
    border-radius: 16px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(0 0 0 / 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    font-size: 13px;
    transition:
        transform 0.15s ease,
        filter 0.15s ease,
        border-color 0.15s ease;
}
.about-social-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}
.about-social-btn img {
    width: 22px;
    height: auto;
    display: block;
}
.about-social-btn svg {
    width: 18px;
    height: 18px;
}
.about-social-btn.twitch {
    border-color: rgb(145 70 255 / 0.4);
}
.about-social-btn.youtube {
    border-color: rgb(255 0 0 / 0.35);
}
.about-social-btn.discord {
    border-color: rgb(88 101 242 / 0.35);
}
.about-social-btn.instagram {
    border-color: rgb(225 48 108 / 0.35);
}
.about-social-btn.telegram {
    border-color: rgb(0 136 204 / 0.35);
}
@media (max-width: 980px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-bottom {
        grid-template-columns: 1fr;
    }
    .about-social-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 520px) {
    .about-banner {
        height: 160px;
    }
    .about-social-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.offer-more:focus {
    outline: none;
}
.live-card {
    max-width: var(--container-max);
    margin: 0 auto;
    border-radius: var(--radius);
    padding: 14px;
}
.live-embed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 6px 12px;
}
.live-embed-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: rgb(237 237 237 / 0.92);
}
.live-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: rgb(169 169 178 / 0.86);
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(26 25 28 / 0.35);
    transition:
        transform 0.15s ease,
        border-color 0.15s ease;
}
.live-open:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.14);
}
.live-open svg {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}
.live-embed-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 14px;
    align-items: stretch;
}
.live-embed-grid--solo {
    grid-template-columns: 1fr;
}
.live-player,
.live-chat {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(0 0 0 / 0.22);
}
.live-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.live-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.live-chat iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 520px;
}
@media (max-width: 980px) {
    .live-embed-grid {
        grid-template-columns: 1fr;
    }
    .live-chat iframe {
        height: 560px;
        min-height: 560px;
    }
}
body.no-scroll {
    overflow: hidden;
}
.viewall-btn {
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    color: rgb(237 237 237 / 0.92);
    font-weight: 900;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.viewall-btn:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.14);
    box-shadow: 0 10px 26px rgb(0 0 0 / 0.22);
}
.slot-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.4);
    cursor: default;
    box-shadow: none;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.slot-card:hover {
    transform: translateY(-2px);
    border-color: rgb(255 255 255 / 0.14);
    box-shadow: none;
}
.slot-thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}
.slot-card:hover .slot-thumb {
    filter: blur(8px) brightness(0.78) saturate(1.08);
    transform: scale(1.08);
}
.slot-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 12px 10px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0.02) 0%, rgb(0 0 0 / 0.55) 100%);
}
.slot-name {
    font-size: 20px;
    font-weight: 1000;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-shadow: 0 18px 50px rgb(0 0 0 / 0.35);
}
.slot-studio {
    margin-top: 0;
    font-size: 14px;
    font-weight: 900;
    opacity: 0.9;
    letter-spacing: 0.12em;
    color: rgb(237 237 237 / 0.85);
}
.slots-demo-page .slot-card {
    height: 250px;
}
.slots-demo-page .slot-meta {
    padding: 14px 14px 12px;
}
.slot-card--home {
    height: 290px;
}
.slot-card--home .slot-meta {
    display: none;
}
.slot-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.45);
    border: 1px solid rgb(255 255 255 / 0.12);
}
.slot-fav:hover {
    border-color: rgb(255 255 255 / 0.2);
}
.slot-fav .lucide {
    width: 18px;
    height: 18px;
}
.slot-hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.15s ease;
    background: rgb(0 0 0 / 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.slot-card:hover .slot-hover {
    opacity: 1;
}
.slot-actions {
    display: flex;
    gap: 10px;
}
.slot-action {
    height: 44px;
    min-width: 92px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.14);
    background: rgb(26 25 28 / 0.35);
    color: rgb(237 237 237 / 0.92);
    font-weight: 1000;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}
.slot-action:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.18);
    box-shadow: 0 12px 30px rgb(0 0 0 / 0.3);
}
.slot-action--demo {
    border: none;
    background: linear-gradient(180deg, var(--purple) 0%, var(--purple-2) 100%);
    box-shadow: 0 12px 30px rgb(239 68 68 / 0.22);
}
.slot-action--demo:hover {
    box-shadow: 0 14px 34px rgb(239 68 68 / 0.26);
}
.slot-action--real {
    background: rgb(26 25 28 / 0.45);
}
.slot-card.is-skeleton {
    cursor: default;
    transform: none !important;
}
.slot-card.is-skeleton .slot-thumb {
    background: linear-gradient(
        90deg,
        rgb(255 255 255 / 0.06) 0%,
        rgb(255 255 255 / 0.1) 45%,
        rgb(255 255 255 / 0.06) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite linear;
    filter: none !important;
    transform: none !important;
}
.slot-card.is-skeleton .slot-meta {
    background: rgb(0 0 0 / 0.25);
}
.slot-card.is-skeleton .slot-name,
.slot-card.is-skeleton .slot-studio {
    opacity: 0.6;
}
.slotsdemo-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.slotsdemo-side {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(29 28 31 / 0.55);
}
.slotsdemo-side-title {
    font-weight: 1000;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    color: rgb(237 237 237 / 0.9);
}
.slotsdemo-providers {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: none;
    padding-right: 0;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.slotsdemo-providers::-webkit-scrollbar {
    display: none;
}
.prov-btn {
    height: 42px;
    flex: 0 0 auto;
    white-space: nowrap;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(26 25 28 / 0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}
.prov-btn:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.14);
}
.prov-btn.active {
    border-color: rgb(147 25 25 / 95%);
    box-shadow: 0 0 0 1px rgb(255 88 88 / 35%) inset;
    background: rgb(255 88 88 / 12%);
}
.prov-name {
    font-weight: 900;
    font-size: 13px;
    color: rgb(237 237 237 / 0.92);
}
.prov-count {
    font-weight: 900;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
}
.prov-btn.is-skeleton {
    opacity: 0.65;
    cursor: default;
}
.slots-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    margin-top: 12px;
    border-top: 1px solid rgb(255 255 255 / 0.06);
    background: rgb(0 0 0 / 0.08);
    border-radius: 14px;
}
.slots-pagebtn {
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.16);
    color: rgb(237 237 237 / 0.86);
    font-weight: 900;
    font-size: 12px;
    line-height: 1;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.08s ease,
        border-color 0.12s ease,
        background 0.12s ease;
}
.slots-pagebtn:hover {
    transform: translateY(-1px);
    border-color: rgb(255 255 255 / 0.18);
}
.slots-pagebtn.active {
    border-color: rgb(147 25 25 / 95%);
    box-shadow: 0 0 0 1px rgb(255 88 88 / 35%) inset;
    background: rgb(255 88 88 / 12%);
}
.slots-pagebtn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.slots-ellipsis {
    color: rgb(169 169 178 / 0.75);
    font-weight: 900;
    padding: 0 2px;
}
.slotsdemo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}
.slotsdemo-main {
    min-width: 0;
}
@media (max-width: 1200px) {
    .slotsdemo-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
@media (max-width: 1100px) {
    .slotsdemo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 980px) {
    .slotsdemo-side {
        padding: 12px;
    }
    .slotsdemo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 520px) {
    .slotsdemo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .slotsdemo-providers {
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
    }
    .prov-btn {
        flex: 1 1 calc(50% - 10px);
        height: 40px;
        min-width: 0;
    }
    .prov-name {
        font-size: 12px;
    }
}
#slotDemoBackdrop {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.modal--wide {
    width: min(1180px, 96vw);
}
.slotdemo-body {
    padding: 10px 6px 14px;
}
.slotdemo-framewrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(0 0 0 / 0.45);
}
#slotDemoFrame {
    width: 100%;
    height: min(70vh, 720px);
    min-height: 480px;
    border: 0;
    display: block;
    background: #000;
}
@media (max-width: 980px) {
    #slotDemoFrame {
        height: min(62vh, 640px);
        min-height: 420px;
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
@media (hover: none) {
    .slot-hover {
        opacity: 0;
        pointer-events: none;
        background: rgb(0 0 0 / 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .slot-card:hover {
        transform: none;
    }
    .slot-card.is-open .slot-hover {
        opacity: 1;
        pointer-events: auto;
        background: rgb(0 0 0 / 0.18);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .slot-card.is-open .slot-thumb {
        filter: blur(8px) brightness(0.78) saturate(1.08);
        transform: scale(1.08);
    }
    .slot-card {
        -webkit-tap-highlight-color: #fff0;
    }
}
@media (max-width: 560px) {
    .slot-card--home {
        height: 240px;
    }
    .slots-demo-page .slot-card {
        height: 240px;
    }
    .slot-actions {
        gap: 8px;
    }
    .slot-action {
        height: 40px;
        min-width: 86px;
        padding: 0 14px;
        font-size: 13px;
    }
}



/* --- Shop: enable redeem button --- */
.product-btn.product-btn--active{
  cursor:pointer;
  opacity:1;
  background: rgb(239 68 68 / 0.28);
  border: 1px solid rgb(239 68 68 / 0.25);
}
.product-btn.product-btn--active:hover{
  background: rgb(239 68 68 / 0.38);
}
.product-btn.product-btn--active:active{
  transform: translateY(1px);
}

/* skeleton hint */
.product-card.is-skeleton{
  opacity:0.55;
}



/* --- Shop UX improvements (manager shop v2) --- */
.tab { display:flex; align-items:center; gap:10px; }
.tab .tab-label { display:inline-flex; align-items:center; }
.tab .tab-count{
  min-width: 26px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.10);
  background: rgb(0 0 0 / 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: rgb(237 237 237 / 0.85);
}

/* Featured layout */
.shop-featured{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}
@media (max-width: 980px){
  .shop-featured{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .shop-featured{ grid-template-columns: 1fr; }
}

.product-card.is-featured{
  border-color: rgb(239 68 68 / 0.30);
  background: linear-gradient(180deg, rgb(239 68 68 / 0.10), rgb(26 25 28 / 0.45));
}

.featured-pill, .featured-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
  padding: 2px 10px;
  border: 1px solid rgb(239 68 68 / 0.35);
  background: rgb(239 68 68 / 0.15);
  color: rgb(237 237 237 / 0.92);
  font-weight: 900;
  font-size: 12px;
  margin-right: 10px;
}
.featured-pill svg, .featured-badge svg { width: 14px; height: 14px; }

/* Redeem modal inputs */
.form-label{
  font-size: 12px;
  font-weight: 900;
  color: rgb(237 237 237 / 0.85);
  margin: 10px 0 6px;
}
.form-input, .form-textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(0 0 0 / 0.22);
  color: rgb(237 237 237 / 0.92);
  padding: 10px 12px;
  outline: none;
}
.form-textarea{ min-height: 90px; resize: vertical; }
.form-instructions{
  white-space: pre-wrap;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 0.10);
  background: rgb(0 0 0 / 0.18);
  padding: 12px;
  color: rgb(237 237 237 / 0.92);
  font-weight: 700;
}

/* Better skeleton for product cards */
.product-card.is-skeleton .product-img{
  background: linear-gradient(90deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.10), rgb(255 255 255 / 0.06));
  background-size: 200% 100%;
  animation: shimmer 1.25s infinite linear;
}
.product-card.is-skeleton .product-title,
.product-card.is-skeleton .product-desc,
.product-card.is-skeleton .meta-line,
.product-card.is-skeleton .product-btn{
  position: relative;
  color: transparent !important;
  background: linear-gradient(90deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.10), rgb(255 255 255 / 0.06));
  background-size: 200% 100%;
  animation: shimmer 1.25s infinite linear;
  border-radius: 10px;
}
.product-card.is-skeleton .product-title{ height: 16px; width: 70%; }
.product-card.is-skeleton .product-desc{ height: 12px; width: 90%; margin-top: 10px; }
.product-card.is-skeleton .meta-line{ height: 12px; width: 55%; }
.product-card.is-skeleton .product-btn{ height: 42px; width: 100%; border-radius: 999px; border: none; }
@keyframes shimmer{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}
