:root {
    --bg: #060b14;
    --header-bg: rgba(6, 11, 20, 0.92);
    --sidebar-bg: #0a0f18;
    --panel: #151a22;
    --panel-2: #1a2029;
    --panel-3: #111723;
    --hover: #202734;
    --border: #252d3a;
    --text: #f4f7fb;
    --muted: #98a2b3;
    --accent: #3d63f3;
    --accent-hover: #3155dd;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    --radius: 20px;
    --radius-sm: 14px;
    --header-height: 76px;
    --sidebar-width: 228px;
    --content-padding: 28px;
    --dropdown-width: 380px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
	 -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
}

body.mobile-menu-open,
body.user-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.streamer-flag{
    width:16px;
    height:11px;
    object-fit:cover;
    border-radius:2px;
    margin-right:6px;
    vertical-align:middle;
}

.sidebar-streamer-option-icon img{
    width:16px;
    height:11px;
}
.header-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.header-cart-icon {
    position: relative;
    font-size: 16px;
    line-height: 1;
}

.header-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.auth-error-message {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    color: #fca5a5;
    font-size: 14px;
    line-height: 1.4;
}

.auth-modal--page {
    position: relative;
    inset: auto;
    display: flex;
    min-height: calc(100vh - 80px);
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.auth-modal--page .auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(47, 107, 255, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(122, 92, 255, 0.14), transparent 35%),
        rgba(5, 10, 20, 0.72);
    backdrop-filter: blur(10px);
}

.auth-modal--page .auth-modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1080px;
}

.auth-secondary-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
    margin-top: 12px;
}

.auth-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.verify-result-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.verify-result-card--success {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.18);
}

.verify-result-card--error {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.18);
}

.verify-result-card__icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-result-card--success .verify-result-card__icon {
    background: rgba(34, 197, 94, 0.14);
    color: #4ade80;
}

.verify-result-card--error .verify-result-card__icon {
    background: rgba(239, 68, 68, 0.14);
    color: #f87171;
}

.verify-result-card__icon svg {
    width: 24px;
    height: 24px;
}

.verify-result-card__title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.verify-result-card__text {
    margin: 0;
    color: #b7c3dc;
    font-size: 14px;
    line-height: 1.6;
}

.auth-alert {
    display: none;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.auth-alert.is-visible {
    display: block;
}

.auth-alert--error {
    background: rgba(255, 87, 87, 0.10);
    border: 1px solid rgba(255, 87, 87, 0.22);
    color: #ffb4b4;
}

.auth-alert--success {
    background: rgba(63, 203, 113, 0.10);
    border: 1px solid rgba(63, 203, 113, 0.22);
    color: #9ff0b8;
}



.app-shell {
    min-height: 100vh;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-height);
    z-index: 700;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
}

.header-inner {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0 24px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-logo img {
    width: 200px;
    min-height: 42px;
    object-fit: contain;
}

.mobile-logo,
.mobile-icon-btn {
    display: none;
}

.wallet-pill {
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--panel);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.wallet-pill i {
    color: var(--text);
}

.user-dropdown {
    position: relative;
}

.dropdown-streamer-btn {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2f6bff 0%, #4a8bff 100%);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    box-shadow: 0 12px 28px rgba(47, 107, 255, 0.22);
    transition: 0.2s ease;
}

.dropdown-streamer-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(47, 107, 255, 0.28);
}

.dropdown-points-unit {
    font-size: 12px;
    font-weight: 700;
    color: #c9d4e5;
}

.dropdown-points-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #98a2b3;
    font-size: 13px;
    font-weight: 600;
}

.dropdown-progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.dropdown-progress-bar {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f6bff 0%, #4a8bff 100%);
}

.wallet-actions-row {
    grid-template-columns: repeat(3, 1fr);
}

.wallet-actions-row .dropdown-mini-btn {
    min-height: 44px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    padding: 0 10px;
}

.dropdown-link-grid--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.user-menu-btn {
    height: 46px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    border-radius: 999px;
    padding: 0 14px 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.user-menu-btn:hover {
    background: var(--hover);
}

.user-avatar,
.dropdown-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(180deg, #39455b, #243042);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
}

.user-caret {
    font-size: 12px;
    color: var(--muted);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: var(--dropdown-width);
    background:
        radial-gradient(circle at top left, rgba(61, 99, 243, 0.18), transparent 35%),
        linear-gradient(180deg, #0d1220, #0d1522 55%, #0b1320);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
    pointer-events: none;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 2px 0 18px;
}

.check-line--compact {
    margin: 0;
}

.auth-text-link {
    color: #8fb4ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.18s ease;
}

.auth-text-link:hover {
    color: #ffffff;
}

@media (max-width: 767px) {
    .auth-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.user-dropdown.open .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-profile {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dropdown-profile-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dropdown-avatar {
    width: 42px;
    height: 42px;
    font-size: 16px;
}

.dropdown-username {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 3px;
}

.dropdown-view-profile {
    font-size: 14px;
    color: #dce5f7;
    opacity: 0.9;
}

.dropdown-view-profile:hover {
    opacity: 1;
}

.dropdown-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.85;
}

.dropdown-close:hover {
    background: rgba(255,255,255,0.06);
    opacity: 1;
}

.dropdown-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.dropdown-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 14px;
}

.dropdown-card-head strong {
    font-size: 15px;
    color: #fff;
}

.dropdown-card-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c9d4e5;
}
.dropdown-primary-btn {
    width: 100%;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.guest-actions{
    display:flex;
    gap:10px;
}

.btn{
    padding:8px 14px;
    border-radius:8px;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
}

.btn-login{
    background:#1e1e2d;
    color:#fff;
}

.btn-signup{
    background:#3b82f6;
    color:#fff;
}

.dropdown-primary-btn:hover {
    background: var(--accent-hover);
}

.dropdown-actions-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dropdown-mini-btn {
    min-height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #eaf0fb;
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s ease;
}

.dropdown-mini-btn:hover {
    background: rgba(255,255,255,0.07);
}

.dropdown-links {
    margin-top: 6px;
}

.dropdown-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dropdown-link,
.dropdown-link-wide {
    min-height: 48px;
    border-radius: 12px;
    padding: 0 16px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #edf2fb;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}

.dropdown-link-wide {
    margin-bottom: 10px;
}

.dropdown-link:hover,
.dropdown-link-wide:hover {
    background: rgba(255,255,255,0.06);
}

.dropdown-logout {
    margin-top: 10px;
}

.site-main {
    display: flex;
    min-height: 100vh;
    padding-top: var(--header-height);
}

.sidebar-streamer-switcher {
    margin-bottom: 16px;
    padding: 6px 6px 2px;
}

.sidebar-divider {
    height: 1px;
    margin: 10px 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
}

body.sidebar-collapsed .sidebar-divider {
    display: none;
}

.sidebar-streamer-label {
    display: block;
    margin-bottom: 8px;
    padding: 0 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sidebar-streamer-select-wrap {
    position: relative;
}

.sidebar-streamer-select-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8ea2c8;
    font-size: 13px;
    pointer-events: none;
}

.sidebar-streamer-caret {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8ea2c8;
    font-size: 12px;
    pointer-events: none;
}

.sidebar-streamer-select {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
    color: #fff;
    padding: 0 40px 0 40px;
    font-size: 13px;
    font-weight: 700;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.sidebar-streamer-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.025)
    );

    color: #fff;
}

.sidebar-streamer-live-note {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.20);
    color: #b9f5cb;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
    flex-shrink: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-inner {
    flex: 1;
    min-height: 0;
}

.sidebar-bottom {
    padding: 12px 10px 16px;
    margin-top: auto;
}

.sidebar-streamer-btn {
    min-height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, #2f6bff 0%, #4a8bff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.2s ease;
    box-shadow: 0 10px 24px rgba(47, 107, 255, 0.22);
}

.sidebar-streamer-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(47, 107, 255, 0.28);
}

body.sidebar-collapsed .sidebar-streamer-btn {
    padding: 0;
}

body.sidebar-collapsed .sidebar-streamer-btn span {
    display: none;
}

.sidebar {
    width: var(--sidebar-width);
    min-height: calc(100vh - var(--header-height));
    background: var(--sidebar-bg);
    position: fixed;
    left: 0;
    top: var(--header-height);
    bottom: 0;
    overflow: visible;
}

.sidebar-edge-toggle {
    position: absolute;
    top: 18px;
    right: -14px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: #1a1f2b;
    color: #eef3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}

.sidebar-edge-toggle:hover {
    background: #242b3a;
}

.sidebar-edge-toggle i {
    transition: transform 0.2s ease;
}

.sidebar-edge-toggle {
    position: absolute;
    top: 18px;
    right: -14px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: #1a1f2b;
    color: #eef3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}

.sidebar-edge-toggle:hover {
    background: #242b3a;
}

.sidebar-edge-toggle i {
    transition: transform 0.2s ease;
}

.sidebar-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 10px;
    overflow-y: auto;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-link {
    position: relative;
    min-height: 46px;
    border-radius: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 13px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--hover);
    color: var(--text);
}

.sidebar-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.sidebar-icon {
    width: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    flex-shrink: 0;
}

.sidebar-link.is-hidden {
    display: none;
}

.sidebar-streamer-switcher {
    position: relative;
    margin-bottom: 16px;
    padding: 6px 6px 2px;
}

.sidebar-streamer-label {
    display: block;
    margin-bottom: 8px;
    padding: 0 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sidebar-streamer-trigger {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
    color: #fff;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s ease;
    text-align: left;
}

.sidebar-streamer-trigger:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(61, 99, 243, 0.28);
}

.sidebar-streamer-trigger-left,
.sidebar-streamer-trigger-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-streamer-trigger-icon {
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8ea2c8;
    font-size: 13px;
    flex-shrink: 0;
}

.sidebar-streamer-trigger-text {
    min-width: 0;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-streamer-trigger-caret {
    color: #8ea2c8;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.sidebar-streamer-switcher.open .sidebar-streamer-trigger-caret {
    transform: rotate(180deg);
}

.sidebar-streamer-live-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.20);
    color: #b9f5cb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sidebar-streamer-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 6px;
    right: 6px;
    z-index: 40;
    background: linear-gradient(180deg, #0d1220, #0b1320);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    padding: 8px;
    display: none;
}

.sidebar-streamer-switcher.open .sidebar-streamer-menu {
    display: block;
}

.sidebar-streamer-option {
    min-height: 44px;
    border-radius: 10px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #e7eefb;
    font-size: 13px;
    font-weight: 700;
    transition: 0.18s ease;
}

.sidebar-streamer-option:hover {
    background: rgba(255,255,255,0.06);
}

.sidebar-streamer-option.is-selected {
    background: rgba(61, 99, 243, 0.14);
    color: #fff;
}

.sidebar-streamer-option-left,
.sidebar-streamer-option-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-streamer-option-icon {
    width: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8ea2c8;
    font-size: 12px;
    flex-shrink: 0;
}

.sidebar-streamer-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.20);
    color: #b9f5cb;
    font-size: 11px;
    font-weight: 700;
}

.sidebar-streamer-live-note {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.20);
    color: #b9f5cb;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
    flex-shrink: 0;
}

body.sidebar-collapsed .sidebar-streamer-switcher {
    display: none;
}


.mobile-menu-overlay,
.mobile-menu-panel {
    display: none;
}

.content-wrap {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
}

.content-inner {
    flex: 1;
    width: 100%;
    padding: var(--content-padding);
}

.page-card {
    background: linear-gradient(180deg, #101621, #141b27);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}
.page-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.page-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-footer {
    padding: 0 var(--content-padding) var(--content-padding);
}

.footer-inner {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 64px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-links a:hover {
    color: var(--text);
}

body.sidebar-collapsed {
    --sidebar-width: 78px;
}

body.sidebar-collapsed .sidebar-inner {
    padding-left: 8px;
    padding-right: 8px;
}

body.sidebar-collapsed .sidebar-link {
    justify-content: center;
    padding: 0;
    gap: 0;
}

body.sidebar-collapsed .sidebar-link span:last-child {
    display: none;
}

body.sidebar-collapsed .sidebar-icon {
    width: 20px;
    font-size: 16px;
}

body.sidebar-collapsed .sidebar-link.active::before {
    display: none;
}

body.sidebar-collapsed .sidebar-edge-toggle i {
    transform: rotate(180deg);
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.auth-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 20, 0.78);
    backdrop-filter: blur(8px);
}

.auth-modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1080px;
    border-radius: 28px;
    overflow: hidden;
    background: #0c1525;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.auth-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease, transform 0.2s ease;
}

.auth-modal__close:hover {
    background: rgba(255,255,255,0.14);
    transform: scale(1.04);
}

.auth-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

.auth-modal__visual {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(70, 124, 255, 0.35), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(123, 76, 255, 0.28), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(0, 210, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #0d1830 0%, #091120 100%);
    padding: 36px;
}

.auth-visual-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #e6efff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.auth-visual-badge__icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f6bff 0%, #7a6fff 100%);
    color: #fff;
    font-size: 12px;
}

.auth-visual-title {
    max-width: 420px;
    margin: 22px 0 12px;
    color: #fff;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 800;
}

.auth-visual-text {
    max-width: 430px;
    color: #a5b4d0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.auth-visual-art {
    position: relative;
    height: 360px;
    margin-top: 30px;
}

.tcg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.orb-1 {
    width: 160px;
    height: 160px;
    left: 20px;
    bottom: 20px;
    background: rgba(70, 124, 255, 0.32);
}

.orb-2 {
    width: 120px;
    height: 120px;
    right: 60px;
    top: 20px;
    background: rgba(132, 88, 255, 0.28);
}

.orb-3 {
    width: 90px;
    height: 90px;
    right: 20px;
    bottom: 70px;
    background: rgba(0, 208, 255, 0.22);
}

.tcg-card {
    position: absolute;
    width: 210px;
    height: 295px;
    border-radius: 22px;
    left: 50%;
    top: 50%;
    transform-origin: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.tcg-card--back {
    transform: translate(-72%, -40%) rotate(-18deg);
    background: linear-gradient(160deg, rgba(66,101,255,0.7), rgba(22,34,63,0.95));
    border: 1px solid rgba(255,255,255,0.12);
}

.tcg-card--mid {
    transform: translate(-18%, -52%) rotate(14deg);
    background: linear-gradient(160deg, rgba(118,73,255,0.68), rgba(22,34,63,0.95));
    border: 1px solid rgba(255,255,255,0.12);
}

.tcg-card--front {
    transform: translate(-50%, -50%) rotate(-4deg);
    background: linear-gradient(160deg, rgba(13, 24, 48, 0.98), rgba(8, 15, 29, 0.98));
    border: 1px solid rgba(255,255,255,0.14);
    overflow: hidden;
}

.tcg-card__shine {
    position: absolute;
    inset: -30%;
    background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.24) 50%, transparent 65%);
    transform: rotate(10deg);
}

.tcg-card__inner {
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    border: 1px solid rgba(110, 152, 255, 0.22);
    background:
        radial-gradient(circle at top left, rgba(72, 127, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(17, 28, 52, 0.98), rgba(8, 15, 29, 0.98));
    overflow: hidden;
}

.tcg-card__gem {
    position: absolute;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 24px;
    background: linear-gradient(135deg, #3a8cff 0%, #7a6fff 55%, #00d4ff 100%);
    box-shadow: 0 0 30px rgba(70, 124, 255, 0.3);
}

.tcg-card__lines {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 26px;
    height: 54px;
    border-radius: 14px;
    background:
        linear-gradient(rgba(255,255,255,0.16), rgba(255,255,255,0.16)) 0 0 / 100% 12px no-repeat,
        linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0.10)) 0 21px / 78% 10px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) 0 40px / 62% 10px no-repeat;
}

.auth-modal__form-side {
    padding: 42px 36px;
    background:
        radial-gradient(circle at top, rgba(52, 98, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #0b1425 0%, #09111e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-modal__header {
    margin-bottom: 22px;
}

.auth-modal__eyebrow {
    color: #77a5ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.auth-modal__title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
}

.auth-modal__subtitle {
    margin: 0;
    color: #95a2bf;
    font-size: 15px;
    line-height: 1.6;
}

.auth-socials {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.auth-social {
    height: 52px;
    border-radius: 14px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.auth-social:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
}

.auth-social__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.auth-social__icon svg {
    width: 22px;
    height: 22px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 8px 0 18px;
}

.auth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.auth-divider span {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    background: #0a1220;
    color: #7f8ca8;
    font-size: 13px;
}

.auth-terms-text {
    margin-top: 8px;
    text-align: center;
    color: #8f9bb3;
    font-size: 12px;
    line-height: 1.5;
}

.auth-terms-text a {
    color: #75a5ff;
    font-weight: 600;
    text-decoration: none;
}

.auth-terms-text a:hover {
    text-decoration: underline;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #dce6ff;
    font-size: 13px;
    font-weight: 700;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #8092b7;
    pointer-events: none;
}

.input-icon svg {
    width: 18px;
    height: 18px;
}

.form-input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    padding: 0 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input.has-icon {
    padding-left: 44px;
}

.form-input:focus {
    border-color: rgba(74, 130, 255, 0.75);
    box-shadow: 0 0 0 4px rgba(74, 130, 255, 0.14);
    background: rgba(255,255,255,0.06);
}

.form-input::placeholder {
    color: #7d8aa8;
}

.check-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b7c3dc;
    font-size: 14px;
    line-height: 1.5;
}

.check-line input[type="checkbox"] {
    margin-top: 3px;
}

.check-line a,
.auth-switch-text a {
    color: #75a5ff;
    font-weight: 700;
    text-decoration: none;
}

.check-line a:hover,
.auth-switch-text a:hover {
    text-decoration: underline;
}

.auth-submit {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #2f6bff 0%, #4a8bff 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(47, 107, 255, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
	    text-decoration: none;
}

.auth-modal__form-side--full {
    max-width: 460px;
    margin: auto;
}

.auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(47, 107, 255, 0.32);
}

.auth-switch-text {
    margin-top: 18px;
    text-align: center;
    color: #8f9bb3;
    font-size: 14px;
}

.auth-socials--bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.auth-socials span { font-size: 14px; }

.input-wrap--password {
    position: relative;
}

.has-password-toggle {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #8092b7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.password-toggle:hover {
    background: rgba(255,255,255,0.06);
    color: #dbe7ff;
}

.password-toggle svg {
    width: 18px;
    height: 18px;
}

.password-toggle .icon-hide {
    display: none;
}

.password-toggle.is-visible .icon-show {
    display: none;
}

.password-toggle.is-visible .icon-hide {
    display: block;
}

.password-strength {
    margin-top: 10px;
}

.password-strength__bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.password-strength__fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: #ff6b6b;
    transition: width 0.2s ease, background 0.2s ease;
}

.password-strength__meta {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    line-height: 1.4;
}

.password-strength__label {
    color: #dbe7ff;
    font-weight: 600;
}

.password-strength__hint {
    color: #8f9bb3;
}

body.auth-modal-open {
    overflow: hidden;
}

@media (max-width: 920px) {
    .auth-modal__dialog {
        max-width: 620px;
    }

    .auth-modal__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-modal__visual {
        min-height: 280px;
        padding: 24px;
    }

    .auth-visual-title {
        font-size: 28px;
        max-width: 100%;
    }

    .auth-visual-text {
        max-width: 100%;
        font-size: 14px;
    }

    .auth-visual-art {
        height: 220px;
        margin-top: 10px;
    }

    .tcg-card {
        width: 150px;
        height: 210px;
    }

    .auth-modal__form-side {
        padding: 28px 20px;
    }

    .auth-modal__title {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .auth-modal {
        padding: 10px;
		margin-top: 100px;
    }

    .auth-modal__dialog {
        border-radius: 20px;
    }

    .auth-modal__visual {
        padding: 20px;
    }

    .auth-modal__close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .auth-visual-badge {
        font-size: 12px;
    }

    .auth-visual-title {
        font-size: 24px;
    }

    .auth-modal__form-side {
        padding: 22px 16px;
    }
}


@media (max-width: 1024px) {
    :root {
        --sidebar-width: 220px;
        --content-padding: 20px;
        --dropdown-width: 350px;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
	
	.sidebar-edge-toggle {
		display: none;
	}

    .sidebar {
        display: none;
    }

    .content-wrap {
        margin-left: 0;
        width: 100%;
    }

    .wallet-pill {
        display: none;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-icon-btn {
        display: inline-flex;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: var(--panel);
        color: var(--text);
        align-items: center;
        justify-content: center;
        font-size: 16px;
        cursor: pointer;
        transition: 0.2s ease;
    }

    .mobile-icon-btn:hover {
        background: var(--hover);
    }

    .mobile-logo {
        position: absolute;
        left: 150px;
        top: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .mobile-logo img {
        height: 25px;
        width: auto;
        object-fit: contain;
    }

    .user-name,
    .user-caret {
        display: none;
    }

    .user-menu-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        border-radius: 12px;
    }

    .user-menu-btn .user-avatar {
        width: 28px;
        height: 28px;
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        backdrop-filter: blur(6px);
        z-index: 850;
        opacity: 0;
        visibility: hidden;
        transition: 0.2s ease;
    }

    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        z-index: 900;
        background:
            radial-gradient(circle at top left, rgba(61, 99, 243, 0.16), transparent 35%),
            linear-gradient(180deg, #0c111c, #0b121d 55%, #09101a);
        transform: translateX(-100%);
        transition: transform 0.25s ease;
    }

    .mobile-menu-panel.open {
        transform: translateX(0);
    }

    .mobile-menu-head {
        min-height: var(--header-height);
        padding: 0 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-title {
        font-size: 22px;
        font-weight: 800;
    }

    .mobile-panel-close {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.04);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
    }

   .mobile-menu-body {
    flex: 1;
    padding: 18px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    overflow-x: visible;
}



.sidebar-inner {
    overflow: visible;
}

.sidebar-streamer-switcher {
    position: relative;
    z-index: 30;
}

.sidebar-streamer-menu {
    z-index: 2000;
}



    .mobile-menu-link {
        min-height: 40px;
        border-radius: 14px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        gap: 14px;
        color: #d9e2f2;
        font-size: 13px;
        font-weight: 700;
        border: 1px solid rgba(255,255,255,0.08);
        background: rgba(255,255,255,0.03);
    }

    .mobile-menu-link.active {
        background: rgba(61, 99, 243, 0.16);
        color: #fff;
        border-color: rgba(61, 99, 243, 0.35);
    }
	

    .user-dropdown {
        position: static;
    }

    .user-dropdown-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100vh;
        border-radius: 0;
        border: 0;
        padding: 20px 16px 24px;
        transform: translateY(100%);
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        transition: transform 0.25s ease;
        overflow-y: auto;
        z-index: 920;
    }

    .user-dropdown.open .user-dropdown-menu {
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown-profile {
        margin-bottom: 20px;
        padding-top: 4px;
    }

    .dropdown-card,
    .dropdown-link,
    .dropdown-link-wide {
        border-radius: 14px;
    }
}

@media (max-width: 640px) {
	
	 html {
        font-size: 14px;
    }
    .header-inner {
        padding: 0 14px;
    }
	
	    .guest-actions{
        gap:6px;
    }

    .guest-actions .btn{
        padding:6px 10px;
        font-size:12px;
        border-radius:6px;
    }


    .content-inner,
    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .page-card {
        padding: 20px;
    }

    .page-title {
        font-size: 18px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-link-grid {
    grid-template-columns: 1fr 1fr;
}

.dropdown-actions-row {
    grid-template-columns: repeat(3, 1fr);
}

    .mobile-logo img {
        height: 30px;
    }
}

@media (max-width: 767px) {
    .auth-modal {
        padding: 0;
    }

    .auth-modal__dialog {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        overflow-y: auto;
    }

    .auth-modal__grid {
        display: block;
    }

    .auth-modal__visual {
        display: none;
    }

    .auth-modal__form-side {
        width: 100%;
        padding: 24px 18px 20px;
    }

    .auth-modal__close {
        top: 14px;
        right: 14px;
        z-index: 20;
    }

    .auth-modal__title {
        font-size: 24px;
        line-height: 1.2;
    }

    .auth-modal__subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .form-input {
        font-size: 16px;
    }

    .auth-submit,
    .auth-social {
        min-height: 52px;
    }

    .auth-socials--bottom {
        grid-template-columns: 1fr;
    }

    .auth-switch-text,
    .auth-terms-text {
        text-align: center;
    }
}

.shop-packs-page {
    padding: 22px;
}

.shop-packs-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.shop-packs-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}

.shop-packs-filters {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(140px, 1fr)) auto;
    gap: 14px;
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);
}

.shop-filter-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.shop-filter-field.type { display: none; }

.shop-filter-field label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.62);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.shop-filter-field input,
.shop-filter-field select {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(8,13,25,.9);
    color: #fff;
    padding: 0 14px;
    outline: none;
}

.shop-filter-field input::placeholder {
    color: rgba(255,255,255,.30);
}

.shop-filter-field input:focus,
.shop-filter-field select:focus {
    border-color: rgba(70,163,255,.65);
    box-shadow: 0 0 0 3px rgba(70,163,255,.10);
}

.shop-filter-actions {
    display: flex;
    align-items: end;
    gap: 10px;
}

.btn-shop-primary,
.btn-shop-secondary {
    height: 44px;
    border-radius: 12px;
    padding: 0 16px;
    font-weight: 700;
    cursor: pointer;
    border: 0;
    white-space: nowrap;
}

.btn-shop-primary {
    background: linear-gradient(135deg, #2d8cff 0%, #46a3ff 100%);
    color: #fff;
}

.btn-shop-secondary {
    background: rgba(255,255,255,.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
}

.shop-packs-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.shop-packs-toolbar-left h2 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #fff;
}

.shop-packs-toolbar-left p {
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

.shop-packs-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
/** PACKS */

.shop-packs-page {
    padding: 0;
}

.shop-packs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.shop-packs-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: #fff;
    border-radius: 12px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.shop-packs-filters {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, minmax(120px, 1fr)) auto;
    gap: 10px;
    margin-bottom: 18px;
}

.shop-filter-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shop-filter-field label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.56);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.shop-filter-field input,
.shop-filter-field select {
    width: 100%;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(8,13,25,.72);
    color: #fff;
    padding: 0 12px;
    outline: none;
    font-size: 13px;
}

.shop-filter-field input::placeholder {
    color: rgba(255,255,255,.28);
}

.shop-filter-field input:focus,
.shop-filter-field select:focus {
    border-color: rgba(70,163,255,.55);
    box-shadow: 0 0 0 3px rgba(70,163,255,.10);
}

.shop-filter-actions {
    display: flex;
    align-items: end;
    gap: 8px;
}

.btn-shop-primary,
.btn-shop-secondary {
    height: 40px;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border: 0;
    white-space: nowrap;
	width: 100%;
}

.btn-shop-primary {
    background: linear-gradient(135deg, #2d8cff 0%, #46a3ff 100%);
    color: #fff;
	width: 100%;
}

.btn-shop-secondary {
    background: rgba(255,255,255,.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
}

.shop-packs-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.shop-packs-toolbar p {
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.shop-packs-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.shop-pack-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(18, 27, 48, .98) 0%, rgba(6, 11, 20, .92) 100%);
    border: 1px solid rgba(255,255,255,.07);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.shop-pack-card:hover {
    transform: translateY(-2px);
    border-color: rgba(70,163,255,.35);
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.shop-pack-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(70,163,255,.12), transparent 55%),
        rgba(6,11,20,.92);
    padding: 12px;
}

.shop-pack-chase-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.shop-pack-chase-card {
    position: absolute;
    bottom: 0;
    width: 58%;
    max-height: 94%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
    transition: transform .2s ease;
}

.shop-pack-card:hover .shop-pack-chase-card.center {
    transform: translateY(-2px) scale(1.01);
}

.shop-pack-chase-card.center {
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.shop-pack-chase-card.left {
    left: 4%;
    bottom: 4%;
    width: 48%;
    transform: rotate(-10deg);
    z-index: 1;
    opacity: .92;
}

.shop-pack-chase-card.right {
    right: 4%;
    bottom: 4%;
    width: 48%;
    transform: rotate(10deg);
    z-index: 2;
    opacity: .92;
}

.shop-pack-image-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.shop-pack-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
}

.shop-pack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.shop-pack-tag {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.shop-pack-tag.game {
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.72);
}

.shop-pack-tag.featured {
    background: rgba(255,191,71,.12);
    color: #ffcb66;
}

.shop-pack-tag.hunt {
    background: rgba(217,70,239,.12);
    color: #ea80ff;
}

.shop-pack-name {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    min-height: 38px;
}

.shop-pack-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.shop-pack-price {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.shop-pack-stock {
    color: rgba(255,255,255,.50);
    font-size: 11px;
    font-weight: 600;
}

.shop-pack-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border-radius: 12px;
    background: rgba(70,163,255,.14);
    color: #72b7ff;
    font-weight: 700;
    font-size: 12px;
}

.shop-packs-empty {
    padding: 26px;
    text-align: center;
    color: rgba(255,255,255,.50);
    border-radius: 18px;
    border: 1px dashed rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
}

@media (max-width: 1400px) {
    .shop-packs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .shop-packs-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-filter-actions {
        grid-column: 1 / -1;
    }

    .shop-packs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .shop-packs-head {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-packs-filter-toggle {
        display: inline-flex;
    }

    .shop-packs-filters {
        display: none;
        grid-template-columns: 1fr;
    }

    .shop-packs-filters.is-open {
        display: grid;
    }

    .shop-packs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .shop-pack-image {
        padding: 10px;
    }
}

.shop-pack-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(70,163,255,.10), transparent 58%),
        linear-gradient(180deg, rgba(37,58,95,.85) 0%, rgba(18,27,48,.9) 100%);
    padding: 8px 10px 0;
    text-decoration: none;
	max-height: 300px;
	min-height: 200px;
}

.shop-pack-chase-stack {
    position: relative;
    width: 100%;
    height: 100%;

	margin-top: 25px; 
}

.shop-pack-chase-card {
    position: absolute;
    top: 6px;
    bottom: auto;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,.34));
    transform-origin: center bottom;
    transition: transform .18s ease;
    will-change: transform;
	
}

.shop-pack-card:hover .shop-pack-chase-card.back-left {
    transform: rotate(-11deg) translateY(-2px);
}

.shop-pack-card:hover .shop-pack-chase-card.back-right {
    transform: rotate(11deg) translateY(-2px);
}

.shop-pack-card:hover .shop-pack-chase-card.front-center {
    transform: translateX(-50%) translateY(15px) scale(1.10);
}

.shop-pack-card:hover .shop-pack-chase-card.solo {
    transform: translateX(-50%) translateY(-4px) scale(1.015);
}

.shop-pack-chase-stack.one-card .solo {
    left: 50%;
    transform: translateX(-50%);
    width: 66%;
    max-height: 96%;
    z-index: 3;
}

.shop-pack-chase-stack.two-cards .back-left {
    left: 3%;
    top: 14px;
    width: 49%;
    max-height: 88%;
    transform: rotate(-10deg);
    z-index: 1;
    opacity: .95;
}

.shop-pack-chase-stack.two-cards .front-center {
    left: 50%;
    top: 2px;
    transform: translateX(-50%);
    width: 50%;
    max-height: 97%;
    z-index: 3;
}

.shop-pack-chase-stack.three-cards .back-left {
    left: 15%;
    top: 22px;
    width: 44%;
    max-height: 82%;
    transform: rotate(-11deg);
    z-index: 1;
    opacity: .92;
}

.shop-pack-chase-stack.three-cards .back-right {
    right: 15%;
    top: 22px;
    width: 44%;
    max-height: 82%;
    transform: rotate(11deg);
    z-index: 2;
    opacity: .92;
}

.shop-pack-chase-stack.three-cards .front-center {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60%;
    max-height: 98%;
    z-index: 3;
}

.shop-pack-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    gap: 8px;
    margin-top: 2px;
}

.shop-pack-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.shop-pack-action-secondary {
    background: rgba(255,255,255,.06);
    color: #d8e8ff;
}

.shop-pack-action-primary {
    background: linear-gradient(135deg, #2d8cff 0%, #46a3ff 100%);
    color: #fff;
    padding: 0;
    min-width: 56px;
}

.shop-pack-action-primary i {
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 768px) {
    .shop-pack-image {
        padding: 8px 8px 0;
    }

    .shop-pack-chase-stack.three-cards .back-left {
        left: 15%;
        width: 43%;
    }

    .shop-pack-chase-stack.three-cards .back-right {
        right: 15%;
        width: 43%;
    }

    .shop-pack-chase-stack.three-cards .front-center {
        width: 70%;
    }

    .shop-pack-actions {
        grid-template-columns: minmax(0, 1fr) 52px;
    }

    .shop-pack-action-primary {
        min-width: 52px;
    }
}

.shop-pack-stock.sold-out {
    color: #ef4444;
    font-weight: 700;
}

.shop-pack-action-primary.is-sold-out {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
    cursor: not-allowed;
    opacity: 1;
}

.shop-pack-action-primary.is-sold-out:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #fff;
}

.cart-streamer-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

/* LIVE */


.cart-added-popup {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 24, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.cart-added-popup.is-visible {
    opacity: 1;
    visibility: visible;
}

.cart-added-popup-inner {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #16a34a;
    color: #fff;
    border-radius: 16px;
    padding: 22px 20px 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.cart-added-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: rgba(255,255,255,0.14);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    cursor: pointer;
}

.cart-added-popup-icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.cart-added-popup-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cart-added-popup-text {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 16px;
    opacity: 0.95;
}

.cart-added-popup-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cart-added-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 11px 14px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: 0.15s ease;
}

.cart-added-popup-btn.cart {
    background: #fff;
    color: #15803d;
}

.cart-added-popup-btn.continue {
    background: rgba(255,255,255,0.16);
    color: #fff;
}

.cart-added-popup-btn:hover {
    transform: translateY(-1px);
}

.login-required-popup .login-required-popup-inner {
    background: #111827;
    color: #fff;
}

.login-required-popup .cart-added-popup-icon {
    color: #fbbf24;
}

.cart-added-popup-btn.login {
    background: #22c55e;
    color: #fff;
}

.cart-added-popup-btn.login:hover {
    transform: translateY(-1px);
}

.shop-pack-action-primary.is-sold-out {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
    cursor: not-allowed;
}

.shop-pack-action-primary.is-streamer-offline {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #fff;
}

.streamer-offline-toast {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;
    border-radius: 12px;

    background: rgba(245,158,11,0.95);
    color: #fff;
    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    opacity: 0;
    transition: all 0.35s ease;

    z-index: 9999;
}

.pack-buy-btn.is-sold-out {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
    cursor: not-allowed;
}

.pack-buy-btn.is-streamer-offline {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #fff;
}

.pack-buy-btn.is-streamer-offline:hover {
    background: #d97706;
    border-color: #d97706;
}

.pack-buy-btn.is-can-cart {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.pack-buy-btn.is-can-cart:hover {
    background: #15803d;
    border-color: #15803d;
}

.pack-buy-btn.is-streamer-offline {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #fff;
    box-shadow: none;
}

.pack-buy-btn.is-streamer-offline:hover {
    background: #d97706;
    border-color: #d97706;
    box-shadow: none;
}

.pack-buy-btn.is-streamer-offline:focus,
.pack-buy-btn.is-streamer-offline:active {
    box-shadow: none;
    outline: none;
}

.streamer-offline-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.streamer-offline-toast i {
    font-size: 16px;
}

.shop-pack-action-primary.is-streamer-offline:hover {
    background: #d97706;
    border-color: #d97706;
}

.shop-pack-action-primary.is-can-cart {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.shop-pack-action-primary.is-can-cart:hover {
    background: #15803d;
    border-color: #15803d;
}

.streamer-offline-cart-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fbbf24;
    font-size: 13px;
    line-height: 1.4;
}

.streamer-offline-cart-alert i {
    flex: 0 0 auto;
    font-size: 15px;
}

/* VIEW PACK */
.pack-view-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding:0px 0 40px;
}

.pack-view-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pack-view-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d8e1ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
}

.pack-view-back:hover {
    opacity: 1;
}

.pack-hero-card {
    background:
        radial-gradient(circle at center, rgba(28, 160, 124, 0.18), rgba(11, 15, 26, 0) 45%),
        linear-gradient(180deg, rgba(13, 18, 31, 0.98) 0%, rgba(8, 11, 19, 0.98) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;
    position: relative;
}

.pack-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}

.pack-hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pack-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pack-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(69, 104, 255, 0.18);
    border: 1px solid rgba(110, 141, 255, 0.25);
    color: #dce6ff;
    font-size: 12px;
    font-weight: 700;
}

.pack-chip.soft {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
    color: #cdd6ef;
}

.pack-chip.featured {
    background: rgba(255, 196, 61, 0.14);
    border-color: rgba(255, 196, 61, 0.25);
    color: #ffd979;
}

.pack-chip.hunt {
    background: rgba(72, 187, 120, 0.14);
    border-color: rgba(72, 187, 120, 0.25);
    color: #8ff0ae;
}

.pack-hero-title {
    margin: 0;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
}

.pack-hero-description {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(255,255,255,0.76);
    font-size: 14px;
    line-height: 1.7;
}

.pack-hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    margin: 28px 0 18px;
}

.pack-hero-image {
    max-width: 260px;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(0,0,0,0.48));
}

.pack-buy-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
}

.pack-multi-group {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 6px;
    gap: 6px;
}

.pack-multi-btn {
    height: 44px;
    min-width: 52px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    cursor: pointer;
}

.pack-multi-btn.is-active {
    background: #4169ff;
    color: #fff;
    box-shadow: 0 10px 24px rgba(65, 105, 255, 0.28);
}

.pack-buy-btn {
    height: 56px;
    min-width: 220px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #4b72ff 0%, #3457dd 100%);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
}

.pack-buy-btn.is-sold-out {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    box-shadow: none;
    cursor: not-allowed;
}

.pack-stock-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.pack-price-main {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

.pack-price-main span {
    margin-left: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 600;
}

.pack-stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(58, 182, 111, 0.14);
    color: #7ff0ab;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(58, 182, 111, 0.22);
}

.pack-stock-badge.sold-out {
    background: rgba(255, 86, 86, 0.12);
    color: #ff9d9d;
    border-color: rgba(255, 86, 86, 0.18);
}

.pack-hero-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}



.pack-side-card h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.pack-side-stat,
.pack-bucket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pack-side-stat:last-child,
.pack-bucket-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.pack-side-stat span,
.pack-bucket-item span {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.pack-side-stat strong,
.pack-bucket-item strong {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.pack-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pack-section-head h2 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.pack-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.pack-section-title i {
    font-size: 14px;
    opacity: 0.9;
}

.pack-section-title--heavy i {
    color: #f6c453;
}

.pack-section-title--pool i {
    color: #7aa2ff;
}

.pack-section-head p {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.64);
    font-size: 14px;
}

.pack-card-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.pack-card-grid.full-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pack-card-item {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease;
	border: 1px solid var(--border);
}

.pack-card-item:hover {
    transform: translateY(-3px);
 
}


.pack-card-thumb {
    aspect-ratio: 0.85 / 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-card-thumb img {
    max-width: 70%;
    object-fit: contain;
	
}

.pack-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pack-card-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    
}

.pack-card-series,
.pack-card-meta-line {
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pack-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.pack-card-value {
    color: #7ff0ab;
    font-weight: 800;
    font-size: 14px;
}

.pack-card-odds {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
	opacity: 0.3;
}

.pack-card-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pack-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pack-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.shop-pack-tag {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .72);
}

.pack-empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
}

.cart-added-popup {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 17, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.cart-added-popup.is-visible {
    display: flex;
}

.cart-added-popup-inner {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #101624;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 24px 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    text-align: center;
}

.cart-added-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    cursor: pointer;
}

.cart-added-popup-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(65, 105, 255, 0.12);
    color: #7fa1ff;
}

.cart-added-popup-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cart-added-popup-text {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.6;
}

.cart-added-popup-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.cart-added-popup-btn {
    flex: 1;
    height: 46px;
    border: 0;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
}

.cart-added-popup-btn.cart,
.cart-added-popup-btn.login {
    background: linear-gradient(180deg, #4b72ff 0%, #3457dd 100%);
    color: #fff;
}

.cart-added-popup-btn.continue {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

@media (max-width: 1200px) {
    .pack-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pack-card-grid.full-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .pack-hero-grid {
        grid-template-columns: 1fr;
    }

    .pack-card-grid,
    .pack-card-grid.full-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pack-hero-title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .pack-hero-card {
        padding: 18px;
        border-radius: 18px;
    }
	
	.pack-hero-description {
    max-width: 720px;
    margin: 14px auto 0;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    line-height: 1.4;
}

    .pack-hero-image-wrap {
        min-height: 260px;
    }

    .pack-hero-image {
        max-width: 200px;
        max-height: 260px;
    }

    .pack-card-grid,
    .pack-card-grid.full-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pack-buy-box {
        flex-direction: column;
    }

    .pack-multi-group {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pack-buy-btn {
        width: 100%;
        min-width: 0;
    }

    .cart-added-popup-actions {
        flex-direction: column;
    }
}
.pack-hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    margin: 28px 0 18px;
    width: 100%;
}

.pack-hero-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pack image (behind cards) */
.pack-hero-image {
    position: absolute;
    z-index: 1;
    max-width: 220px;
    max-height: 350px;
    opacity: 0.35;
    filter: blur(1px) drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* Base card style */
.pack-hero-hit {
    position: absolute;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 22px 42px rgba(0,0,0,0.45);
    transition: transform .2s ease;
}

/* LEFT CARD */
.pack-hero-hit.back-left {
    width: 140px;
    left: 80px;
    top: 60px;
    z-index: 2;
    transform: rotate(-16deg);
}

/* RIGHT CARD */
.pack-hero-hit.back-right {
    width: 140px;
    right: 80px;
    top: 60px;
    z-index: 2;
    transform: rotate(16deg);
}

/* CENTER TOP HIT */
.pack-hero-hit.front-center {
    width: 210px;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

/* hover animation */
.pack-hero-visual:hover .front-center {
    transform: translateX(-50%) translateY(-8px);
}

.pack-hero-visual:hover .back-left {
    transform: rotate(-18deg) translateY(-6px);
}

.pack-hero-visual:hover .back-right {
    transform: rotate(18deg) translateY(-6px);
}
.pack-buy-btn:focus {
    outline: none;
}

/* GREEN (buyable) */
.pack-buy-btn.is-can-cart:focus,
.pack-buy-btn.is-can-cart:active {
    box-shadow: 0 0 0 4px rgba(22,163,74,0.35);
}

@media (max-width: 768px) {

    .pack-hero-visual {
        height: 250px;
    }
	

    .pack-hero-hit.front-center {
        width: 150px;
		bottom: 10%;
    }

    .pack-hero-hit.back-left,
    .pack-hero-hit.back-right {
        width: 90px;
        top: 50px;
    }

    .pack-hero-hit.back-left {
        left: 50px;
    }

    .pack-hero-hit.back-right {
        right: 50px;
    }
	
	.pack-hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    margin: 28px 0 18px;
    width: 100%;
}

}

.pack-card-item {
    cursor: pointer;
}

.pack-card-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.pack-card-modal.is-visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-card-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 16, 0.82);
    backdrop-filter: blur(6px);
}

.pack-card-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pack-card-modal-stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: 45px;
    overflow: hidden;
    background: #16181f;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.pack-card-modal-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: contain;
    background: #1b1d24;
}

.pack-card-modal-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 22px 18px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.72) 42%,
        rgba(0, 0, 0, 0.18) 78%,
        rgba(0, 0, 0, 0) 100%
    );
}

.pack-card-modal-info {
    color: #fff;
}

.pack-card-modal-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pack-card-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.pack-card-modal-meta span {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.pack-card-modal-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pack-card-modal-stat {
    min-width: 120px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.pack-card-modal-stat span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pack-card-modal-stat strong {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.pack-card-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(12, 14, 20, 0.75);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.pack-card-modal-close:hover {
    background: rgba(25, 28, 38, 0.95);
    transform: scale(1.04);
}

.pack-card-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(12, 14, 20, 0.75);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.pack-card-modal-nav:hover {
    background: rgba(25, 28, 38, 0.95);
    transform: translateY(-50%) scale(1.05);
}

.pack-card-modal-nav.prev {
    left: -58px;
}

.pack-card-modal-nav.next {
    right: -58px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .pack-card-modal-dialog {
        width: min(96vw, 620px);
    }

    .pack-card-modal-nav.prev {
        left: 10px;
    }

    .pack-card-modal-nav.next {
        right: 10px;
    }
}

@media (max-width: 640px) {
    .pack-card-modal-stage {
        max-width: 100%;
        border-radius: 20px;
    }

    .pack-card-modal-image {
        max-height: 74vh;
    }

    .pack-card-modal-title {
        font-size: 20px;
    }

    .pack-card-modal-overlay {
        padding: 16px 16px 14px;
    }

    .pack-card-modal-stat {
        min-width: calc(50% - 6px);
    }

    .pack-card-modal-close {
        top: 10px;
        right: 10px;
    }
}

.pack-fairness-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;
    padding: 10px 12px;

    font-size: 13px;
    line-height: 1.4;

    color: #d1d5db;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}

.pack-fairness-note i {
    color: #22c55e;
    font-size: 14px;
}
.shop-packs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 8px 0 4px;
}

.shop-packs-page-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.025) 100%);
    color: #eef2ff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.shop-packs-page-btn:hover:not(:disabled) {
    border-color: rgba(48, 107, 255, 0.35);
    background: linear-gradient(180deg, rgba(124, 92, 255, 0.18) 0%, rgba(124, 92, 255, 0.09) 100%);
    color: #fff;
}

.shop-packs-page-btn.is-active {
    background: linear-gradient(135deg, #2f6bff 0%, #4a8bff 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(47, 107, 255, 0.22);
}

.shop-packs-page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.shop-packs-page-dots {
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    padding: 0 4px;
}

.shop-packs-page-btn i {
    font-size: 12px;
}

@media (max-width: 640px) {
    .shop-packs-page-btn {
        min-width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 13px;
        padding: 0 11px;
    }
}

.sidebar-streamer-empty {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
}
.sidebar-streamer-option.is-disabled {
    opacity: .6;
    cursor: default;
    pointer-events: none;
}

/* STREAMER PROFILE */
.streamer-profile-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.streamer-profile-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.streamer-profile-head-left {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
}

.streamer-profile-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #151922;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.streamer-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.streamer-profile-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa4b2;
    font-size: 24px;
}

.streamer-profile-head-text {
    min-width: 0;
}

.streamer-profile-slug {
    margin-top: 4px;
    font-size: 12px;
    color: #9aa4b2;
}

.streamer-profile-bio {
    margin-top: 10px;
    max-width: 850px;
    line-height: 1.6;
    color: #c8d0da;
	font-size: 14px;
}

.streamer-profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.streamer-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    font-size: 12px;
    vertical-align: middle;
}

.streamer-profile-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.streamer-stat-card {
    padding: 18px;
    background: #121720;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.streamer-stat-label {
    display: block;
    margin-bottom: 6px;
    color: #9aa4b2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.streamer-stat-value {
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

.streamer-profile-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(260px, 0.7fr);
    gap: 24px;
    align-items: start;
}

.streamer-profile-extra-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    align-items: start;
}

.streamer-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    border-radius: 18px;
    overflow: hidden;
	background: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);
}

.streamer-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
}

.streamer-panel-head h2 {
    margin: 0;
    font-size: 20px;
}

.streamer-panel-head p {
    margin: 6px 0 0;
    color: #9aa4b2;
    font-size: 13px;
}

.streamer-refresh-note {
    color: #9aa4b2;
    font-size: 12px;
    white-space: nowrap;
}

.streamer-panel-body {
    padding: 20px;
    min-height: 0;
    height: auto;
}



.streamer-stream-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #0e131b;
    border-radius: 18px;
    overflow: hidden;
}

.streamer-stream-frame iframe,
.streamer-stream-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.streamer-stream-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #9aa4b2;
    font-size: 15px;
}

.streamer-stream-placeholder i {
    font-size: 34px;
}

/* QUEUE */
.streamer-queue-body {
    max-height: 720px;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.streamer-queue-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
	margin-top: 10px;
}

.streamer-queue-card {
    padding: 14px;
    background: #171d28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}



.streamer-queue-card.is-live {
    background: rgba(255, 67, 67, 0.06);
    border-color: rgba(255, 67, 67, 0.22);

}

.streamer-queue-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.streamer-queue-user {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.streamer-queue-user-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #0f141c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa4b2;
}

.streamer-queue-user-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.streamer-queue-user-text strong {
    color: #fff;
    word-break: break-word;
}

.streamer-queue-user-text span {
    margin-top: 4px;
    color: #9aa4b2;
    font-size: 12px;
}

.streamer-queue-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.streamer-queue-status.is-live {
    background: rgba(255, 67, 67, 0.14);
    color: #ff9f9f;
}

.streamer-queue-status.is-queued {
    background: rgba(99, 102, 241, 0.14);
    color: #bfc6ff;
}

.streamer-queue-box-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.streamer-queue-box-image {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 10px;
    object-fit: cover;
    background: #0f141c;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.streamer-queue-box-text {
    flex: 1;
    min-width: 0;
}

.streamer-queue-box-name {
    margin-bottom: 6px;
    color: #fff;
    font-weight: 700;
    word-break: break-word;
}

.streamer-queue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #d4dce6;
    font-size: 13px;
}

/* PULLS */
.streamer-pulls-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.streamer-pull-card {
    background: #171d28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.streamer-pull-image-wrap {
    aspect-ratio: 0.72 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #0d121a;
}

.streamer-pull-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.streamer-pull-image-placeholder {
    color: #9aa4b2;
    font-size: 24px;
}

.streamer-pull-body {
    padding: 14px;
}

.streamer-pull-title {
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

.streamer-pull-subtitle {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
    color: #9aa4b2;
    font-size: 12px;
}

.streamer-pull-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #cfd7e2;
    font-size: 12px;
}

.streamer-pull-box i {
    color: #9aa4b2;
}

.streamer-pull-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    color: #d4dce6;
    font-size: 12px;
}

.streamer-pull-price {
    color: #70d58a;
    font-weight: 700;
}

.streamer-pull-time {
    margin-top: 8px;
    color: #9aa4b2;
    font-size: 12px;
}

/* EMPTY STATE */
.streamer-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 120px;
    padding: 10px;
    text-align: center;
    color: #9aa4b2;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 16px;
	font-size: 14px;
}

/* EXTRA BLOCKS */
.streamer-suggestions-list,
.streamer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.streamer-suggestion-item,
.streamer-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #171d28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
}

.streamer-quick-link:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.streamer-suggestion-item i,
.streamer-quick-link i {
    width: 18px;
    text-align: center;
    color: #aeb7c4;
}

/* RESPONSIVE */
@media (max-width: 1300px) {
    .streamer-pulls-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .streamer-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .streamer-profile-top-grid,
    .streamer-profile-extra-grid {
        grid-template-columns: 1fr;
    }

    .streamer-pulls-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .streamer-profile-head {
        flex-direction: column;
    }

    .streamer-profile-stats {
        grid-template-columns: 1fr;
    }

    .streamer-pulls-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .streamer-profile-actions {
        width: 100%;
    }

    .streamer-profile-actions a {
        flex: 1 1 auto;
        text-align: center;
    }
}

/* CART */
.cart-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.cart-page-subtitle {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.cart-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-shop-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn-shop-secondary:hover {
    background: #162033;
    border-color: rgba(255, 255, 255, 0.14);
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
}

.cart-main,
.cart-sidebar {
    min-width: 0;
}

.cart-items-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-loading,
.cart-error,
.cart-empty-state {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.cart-loading,
.cart-error {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.cart-empty-state h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #fff;
}

.cart-empty-state p {
    margin: 0 0 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
}

.cart-empty-icon {
    font-size: 34px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.cart-streamer-group {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.cart-streamer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
}

.cart-streamer-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}

.cart-streamer-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.cart-streamer-link {
    color: #fff;
    text-decoration: none;
}

.cart-streamer-link:hover {
    opacity: 0.88;
    text-decoration: underline;
}

.cart-streamer-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    background: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.cart-streamer-status.live {
    color: #22c55e;
}

.cart-streamer-status.offline {
    color: #f59e0b;
}

.cart-streamer-total {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    white-space: nowrap;
}

.cart-streamer-items {
    padding: 0 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 110px 110px 52px;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-item.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.cart-col {
    min-width: 0;
}

.cart-col-product {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.cart-item-image {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
	margin-left: 10px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-details {
    min-width: 0;
}

.cart-item-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.cart-item-badge,
.cart-item-meta-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    background: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.cart-item-badge.pack {
    color: #60a5fa;
}

.cart-item-badge.sealed {
    color: #c084fc;
}

.cart-item-badge.slab {
    color: #f472b6;
}

.cart-item-badge.marketplace {
    color: #fbbf24;
}

.cart-item-meta-tag {
    color: rgba(255, 255, 255, 0.86);
}

.cart-item-name {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

.cart-item-name:hover {
    opacity: 0.88;
}

.cart-col-qty,
.cart-col-unit-price,
.cart-col-total,
.cart-col-remove {
    display: flex;
    align-items: center;
    justify-content: center;
	padding-right: 10px;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.cart-qty-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.cart-qty-btn:hover {
    background: rgba(255, 255, 255, 0.13);
}

.cart-qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cart-qty-value {
    min-width: 22px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.cart-col-unit-price,
.cart-col-total {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
	margin-left: 10px;
	margin-right: 10px;
}

.cart-price-label {
    display: block;
    margin: 0;
    font-size: 12px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.52);
    white-space: nowrap;
}

.cart-col-unit-price strong,
.cart-col-total strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    white-space: nowrap;
}

.cart-remove-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
	
}

.cart-remove-btn:hover {
    background: rgba(239, 68, 68, 0.18);
}

.cart-summary-card {
    padding: 20px;
    border-radius: 18px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
  
    top: 96px;
}

.cart-summary-card h3 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.86);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary-row.total {
    padding-top: 16px;
    border-bottom: 0;
}

.cart-summary-row.total strong {
    font-size: 14px;
	opacity: 1 !important;
}

.cart-checkout-btn {
    width: 100%;
    min-height: 40px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

.cart-summary-note {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1200px) {
    .cart-item {
        grid-template-columns: minmax(0, 1fr) 140px 100px 100px 52px;
        gap: 14px;
    }
}

@media (max-width: 1100px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-card {
        position: static;
    }
}

@media (max-width: 860px) {
    .cart-page-head {
        align-items: stretch;
    }

    .btn-shop-secondary {
        width: 100%;
    }

    .cart-streamer-head {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
    }

    .cart-streamer-items {
        padding: 0 16px;
    }

    .cart-item {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "product product"
            "qty remove"
            "each total";
        align-items: start;
        gap: 12px 14px;
        padding: 16px 0;
    }

    .cart-col-product {
        grid-area: product;
    }

    .cart-col-qty {
        grid-area: qty;
        justify-content: flex-start;
		margin-right: 10px;
    }

    .cart-col-remove {
        grid-area: remove;
        justify-content: flex-end;
		padding-right: 10px;
    }

    .cart-col-unit-price {
        grid-area: each;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .cart-col-total {
        grid-area: total;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .cart-col-unit-price,
    .cart-col-total {
        flex-direction: column;
        gap: 4px;
    }

    .cart-price-label {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .cart-layout {
        gap: 16px;
    }

    .cart-items-wrap {
        gap: 14px;
    }

    .cart-streamer-group {
        border-radius: 16px;
    }

    .cart-streamer-head {
        gap: 10px;
    }

    .cart-streamer-head-left {
        gap: 10px;
    }

    .cart-streamer-name,
    .cart-streamer-total {
        font-size: 15px;
    }

    .cart-item {
        gap: 12px;
        padding: 14px 0;
    }

    .cart-col-product {
        align-items: flex-start;
        gap: 12px;
    }

    .cart-item-image {
        width: 58px;
        height: 58px;
        border-radius: 10px;
    }

    .cart-item-tags {
        gap: 6px;
        margin-bottom: 5px;
    }

    .cart-item-badge,
    .cart-item-meta-tag {
        font-size: 11px;
        padding: 4px 8px;
    }

    .cart-item-name {
        font-size: 14px;
        line-height: 1.3;
    }

    .cart-item-qty {
        padding: 3px;
        gap: 6px;
		margin-left: 10px; 
    }

    .cart-qty-btn {
        width: 32px;
        height: 32px;
    }

    .cart-remove-btn {
        width: 40px;
        height: 40px;
    }
}

/* CHECKOUT */
/* CHECKOUT */

.checkout-agreements {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 16px;
}

.checkout-agreement-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #d7deed;
}

.checkout-agreement-row input[type="checkbox"] {
    margin-top: 3px;
    flex: 0 0 auto;
}

.checkout-agreement-row a {
    color: #6ea8ff;
    text-decoration: none;
}

.checkout-agreement-row a:hover {
    text-decoration: underline;
}

.checkout-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
    align-items: start;
}

.checkout-main,
.checkout-sidebar {
    min-width: 0;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkout-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.checkout-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.checkout-card-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}



/* form grid */

.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
	padding: 16px;
}

.checkout-form-grid .full {
    grid-column: 1 / -1;
}

.checkout-address-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 14px;
    grid-column: 1 / -1;
}

/* fields styled like your filters */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.62);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(8,13,25,.9);
    color: #fff;
    padding: 0 14px;
    outline: none;
    box-sizing: border-box;
	font-size: 14px;
}

.form-group input::placeholder {
    color: rgba(255,255,255,.30);
}

.form-group input:focus,
.form-group select:focus {
    border-color: rgba(70,163,255,.65);
    box-shadow: 0 0 0 3px rgba(70,163,255,.10);
}

.form-group input:disabled {
    opacity: .72;
    cursor: not-allowed;
}

/* make select readable */
.form-group select option {
    background: #0b1220;
    color: #fff;
}

/* summary side */

.checkout-summary-card {
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  
    top: 96px;
}

.checkout-summary-card h3 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

/* grouped items */

.checkout-streamer-block {
    overflow: hidden;
    margin-bottom: 14px;
}

.checkout-streamer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
	padding-left: 0px; padding-right: 0px; 
}



.checkout-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-item-row:last-child {
    border-bottom: 0;
}

.checkout-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.checkout-item-thumb {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkout-item-name {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

.checkout-item-meta {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255,255,255,.55);
}

.checkout-item-right {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

/* PAYMENT METHODS FINAL */

.checkout-payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;

    font-size: 14px;
    font-weight: 600;
    color: #fff;

	min-height: 60px;
    cursor: pointer;
	align-content: center;
	border: 0px;

}

.checkout-payment-option:hover {
    background: #1a2436 !important;
    border-color: rgba(255,255,255,0.10);
}

.checkout-payment-option input {
    accent-color: #46a3ff;
}

.checkout-payment-option img {
    width: 26px;
    height: 16px;
    object-fit: contain;
}

.checkout-payment-option:has(input:checked) {

}

/* radio */

.checkout-payment-option input {
    margin: 0;
    accent-color: #46a3ff;
}

/* icon */

.checkout-payment-option img {
    width: 28px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

/* hover */
.checkout-payment-option:hover {
    background: #1a2436;
    border-color: rgba(255,255,255,0.10);
}

/* selected */



/* helper note */
.checkout-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,.62);
}

/* mobile */

@media (max-width: 1100px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary-card {
        position: static;
    }
}

@media (max-width: 860px) {
    .checkout-address-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-card,
    .checkout-streamer-block,
    .checkout-summary-card {
        border-radius: 14px;
    }

    .checkout-card-head,
    .checkout-card-body {
        padding-left: 16px;
        padding-right: 16px;
    }


}

.checkout-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.checkout-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.checkout-card-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
	padding: 10px;
}



.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
}

.checkout-form-grid .full {
    grid-column: 1 / -1;
}

.checkout-summary-card {
    padding: 20px;
    border-radius: 18px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);

    top: 96px;
}

.checkout-summary-card h3 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.checkout-streamer-block {
    overflow: hidden;
    margin-bottom: 14px;
}

.checkout-streamer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
	padding-left: 0px; padding-right: 0px; 
}


/* SEARCH STREAMERS */
.streamers-page {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.streamers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.streamers-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #17191f;
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}

.streamers-filters {
    display: grid;
    grid-template-columns: 2fr repeat(4, minmax(140px, 1fr)) auto;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: #151821;
    border: 1px solid rgba(255,255,255,0.06);
}

.streamer-filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.streamer-filter-field label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
}

.streamer-filter-field input,
.streamer-filter-field select {
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #0f1218;
    color: #fff;
    padding: 0 14px;
    outline: none;
}

.streamer-filter-field input::placeholder {
    color: rgba(255,255,255,0.35);
}

.streamer-filter-actions {
    display: flex;
    align-items: end;
    gap: 10px;
}

.streamers-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#streamersMeta {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.streamer-card {
    overflow: hidden;
    border-radius: 20px;
    background: #151821;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.streamer-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.streamer-card-banner {
    display: block;
    height: 120px;
    position: relative;
    overflow: hidden;
    background: #202530;
}

.streamer-card-banner-img,
.streamer-card-banner-fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.streamer-card-content {
    padding: 0 16px 16px;
    position: relative;
}

.streamer-card-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    margin-top: -36px;
    border: 4px solid #151821;
    background: #232837;
}

.streamer-card-avatar-img,
.streamer-card-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, #2f6bff 0%, #4a8bff 100%);
}

.streamer-card-body {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.streamer-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.streamer-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.streamer-card-tag.live {
    background: rgba(35, 201, 120, 0.14);
    color: #4be38f;
}

.streamer-card-tag.offline {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
}

.streamer-card-tag.featured {
    background: rgba(255, 186, 61, 0.14);
    color: #ffcc5c;
}

.streamer-card-tag.language {
    background: rgba(91, 95, 239, 0.16);
    color: #9ea4ff;
}

.streamer-card-name {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.streamer-card-name-link,
.streamer-card-handle,
.streamer-card-banner,
.streamer-card-avatar {
    text-decoration: none;
}

.streamer-card-handle {
    color: #8e95aa;
    font-size: 12px;
    font-weight: 600;
}

.streamer-card-bio {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.5;
    min-height: 63px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.streamer-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.streamer-card-btn {
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.18s ease;
}
.streamer-card-btn {
    min-height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, #2f6bff 0%, #4a8bff 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.2s ease;
    box-shadow: 0 10px 24px rgba(47, 107, 255, 0.22);
    text-decoration: none;
}

.streamer-card-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(47, 107, 255, 0.30);
}

.streamer-card-btn.primary {
    width: 100%;
    background: #5b5fef;
    color: #fff;
}

.streamer-card-btn.primary:hover {
    background: #6b6ff7;
}

.streamers-empty {
    padding: 32px 20px;
    text-align: center;
    border-radius: 18px;
    background: #151821;
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
}

.streamers-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.streamers-page-btn {
    min-width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #171b24;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.streamers-page-btn:hover:not(:disabled),
.streamers-page-btn.is-active {
    background: #5b5fef;
}

.streamers-page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.streamers-page-dots {
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 1200px) {
    .streamers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .streamers-filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .streamer-filter-actions {
        grid-column: 1 / -1;
        align-items: center;
    }
}

@media (max-width: 900px) {
    .streamers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .streamers-filter-toggle {
        display: inline-flex;
    }

    .streamers-filters {
        display: none;
        grid-template-columns: 1fr;
    }

    .streamers-filters.is-open {
        display: grid;
    }
}

@media (max-width: 640px) {
    .streamers-grid {
        grid-template-columns: 1fr;
    }

    .streamer-card-banner {
        height: 110px;
    }

    .streamer-card-name {
        font-size: 18px;
    }

    .streamer-filter-actions {
        flex-direction: column;
    }

    .streamer-filter-actions .btn-shop-primary,
    .streamer-filter-actions .btn-shop-secondary {
        width: 100%;
    }
}

.sidebar-streamer-live-pill.is-offline {
    background: rgba(255, 70, 70, 0.15);
	border: 1px solid rgba(255, 70, 70, 0.2) !important;
    color: #ff6b6b;
}

.sidebar-streamer-live-pill.is-offline .live-dot {
    background: #ff4d4d;
	box-shadow: 0 0 0 4px rgba(255, 70, 70, 0.15) !important;
	
}

.checkout-payment-option--rich {
    display: block;
    padding: 12px 14px;
    margin-bottom: 10px;
    cursor: pointer;
}

.checkout-payment-option--rich:hover {
    border-color: #cbd5e1;
    background: #fafafa;
}

.checkout-payment-option--rich input {
    margin-right: 10px;
}

.checkout-payment-option-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    vertical-align: middle;
}

.checkout-payment-method-image {
    width: 42px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.checkout-payment-method-name {
    font-weight: 600;
}

/* ORDERS */
.orders-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.orders-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.orders-page-subtitle {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.orders-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
}

.orders-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.orders-loading,
.orders-error {
    border-radius: 18px;
    padding: 22px;
    background: rgba(16, 22, 36, 0.9);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.72);
}

.orders-empty-state {
    border-radius: 22px;
    padding: 34px 24px;
    background: rgba(16, 22, 36, 0.94);
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.orders-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(47,107,255,0.18) 0%, rgba(74,139,255,0.08) 100%);
    color: #6ea1ff;
}

.orders-empty-state h3 {
    margin: 0 0 8px;
    color: #fff;
}

.orders-empty-state p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.66);
}

.orders-summary-card {
   
    top: 90px;
    border-radius: 22px;
    padding: 20px;
    background: #0a0f18;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.orders-summary-card h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
}

.orders-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.orders-summary-row strong {
    color: #fff;
}

.orders-summary-row.total {
    border-bottom: 0;
    padding-bottom: 0;
}

.order-card {
    border-radius: 22px;
    overflow: hidden;
    background: #0a0f18;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.order-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.order-card-head-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-number {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.order-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.62);
    font-size: 13px;
}

.order-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.order-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.order-badge.status-paid,
.order-badge.payment-paid {
    background: rgba(28, 201, 120, 0.14);
    color: #59e49f;
    border-color: rgba(28, 201, 120, 0.24);
}

.order-badge.status-pending_payment,
.order-badge.payment-pending {
    background: rgba(255, 184, 77, 0.14);
    color: #ffc86b;
    border-color: rgba(255, 184, 77, 0.24);
}

.order-badge.status-queued {
    background: rgba(82, 173, 255, 0.14);
    color: #7dc4ff;
    border-color: rgba(82, 173, 255, 0.24);
}

.order-badge.status-completed {
    background: rgba(110, 144, 255, 0.14);
    color: #9db7ff;
    border-color: rgba(110, 144, 255, 0.24);
}

.order-badge.status-cancelled,
.order-badge.payment-failed,
.order-badge.status-refunded,
.order-badge.payment-refunded {
    background: rgba(255, 95, 95, 0.14);
    color: #ff8f8f;
    border-color: rgba(255, 95, 95, 0.24);
}

.order-total {
    text-align: right;
}

.order-total-label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.56);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.order-total strong {
    color: #fff;
    font-size: 22px;
}

.order-card-body {
    padding: 18px 20px 20px;
}

.order-streamer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
	margin-top: 20px;
}

.order-streamer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8fb3ff;
    font-weight: 700;
    text-decoration: none;
}

.order-streamer:hover {
    color: #b3cbff;
}

.order-provider {
    color: rgba(255,255,255,0.62);
    font-size: 13px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.order-item-image {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-item-info {
    min-width: 0;
}

.order-item-name {
    margin: 0 0 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.order-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.order-item-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(47,107,255,0.12);
    color: #8eb2ff;
    border: 1px solid rgba(47,107,255,0.2);
    font-weight: 700;
}

.order-item-qty,
.order-item-price {
    text-align: right;
}

.order-item-label {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.52);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.order-item-value {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .orders-layout {
        grid-template-columns: 1fr;
    }

    .orders-summary-card {
        position: static;
        top: auto;
    }
}

@media (max-width: 700px) {
    .order-item {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .order-item-qty,
    .order-item-price {
        text-align: left;
    }

    .order-card-head,
    .order-streamer-row {
        align-items: flex-start;
    }

    .order-total {
        text-align: left;
    }
}

.orders-filters-card {
    border-radius: 22px;
    padding: 18px;
background: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);
}

.orders-filters-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(160px, 1fr));
    gap: 14px;
}

.orders-filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.orders-filter-field label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.62);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.orders-filter-field select,
.orders-filter-field input {
    width: 100%;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(8, 13, 25, .72);
    color: #fff;
    padding: 0 14px;
    outline: none;
    font-size: 13px;
    transition: 0.2s ease;
}

.orders-filter-field select:focus,
.orders-filter-field input:focus {
    border-color: rgba(47,107,255,0.55);
    box-shadow: 0 0 0 4px rgba(47,107,255,0.12);
    background: rgba(255,255,255,0.06);
}

.orders-filter-field select option {
    background: #111827;
    color: #fff;
}

.orders-input-wrap {
    position: relative;
}

.orders-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.45);
    pointer-events: none;
}

.orders-input-wrap input {
    padding-left: 42px;
}

.order-card-toggle {
    width: 100%;
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.order-card-toggle:hover .order-card-head {
    background: rgba(255,255,255,0.015);
}

.order-card-head-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.order-expand-indicator {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.72);
    transition: 0.2s ease;
    flex-shrink: 0;
}

.order-card-toggle.is-open .order-expand-indicator i {
    transform: rotate(180deg);
}

.order-expand-indicator i {
    transition: transform 0.2s ease;
}

.order-collapse {
    display: none;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.order-collapse.is-open {
    display: block;
}

.order-streamer {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.order-streamer:hover {
    text-decoration: underline;
    color: #fff;
}

.order-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.order-badge.status-paid {
    background: rgba(28, 201, 120, 0.14);
    color: #59e49f;
    border-color: rgba(28, 201, 120, 0.24);
}

.order-badge.status-pending_payment {
    background: rgba(255, 184, 77, 0.14);
    color: #ffc86b;
    border-color: rgba(255, 184, 77, 0.24);
}

.order-badge.status-queued {
    background: rgba(82, 173, 255, 0.14);
    color: #7dc4ff;
    border-color: rgba(82, 173, 255, 0.24);
}

.order-badge.status-completed {
    background: rgba(110, 144, 255, 0.14);
    color: #9db7ff;
    border-color: rgba(110, 144, 255, 0.24);
}

.order-badge.status-cancelled,
.order-badge.status-refunded {
    background: rgba(255, 95, 95, 0.14);
    color: #ff8f8f;
    border-color: rgba(255, 95, 95, 0.24);
}

@media (max-width: 1100px) {
    .orders-filters-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .orders-filters-grid {
        grid-template-columns: 1fr;
    }

    .order-card-head-right {
        width: 100%;
        justify-content: space-between;
    }
}

.streamer-queue-username {
    font-size: 14px;
}

.streamer-queue-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.streamer-queue-card {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    transition: 0.2s ease;
}

.streamer-queue-card.is-live {
    border-color: rgba(34, 197, 94, 0.22);
}

.streamer-queue-card.is-queued {
    border-color: rgba(255, 255, 255, 0.06);
}

.streamer-queue-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.streamer-queue-user {
    min-width: 0;
    display: flex;
    align-items: center;
}

.streamer-queue-username {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-queue-card.is-mine .streamer-queue-username {
    color: #6ee7b7;
}

.streamer-queue-status {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.streamer-queue-status.is-live {
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.28);
}

.streamer-queue-status.is-queued {
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.22);
}

.streamer-queue-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.streamer-queue-card {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    min-height: 46px;
    transition: 0.2s ease;
}

.streamer-queue-card.is-live {
    border-color: rgba(34, 197, 94, 0.22);
}

.streamer-queue-card.is-queued {
    border-color: rgba(255, 255, 255, 0.06);
}

.streamer-queue-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 24px;
}

.streamer-queue-user {
    min-width: 0;
    display: flex;
    align-items: center;
}

.streamer-queue-username {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-queue-card.is-mine .streamer-queue-username {
    color: #6ee7b7;
}

.streamer-queue-status {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.streamer-queue-status.is-live {
    background: rgba(34, 197, 94, 0.14);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.28);
}

.streamer-queue-status.is-queued {
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.22);
}

/* STREAMER PROFILE */
.streamer-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.streamer-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76, 125, 255, 0.22), rgba(99, 214, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 10px 30px rgba(54, 109, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #9fd0ff;
    font-size: 16px;
}

.streamer-pulls-section {
    width: 100%;
}

.streamer-pulls-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.streamer-pull-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(16, 22, 38, 0.96), rgba(9, 13, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.streamer-pull-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 162, 255, 0.28);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(82, 133, 255, 0.08);
}

.streamer-pull-image-wrap {
    position: relative;
    padding: 12px 12px 0;
}

.streamer-pull-image {
    display: block;
    width: 100%;
    aspect-ratio: 0.72 / 1;
    object-fit: cover;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.streamer-pull-image-placeholder {
    width: 100%;
    aspect-ratio: 0.72 / 1;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    font-size: 26px;
}

.streamer-pull-price-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
    z-index: 2;
}

.streamer-pull-body {
    padding: 14px 14px 16px;
}

.streamer-pull-title {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
    color: #fff;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.streamer-pull-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.streamer-pull-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(220, 232, 255, 0.86);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-pull-chip.game {
	background: rgba(66, 133, 244, 0.16);
    color: #d9e7ff;
    border: 1px solid rgba(66, 133, 244, 0.22);
}


.streamer-pull-info-row {
    margin-bottom: 12px;
}

.streamer-pull-info {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #8eb8ff;
}

.streamer-pull-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    color: rgba(220, 232, 255, 0.72);
}

.streamer-pull-user,
.streamer-pull-time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.streamer-pulls-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.streamer-show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 16px;
    border: 1px solid rgba(101, 151, 255, 0.18);
    background: linear-gradient(180deg, rgba(20, 31, 54, 0.96), rgba(11, 18, 31, 0.96));
    color: #dce8ff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.streamer-show-more-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(101, 151, 255, 0.34);
    box-shadow:
        0 18px 32px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(90, 140, 255, 0.08);
}

.streamer-show-more-btn .btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(84, 131, 255, 0.12);
    color: #91bbff;
}

.streamer-show-more-btn .btn-count {
    color: rgba(220, 232, 255, 0.55);
}

/* Desktop default: show first row only until expanded */
@media (min-width: 1025px) {
    .streamer-pulls-section:not(.is-expanded) .streamer-pull-card:nth-child(n+7) {
        display: none;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .streamer-pulls-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .streamer-pulls-section:not(.is-expanded) .streamer-pull-card:nth-child(n+9) {
        display: none;
    }
}

/* Mobile: show 6 = 3 rows of 2 */
@media (max-width: 767px) {
    .streamer-pulls-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .streamer-pull-card {
        border-radius: 22px;
    }

    .streamer-pull-body {
        padding: 12px 12px 14px;
    }

    .streamer-pull-title {
        font-size: 13px;
        min-height: 34px;
    }

    .streamer-pulls-section:not(.is-expanded) .streamer-pull-card:nth-child(n+7) {
        display: none;
    }
}

.streamer-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.streamer-section-heading-icon {
    font-size: 22px;
    color: #fff;
    flex: 0 0 auto;
    filter: drop-shadow(0 6px 18px rgba(255, 122, 24, 0.28));
}

.streamer-section-heading h2 {
    margin: 0;
}

.streamer-section-heading p {
    margin: 4px 0 0;
}

.streamer-pull-body {
    padding: 14px 14px 16px;
}

.streamer-pull-title {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    color: #fff;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.streamer-pull-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
}

.streamer-pull-user,
.streamer-pull-time,
.streamer-pull-box-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(220, 232, 255, 0.72);
}

.streamer-pull-box-link {
    color: #8eb8ff;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.streamer-pull-box-link:hover {
    color: #bfd7ff;
}

.streamer-pull-box-link.is-static {
    color: #8eb8ff;
    pointer-events: none;
}

.streamer-pull-time {
    color: rgba(220, 232, 255, 0.58);
}
.streamer-queue-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.streamer-queue-card-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 82px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #101725 0%, #0c1320 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 10px 24px rgba(0,0,0,0.22);
    overflow: hidden;
}

.streamer-queue-card-v3.is-queued {
    border-color: rgba(255,255,255,0.08);
}

.streamer-queue-card-v3.is-live {
    background: linear-gradient(180deg, rgba(8, 37, 33, 0.96) 0%, rgba(7, 31, 28, 0.96) 100%);
    border-color: rgba(20, 178, 117, 0.65);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 0 0 1px rgba(20, 178, 117, 0.10),
        0 0 22px rgba(20, 178, 117, 0.10);
}

.streamer-queue-card-v3-main {
    min-width: 0;
    flex: 1;
}

.streamer-queue-card-v3-name {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 7px;
    color: #fff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-queue-card-v3.is-queued.is-mine .streamer-queue-card-v3-name {
    color: #58e08f !important;
}
.streamer-queue-card-v3.next.is-mine .streamer-queue-card-v3-name {
    color: #58e08f !important;
}

.streamer-queue-card-v3.live.is-mine .streamer-queue-card-v3-name {
    color: #58e08f !important;
}

.streamer-queue-card-v3-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.streamer-queue-card-v3-line {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(240, 246, 255, 0.92);
}

.streamer-queue-card-v3-line i {
    width: 14px;
    flex: 0 0 14px;
    text-align: center;
    color: rgba(255,255,255,0.72);
    font-size: 11px;
}

.streamer-queue-card-v3-line span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-queue-card-v3-side {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.streamer-queue-card-v3-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.streamer-queue-card-v3-status {
    min-width: 60px;
    height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

.streamer-queue-card-v3-status.is-live {
    background: rgba(40, 199, 111, 0.18);
    color: #7dffb0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.streamer-queue-card-v3-status.is-queued {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(234, 241, 255, 0.88);
}

.streamer-queue-card-v3-status.is-next {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(234, 241, 255, 0.88);
}

.queue-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.10);
    color: #edf3ff;
    background: rgba(255,255,255,0.05);
    white-space: nowrap;
}

.queue-pill.live {
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.20);
    color: #b9f5cb;
}

.queue-pill.next {
    color: #e8f0ff;
    border-color: rgba(79, 140, 255, 0.24);
    background: rgba(79, 140, 255, 0.14);
}

.streamer-queue-body {
    padding-top: 2px;
}

@media (max-width: 768px) {
    .streamer-queue-card-v3 {
        min-height: 76px;
        padding: 12px 14px;
    }

    .streamer-queue-card-v3-name {
        font-size: 15px;
    }

    .streamer-queue-card-v3-line {
        font-size: 12px;
    }

    .streamer-queue-card-v3-status {
        min-width: 74px;
        height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }
}

.streamer-panel-head-with-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.streamer-queue-count-card {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(38, 61, 122, 0.34) 0%, rgba(17, 28, 63, 0.52) 100%);
    border: 1px solid rgba(89, 119, 214, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 8px 20px rgba(0, 0, 0, 0.22);
}

.streamer-queue-count-number {
    display: block;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    color: #f4f7ff;
    margin-bottom: 4px;
}

.streamer-queue-count-label {
    display: block;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(220, 230, 255, 0.78);
}

@media (max-width: 768px) {
    .streamer-queue-count-card {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        border-radius: 14px;
    }

    .streamer-queue-count-number {
        font-size: 15px;
    }

    .streamer-queue-count-label {
        font-size: 8px;
    }
}

.streamer-profile-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
    align-items: stretch;
}

.streamer-profile-top-grid > .streamer-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.streamer-profile-top-grid > .streamer-panel .streamer-panel-body,
.streamer-profile-top-grid > .streamer-panel .streamer-stream-wrap {
    flex: 1;
}

.streamer-stream-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.streamer-stream-frame {
    flex: 1;
    min-height: 100%;
}

.streamer-stream-frame iframe,
.streamer-stream-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
}

.streamer-queue-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.streamer-queue-list-compact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1200px) {
    .streamer-profile-top-grid {
        grid-template-columns: 1fr;
    }
}

.streamer-stream-frame {
    flex: 1;
    min-height: 100%;
    display: flex;
}

.streamer-stream-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 18px;
}

.streamer-stream-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.streamer-profile-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 20px;
    align-items: stretch;
}

.streamer-profile-top-grid > .streamer-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

#streamerQueueWrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.streamer-queue-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.streamer-stream-wrap {
    display: flex;
    flex: 1;
    min-height: 0;
}

.streamer-stream-frame {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* COLLECTION */



.streamer-pulls-panel-body {
    padding: 0;
    overflow: hidden;
}

.streamer-loading-state {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #9fb0d8;
    font-weight: 600;
}

.streamer-pulls-slider-section {
    width: 100%;
}

.streamer-pulls-slider-wrap {
    width: 100%;
    overflow: hidden;
	padding: 10px;
}

.streamer-pull-slider-body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.streamer-pull-slider-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

.streamer-pull-chip {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.streamer-pull-slider-title {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.01em;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-pull-slider-title-wrap {
  overflow: hidden;
}

.streamer-pull-slider-title-link {
    text-decoration: none;
    color: inherit;
}

.streamer-pull-slider-title {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.streamer-pull-slider-series {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.streamer-pulls-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 8px 2px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

.streamer-pulls-slider::-webkit-scrollbar {
    display: none;
}

.streamer-pulls-nav {
    display: none !important;
}



.streamer-pull-slider-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 18px 34px rgba(0, 0, 0, 0.28);
}

.streamer-pull-slider-image-wrap {
    position: relative;
   
}

.streamer-pull-slider-image {
    display: block;
    width: 70%;
    object-fit: contain;
    margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

.streamer-pull-slider-image-placeholder {
    width: 70%;
    aspect-ratio: 0.72 / 1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    color: #8092ba;
    font-size: 24px;
}

.streamer-pull-slider-time-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(17, 23, 35, 0.78);
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
    z-index: 2;
}

.streamer-pull-slider-body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1; /* 🔥 important */
	
}

.streamer-pull-slider-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

.streamer-pull-chip {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.streamer-pull-chip-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
}

.streamer-pull-slider-title-link {
    text-decoration: none;
    color: inherit;
}

.streamer-pull-slider-title {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.01em;
    min-height: 36px;
}

.streamer-pull-slider-footer {
  margin-top: auto; /* 🔥 this does the magic */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.streamer-pull-slider-price {
    order: 1;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
    line-height: 1;
}

.streamer-pull-slider-user {
    order: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.streamer-pull-slider-user span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.streamer-pull-slider-user:hover {
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.84);
}

.streamer-pulls-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 8px 2px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

.streamer-pulls-slider::-webkit-scrollbar {
    display: none;
}

.streamer-pull-slider-card {
    position: relative;
    flex: 0 0 215px;
    width: 215px;
    min-width: 215px;
    max-width: 215px;
    min-height: 100%;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    scroll-snap-align: start;
	border: 1px solid var(--border);
}



@media (max-width: 640px) {
    .streamer-pulls-slider {
        gap: 12px;
        padding: 6px 0 8px;
    }

    .streamer-pull-slider-card {
        flex: 0 0 150px;
        width: 150px;
        min-width: 150px;
        max-width: 150px;
        border-radius: 22px;
    }

    .streamer-pull-slider-image-wrap {
        padding: 12px 12px 0;
    }

    .streamer-pull-slider-body {
        padding: 12px 14px 16px;
        gap: 10px;
    }

    .streamer-pull-slider-title {
        font-size: 14px;
        min-height: auto;
    }

    .streamer-pull-slider-time-badge {
        top: 10px;
        right: 10px;
    }
}

.streamer-profile-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
    gap: 24px;
    align-items: start;
}

.streamer-stream-wrap {
    width: 100%;
}

.streamer-stream-frame {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #0f1116;
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

.streamer-stream-frame iframe,
.streamer-stream-frame .streamer-stream-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.streamer-stream-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 900px) {
    .streamer-profile-top-grid {
        grid-template-columns: 1fr;
    }

    .streamer-stream-frame {
        aspect-ratio: 16 / 9;
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .streamer-stream-frame {
        min-height: 180px;
        border-radius: 12px;
    }
}

.streamer-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap; /* prevents breaking on mobile */
}

.streamer-name {
    display: inline-block;
}

/* tighten badge alignment */
.sidebar-streamer-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 26px; /* force consistent height */
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.sidebar-streamer-live-pill {
    transform: translateY(1px); /* tiny optical alignment fix */
}

.pack-hero-points {
    margin-top: 10px;
}

.pack-chip-points {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 145, 77, 0.20);
    border: 1px solid rgba(255, 163, 102, 0.30);
    color: orange;
    font-size: 12px;
    font-weight: 700;
}

/* Divider */
.streamer-pull-slider-divider {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.08);
    margin: 10px 0 8px;
}

/* Box button */
.streamer-pull-slider-box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 100%;
    padding: 6px 10px;

    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
	min-height: 45px;

    background: rgba(255,255,255,0.05);
    border-radius-bottom-left: 8px;
	border-radius-bottom-right: 8px;

    text-decoration: none;
    transition: all 0.15s ease;
	margin-top: 50px;
	padding-bottom: 15px;

}

/* Hover */
.streamer-pull-slider-box-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Icon */
.streamer-pull-slider-box-btn i {
    font-size: 12px;
    opacity: 0.8;
}
.streamer-pulls-slider-wrap {
    position: relative;
}

.streamer-pulls-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px;
}

/* Hide scrollbar (optional clean look) */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Show arrows on hover */
.streamer-pulls-slider-wrap:hover .slider-arrow {
    opacity: 1;
    pointer-events: all;
}

.slider-arrow.left {
    left: -10px;
}

.slider-arrow.right {
    right: -10px;
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.85);
}

.orders-filters-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.orders-filters-toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.orders-filters-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.orders-filters-toggle.is-open .orders-filters-toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .orders-filters-card {
        padding: 0;
        background: transparent;
        border: 0;
    }

    .orders-filters-toggle {
        display: flex;
    }

    .orders-filters-grid {
        display: none;
        margin-top: 12px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 14px;
        background: rgba(255,255,255,0.03);
    }

    .orders-filters-grid.is-open {
        display: grid;
    }
}

.status-modal[hidden] {
    display: none !important;
}

.status-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.status-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

.status-modal__dialog {
    position: relative;
    width: min(460px, calc(100% - 24px));
    margin: 10vh auto 0;
    color: #fff;
    background: #0a0f18;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    padding: 24px;
    z-index: 2;
}

.status-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.18s ease, transform 0.18s ease;
}

.status-modal__icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 24px;
}

.status-modal__icon--success {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.status-modal__icon--error {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

.status-modal__dialog h3 {
    margin: 0 0 10px;
    font-size: 1.17em;
    font-weight: bold;
}

.status-modal__dialog p {
    margin: 0;
    line-height: 1.4;
	margin-top: 10px;
	color: #fff;
	opacity: 0.9;
}

.buyback-status-row span.front { font-weight: normal; opacity: 0.6; font-size: 14px; }

.status-modal__meta {
    margin-top: 14px;
    color: #9ca3af;
    font-size: 14px;
}

.status-modal__actions {
    margin-top: 22px;
    display: flex;
    justify-content: flex-end;
}

.status-modal__button {
    min-width: 120px;
    height: 48px;
    border: 0;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: #2563eb;
	font-size: 14px;
}

body.modal-open {
    overflow: hidden;
}

/* APPLY STREAMER */
.streamer-apply-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.streamer-apply-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 280px;

    background:
        radial-gradient(circle at 20% 30%, rgba(45,140,255,0.45), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(70,163,255,0.35), transparent 45%),
        linear-gradient(135deg, #1d4ed8 0%, #2563eb 40%, #3b82f6 100%);


}

.streamer-apply-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(61,100,245,.18) 0%, rgba(124,58,237,.14) 40%, rgba(255,138,45,.10) 100%);
    pointer-events: none;
}

.streamer-apply-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,15,30,.85) 0%, rgba(8,15,30,.55) 50%, rgba(8,15,30,.85) 100%),
        linear-gradient(180deg, rgba(8,15,30,.25) 0%, rgba(8,15,30,.65) 100%);
}

.streamer-apply-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(59,130,246,0.25), transparent 60%);
    pointer-events: none;
}

.streamer-apply-hero-content {
    position: relative;
    z-index: 2;
    min-height: 280px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
    gap: 22px;
    align-items: center;
}

.streamer-apply-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
	margin-top: -10px;
}

.streamer-apply-hero-copy h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.streamer-apply-hero-copy p {
    margin: 0;
    max-width: 720px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
	font-size: 14px;
}

.streamer-apply-hero-copy p strong {
    color: #fff;
}

.streamer-apply-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.streamer-apply-pill-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.streamer-apply-hero-card,
.streamer-apply-form-card,
.streamer-apply-how {
background: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);
    border-radius: 18px;
}

.streamer-apply-hero-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.streamer-apply-stat {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
}

.streamer-apply-stat small {
    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,.56);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.streamer-apply-stat strong {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.streamer-apply-how,
.streamer-apply-form-card {
    padding: 20px;
}

.streamer-apply-section-head {
    margin-bottom: 18px;
}

.streamer-apply-section-head h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.streamer-apply-section-head p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.5;
}



.streamer-apply-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.streamer-apply-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.streamer-apply-field-full {
    grid-column: span 2;
}

.streamer-apply-field label,
.streamer-apply-check span {
    color: rgba(255,255,255,.64);
    font-size: 12px;
    font-weight: 700;
	text-transform: uppercase;
}

.streamer-apply-field input,
.streamer-apply-field select,
.streamer-apply-field textarea,
.streamer-apply-check select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(8,13,25,.72);
    color: #fff;
    padding: 0 12px;
    outline: none;
    font-size: 13px !important;

}

.streamer-apply-field input,
.streamer-apply-field select,
.streamer-apply-check select {
    height: 40px;

}

.streamer-apply-field textarea {
    min-height: 110px;
    padding: 12px;
    resize: vertical;
}

.streamer-apply-field input:focus,
.streamer-apply-field select:focus,
.streamer-apply-field textarea:focus,
.streamer-apply-check select:focus {
    border-color: rgba(75, 145, 255, .48);
    background: rgba(255,255,255,.05);

}

.streamer-apply-success-card {
    max-width: 640px;
    margin: 40px auto;
    padding: 36px 32px;
    border-radius: 20px;
    background: linear-gradient(180deg, #111c31 0%, #0d1729 100%);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.streamer-apply-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(83, 209, 139, 0.15);
    color: #53d18b;
    font-size: 28px;
}

.streamer-apply-success-card h2 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #ffffff;
}

.streamer-apply-success-card p {
    color: #b7c3dc;
    font-size: 15px;
    line-height: 1.7;
}

.streamer-apply-success-info {
    margin-top: 18px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(47,107,255,0.08);
    border: 1px solid rgba(47,107,255,0.2);
    text-align: left;
}

.streamer-apply-success-actions {
    margin-top: 24px;
}



.streamer-apply-field select option {
    background: #262b33;
    color: #fff;
}

.streamer-apply-check-grid {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.streamer-apply-check {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}

.streamer-apply-submit-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.streamer-apply-submit-note {
    color: rgba(255,255,255,.56);
    font-size: 13px;
    line-height: 1.5;
}

.streamer-apply-submit-btn {
    min-width: 210px;
    height: 44px;
}

.streamer-apply-alert {
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 14px;
}

.streamer-apply-alert strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.streamer-apply-alert ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,.82);
}

.streamer-apply-alert-error {
    background: rgba(180, 52, 52, 0.14);
    border: 1px solid rgba(180, 52, 52, 0.28);
}

@media (max-width: 1100px) {
    .streamer-apply-hero-content,
    .streamer-apply-steps,
    .streamer-apply-form-grid,
    .streamer-apply-check-grid {
        grid-template-columns: 1fr;
    }

    .streamer-apply-field-full,
    .streamer-apply-check-grid {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .streamer-apply-hero-content,
    .streamer-apply-how,
    .streamer-apply-form-card {
        padding: 16px;
    }

    .streamer-apply-hero-copy h1 {
        font-size: 30px;
    }

    .streamer-apply-submit-btn {
        width: 100%;
    }
}

.streamer-apply-hero-media img {
    max-width: 420px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
@media (max-width: 900px) {
    .streamer-apply-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .streamer-apply-hero-media {
        width: 100%;
        justify-content: center;
    }

    .streamer-apply-hero-media img {
        max-width: 100%;
    }
}

.global-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(420px, calc(100vw - 24px));
    pointer-events: none;
}

.global-toast {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(13, 23, 41, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.global-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.global-toast__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.global-toast__content {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.global-toast__message {
    color: #d8e1f2;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.global-toast__close {
    background: transparent;
    border: 0;
    color: #8ea0c2;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.global-toast__close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.global-toast--success .global-toast__icon {
    background: rgba(51, 186, 118, 0.16);
    color: #53d18b;
}

.global-toast--error .global-toast__icon {
    background: rgba(255, 82, 82, 0.16);
    color: #ff6b6b;
}

.global-toast--warning .global-toast__icon {
    background: rgba(255, 184, 77, 0.16);
    color: #ffbf5a;
}

.global-toast--info .global-toast__icon {
    background: rgba(47, 107, 255, 0.16);
    color: #69a7ff;
}

@media (max-width: 768px) {
    .global-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .global-toast {
        border-radius: 14px;
        padding: 13px 14px;
    }
}

.streamer-apply-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.streamer-apply-submit-note {
    flex: 1;
    min-width: 240px;
    color: #8ea0c2;
    font-size: 14px;
    line-height: 1.6;
}

.streamer-apply-submit-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 45px;
    padding: 0 24px;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 800 !important;
    font-size: 14px !important;
    line-height: 1;
    white-space: nowrap;
    color: #ffffff !important;
    background: linear-gradient(135deg, #4f8cff 0%, #2f6bff 100%) !important;
    box-shadow: 0 12px 24px rgba(47, 107, 255, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.streamer-apply-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(47, 107, 255, 0.34);
    color: #ffffff !important;
}

.streamer-apply-submit-btn:active {
    transform: translateY(0);
}

.streamer-apply-submit-btn:focus-visible {
    box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.22), 0 16px 30px rgba(47, 107, 255, 0.34);
}

.streamer-apply-submit-btn i {
    font-size: 14px;
    color: #ffffff;
}

.streamer-apply-form-card button,
.streamer-apply-form-card input,
.streamer-apply-form-card select,
.streamer-apply-form-card textarea {
    font: inherit;
}

.streamer-apply-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.streamer-apply-step {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}

.streamer-apply-step-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.streamer-apply-step-head span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2d8cff 0%, #6b7dff 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

.streamer-apply-step-head h3 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.streamer-apply-step p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.5;
}

/* Divider */
.streamer-pull-slider-divider {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.08);
    margin: 10px 0 8px;
}

/* Box button */
.streamer-pull-slider-box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 45px;
    margin-top: auto;
    padding: 12px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255,255,255,0.05);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-decoration: none;
    transition: all 0.15s ease;
}

/* CHATBOX */
.streamer-profile-page {
    position: relative;
}

.streamer-chatbox {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 360px;
    max-width: calc(100vw - 24px);
    height: 420px;
    display: flex;
    flex-direction: column;
    z-index: 1200;
    border-radius: 22px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(16,22,40,.94) 0%, rgba(11,16,30,.96) 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.streamer-chatbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.streamer-chatbox-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.streamer-chatbox-status-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, .12);
    flex: 0 0 auto;
}

.streamer-chatbox-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,.58);
    margin-top: 2px;
}

.streamer-chatbox-toggle {
    border: 0;
    background: rgba(255,255,255,.06);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    cursor: pointer;
    transition: .18s ease;
}

.streamer-chatbox-toggle:hover {
    background: rgba(255,255,255,.12);
}

.streamer-chatbox-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.streamer-chatbox.collapsed {
    height: 64px;
}

.streamer-chatbox.collapsed .streamer-chatbox-body {
    display: none;
}

.streamer-chatbox-messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.streamer-chatbox-empty {
    margin: auto;
    text-align: center;
    color: rgba(255,255,255,.5);
    font-size: 13px;
}

.streamer-chat-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.streamer-chat-msg-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.streamer-chat-msg-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.streamer-chat-msg-bubble {
    max-width: calc(100% - 44px);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 16px;
    padding: 10px 12px;
}

.streamer-chat-msg-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.streamer-chat-msg-user {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.streamer-chat-msg-time {
    font-size: 11px;
    color: rgba(255,255,255,.42);
}

.streamer-chat-msg-text {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255,255,255,.92);
    word-break: break-word;
    white-space: pre-wrap;
}

.streamer-chatbox-form {
    position: relative;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 12px;
    background: rgba(255,255,255,.02);
}

.streamer-chatbox-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.streamer-chatbox-emoji-btn,
.streamer-chatbox-send {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255,255,255,.08);
    transition: .18s ease;
}

.streamer-chatbox-emoji-btn:hover,
.streamer-chatbox-send:hover {
    background: rgba(255,255,255,.14);
}

.streamer-chatbox-input {
    flex: 1;
    min-width: 0;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.06);
    color: #fff;
    padding: 0 14px;
    outline: none;
}

.streamer-chatbox-input::placeholder {
    color: rgba(255,255,255,.42);
}

.streamer-chatbox-input:focus {
    border-color: rgba(79,140,255,.65);
    box-shadow: 0 0 0 3px rgba(79,140,255,.12);
}

.streamer-chatbox-login-note {
    font-size: 12px;
    margin-top: 8px;
    color: rgba(255,255,255,.56);
}

.streamer-chatbox-login-note a {
    color: #7db4ff;
    text-decoration: none;
}

.streamer-chatbox-emoji-picker {
    display: none;
    position: absolute;
    left: 12px;
    bottom: 62px;
    width: 220px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(13,18,32,.98);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 50px rgba(0,0,0,.38);
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.streamer-chatbox-emoji-picker.is-open {
    display: grid;
}

.streamer-chatbox-emoji-picker button {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,.06);
    font-size: 20px;
}

.streamer-chatbox-emoji-picker button:hover {
    background: rgba(255,255,255,.12);
}

@media (max-width: 900px) {
    .streamer-chatbox {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: auto;
        height: 420px;
        max-width: none;
    }
}

.streamer-chat-msg.is-system .streamer-chat-msg-bubble {
    
}

.streamer-chat-msg.is-purchase .streamer-chat-msg-bubble {

}

.streamer-chat-msg.is-pull .streamer-chat-msg-bubble {

}

.streamer-chat-event-text {

    color: #9cdbff;
}

.streamer-chat-msg-media {
    margin-top: 10px;
}

.streamer-chat-msg-media img {
    display: block;
    width: 68px;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
}

.streamer-chat-inline-link {
   
    text-decoration: none;
}

.streamer-chat-inline-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.streamer-chat-msg-body {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.streamer-chat-msg-content {
    min-width: 0;
    flex: 1;
}

.streamer-chat-event-thumb {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    margin-top: 2px;
}

.streamer-chat-event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.streamer-pull-slider-image-wrap.is-pack-item {
    background: #1b2028;
    margin: 14px;
    border-radius: 14px;
	padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streamer-pull-slider-image.is-pack-item {
    width: 80%;
    height: 80%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.streamer-pull-slider-card {
    position: relative;
}

.streamer-pull-slider-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.streamer-pull-slider-image {
    display: block;
    width: 70%;
    height: auto;
}

.streamer-pull-slider-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    padding: 12px;
    background: linear-gradient(to top, rgba(7, 12, 24, 0.92) 0%, rgba(7, 12, 24, 0.55) 45%, rgba(7, 12, 24, 0.08) 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.streamer-pull-slider-card:hover .streamer-pull-slider-hover,
.streamer-pull-slider-image-link:hover .streamer-pull-slider-hover {
    opacity: 1;
    visibility: visible;
}

.streamer-pull-slider-hover-name {
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.streamer-pull-slider-hover-serie {
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.streamer-pull-slider-hover-price {
    font-size: 14px;
    font-weight: 800;
    color: #7df7c5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pack-card-item {
    position: relative;
}

.pack-card-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}



/* HOVER LAYER */
.pack-card-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    gap: 6px;

    background: linear-gradient(
        to top,
        rgba(7, 12, 24, 0.95) 0%,
        rgba(7, 12, 24, 0.6) 45%,
        rgba(7, 12, 24, 0.05) 100%
    );

    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

/* SHOW ON HOVER */
.pack-card-item:hover .pack-card-hover {
    opacity: 1;
    visibility: visible;
}

/* NAME */
.pack-card-hover-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* FOOTER */
.pack-card-hover-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PRICE */
.pack-card-hover-value {
    font-size: 14px;
    font-weight: 800;
    color: #7df7c5;
}

/* ODDS */
.pack-card-hover-odds {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.streamers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.streamer-card {
    flex: 0 0 calc(16.666% - 15px);
    max-width: calc(16.666% - 15px);
}

@media (max-width: 1400px) {
    .streamer-card {
        flex: 0 0 calc(20% - 15px); /* 5 per row */
        max-width: calc(20% - 15px);
    }
}

@media (max-width: 1200px) {
    .streamer-card {
        flex: 0 0 calc(25% - 14px); /* 4 per row */
        max-width: calc(25% - 14px);
    }
}

@media (max-width: 900px) {
    .streamer-card {
        flex: 0 0 calc(33.333% - 12px); /* 3 per row */
        max-width: calc(33.333% - 12px);
    }
}

@media (max-width: 640px) {
    .streamer-card {
        flex: 0 0 calc(50% - 10px); /* 2 per row */
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .streamer-card {
        flex: 0 0 100%; /* 1 per row */
        max-width: 100%;
    }
}

.shop-pack-image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    background: #121722;
}

.shop-pack-hover-tags-wrap {
    position: absolute;
    inset: auto 10px 10px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
	z-index: 50;
}

.shop-pack-card:hover .shop-pack-hover-tags-wrap,
.shop-pack-card:focus-within .shop-pack-hover-tags-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shop-pack-hover-tag {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: rgba(7, 12, 24, 0.78);
    backdrop-filter: blur(8px);
}

.shop-pack-hover-tag.featured {
    background: rgba(255, 196, 87, 0.18);
    color: #ffd36d;
}

.shop-pack-hover-tag.hunt {
    background: rgba(255, 92, 92, 0.18);
    color: #ff8b8b;
}

.pack-side-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.pack-side-toggle span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.pack-side-toggle i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.pack-side-collapsible .pack-side-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, margin-top 0.2s ease;
    margin-top: 0;
}

.pack-side-collapsible.is-open .pack-side-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
}

.pack-side-collapsible.is-open .pack-side-toggle i {
    transform: rotate(180deg);
}

.pack-side-card {
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);
}

.pack-side-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.pack-side-toggle span {
    font-size: 16px;
    font-weight: 800;
}

.pack-side-toggle i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.pack-side-content {
    margin-top: 14px;
}

.pack-side-card.is-closed .pack-side-content {
    display: none;
}

.pack-side-card.is-closed .pack-side-toggle i {
    transform: rotate(-180deg);
}

.pack-odds-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pack-odds-item {
    border-radius: 10px;
    padding: 12px 12px 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.pack-odds-range {
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    margin-bottom: 4px;
}

.pack-odds-percent {
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.pack-odds-note {
    margin: 14px 0 0;
    font-size: 10px;
    line-height: 1.5;
    color: rgba(255,255,255,0.58);
}

.pack-odds-note a {
    color: rgba(255,255,255,0.82);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .pack-odds-grid {
        grid-template-columns: 1fr;
    }

    .pack-odds-percent {
        font-size: 14px;
    }
}

.pack-odds-item.is-tier-1 {
    background: rgba(103, 137, 98, 0.22);
}

.pack-odds-item.is-tier-2 {
    background: rgba(126, 158, 90, 0.24);
}

.pack-odds-item.is-tier-3 {
    background: rgba(44, 115, 132, 0.30);
}

.pack-odds-item.is-tier-4 {
    background: rgba(111, 96, 36, 0.26);
}

.pack-odds-item.is-tier-5 {
    background: rgba(121, 73, 30, 0.26);
}
/* =========================================
   QUICK CHECKOUT MODAL
========================================= */
.quick-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.2s ease;
}
.quick-checkout-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quick-checkout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 18, 0.78);
    backdrop-filter: blur(6px);
}

.quick-checkout-dialog {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    margin: 16px auto;
    background: #0a0f18;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.quick-checkout-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.18s ease, transform 0.18s ease;
}

.quick-checkout-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.04);
}

.quick-checkout-body {
    padding: 28px;
    max-height: calc(100vh - 32px);
    overflow: auto;
}

.quick-checkout-loading {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8c2e0;
    font-weight: 700;
    font-size: 15px;
}

/* =========================================
   CHECKOUT LAYOUT
========================================= */
.checkout-layout-universal {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 360px;
    gap: 22px;
    align-items: start;
}

.checkout-layout-universal.is-modal {
    margin-top: 8px;
}

.checkout-main,
.checkout-sidebar {
    min-width: 0;
}

.checkout-card,
.checkout-summary-card {
    background: #0a0f18;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: none;
}

.checkout-card + .checkout-card {
    margin-top: 14px;
}

.checkout-card-head,
.checkout-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
	margin: 10px;
	padding-bottom: 10px; 
}

.checkout-card-head h3,
.checkout-summary-head h3 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.checkout-summary-head span {
    color: #a8b3d1;
    font-size: 12px;
    font-weight: 600;
}


.checkout-universal-error {
    margin-bottom: 16px;
}

/* =========================================
   DETAILS TOGGLE
========================================= */
.checkout-details-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.checkout-details-toggle i {
    color: #94a3c7;
    transition: transform 0.2s ease;
}

.checkout-details-toggle.is-open i,
.checkout-details-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.checkout-details-panel {
    display: none;
    border-top: 1px solid var(--border);
}

.checkout-details-panel.is-open {
    display: block;
}

/* =========================================
   FORM GRID
========================================= */
.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-form-grid .form-group.full {
    grid-column: 1 / -1;
}

.checkout-form-grid .form-group label,
.checkout-promo-box label {
    display: block;
    margin-bottom: 7px;
    color: #dbe4ff;
    font-size: 13px;
    font-weight: 600;
}

.checkout-form-grid input,
.checkout-form-grid select,
.checkout-promo-row input {
    width: 100%;
    height: 40px;
    border: 1px solid var(--border);
    background: #0c121d;
    color: #fff;
    border-radius: 12px;
    padding: 0 14px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
	font-size: 14px; 
}

.checkout-form-grid input:focus,
.checkout-form-grid select:focus,
.checkout-promo-row input:focus {
    border-color: rgba(75, 110, 255, 0.85);
    box-shadow: 0 0 0 3px rgba(75, 110, 255, 0.12);
}

.checkout-form-grid input:disabled {
    color: #8fa0ca;
    background: #101722;
    cursor: not-allowed;
}

.checkout-form-grid select {
    appearance: none;
}

/* =========================================
   PAYMENT METHODS
========================================= */
.checkout-payment-methods--list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: -4px 0;
}

.checkout-payment-option {
    display: block;
    cursor: pointer;
}

.checkout-payment-option + .checkout-payment-option {
   
}

.checkout-payment-option input[type="radio"] {
    display: none;
}

.checkout-payment-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    transition: none;
}

.checkout-payment-option:hover .checkout-payment-option-content {
    border: 0;
    transform: none;
    background: transparent;
}

.checkout-payment-option input[type="radio"]:checked + .checkout-payment-option-content {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.checkout-payment-option-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 0 0;
}

.checkout-card-body-total { 
	padding: 16px;
}



.checkout-payment-method-image {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    padding: 3px;
}

.checkout-payment-method-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    flex: 0 0 28px;
    font-size: 12px;
}

.checkout-payment-method-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.checkout-payment-method-extra,
.checkout-payment-method-balance {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================
   AGREEMENTS
========================================= */
.checkout-agreements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.checkout-agreement-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d8e2ff;
    font-size: 14px;
    line-height: 1.45;
}

.checkout-agreement-row input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #2d8cff;
    flex: 0 0 16px;
}

.checkout-agreement-row a {
    color: #7aa2ff;
    text-decoration: none;
}

.checkout-agreement-row a:hover {
    text-decoration: underline;
}

/* =========================================
   SUMMARY
========================================= */
.checkout-summary-card {
 
    top: 18px;
}

.cart-summary-row.subtotal, .cart-summary-row.shipping, .cart-summary-row.fee,  .cart-summary-row.total { padding: 5px; border-top: 0px; font-size: 12px; }
.cart-summary-row.subtotal span, .cart-summary-row.shipping span, .cart-summary-row.fee span,  .cart-summary-row.total span { opacity: 0.5; }
.cart-summary-row.subtotal strong, .cart-summary-row.shipping strong, .cart-summary-row.fee strong { font-weight: lighter; opacity: 0.8 }
.checkout-streamer-block:first-of-type {
    border-top: 0;
}

.checkout-streamer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.checkout-streamer-head strong {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.checkout-streamer-head span {
    color: #dbe4ff;
    font-size: 13px;
    font-weight: 600;
}

.checkout-streamer-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.checkout-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.checkout-item-thumb {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: #101722;
    flex: 0 0 48px;
    border: 1px solid var(--border);
}

.checkout-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkout-item-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
}

.checkout-item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.checkout-item-qty {
    color: #9fb0d8;
    font-size: 12px;
    font-weight: 600;
}

.checkout-item-right {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================
   BADGES
========================================= */
.cart-item-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.08);
    color: #dfe7ff;
}

.cart-item-badge.pack {
    background: rgba(79, 120, 255, 0.16);
    color: #8fb0ff;
}

.cart-item-badge.sealed {
    background: rgba(0, 196, 140, 0.16);
    color: #64e0b7;
}

.cart-item-badge.slab {
    background: rgba(255, 161, 22, 0.16);
    color: #ffbf68;
}

.cart-item-badge.marketplace {
    background: rgba(176, 96, 255, 0.16);
    color: #c7a1ff;
}

.cart-item-badge.shop {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5ff;
}

/* =========================================
   PROMO
========================================= */
.checkout-promo-box {
    margin-top: 20px; 
}

.cart-summary-row .points { color : orange; } 

.checkout-promo-row {
    display: flex;
    gap: 10px;
}

.checkout-promo-row input {
    min-width: 0;
}

.checkout-promo-apply {
    height: 40px;
    padding: 0 16px;
    border: 0px solid var(--border);
    border-radius: 12px;
    background: #111827;
    color: grey;
    font-weight: 700;
    cursor: not-allowed;
    white-space: nowrap;
	font-size: 14px;
}

/* =========================================
   TOTAL ROWS
========================================= */
.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #fff;
    font-size: 13px;
}

.totals .cart-summary-row {
	padding-left: 0px !important; 
}

.cart-summary-row strong {
    font-weight: 700;
}



/* =========================================
   CHECKBOX AREA ABOVE PAY
========================================= */
.checkout-agreements-plain {
    margin-top: 16px;
    margin-bottom: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================
   BUTTONS / EMPTY / ERROR
========================================= */
.cart-checkout-btn {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    margin-top: 0;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    background: linear-gradient(135deg, #2d8cff 0%, #46a3ff 100%);
    color: #fff;
    box-shadow: none;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.cart-checkout-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.cart-checkout-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.cart-error {
    border-radius: 14px;
    border: 1px solid rgba(255, 107, 107, 0.24);
    background: rgba(255, 75, 75, 0.08);
    color: #ffb9b9;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
}

.cart-empty-state {
    padding: 42px 22px;
    text-align: center;
    background: #0a0f18;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.cart-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 24px;
}

.cart-empty-state h3 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 22px;
}

.cart-empty-state p {
    color: #9fb0d8;
    margin: 0 0 18px;
}

.btn-shop-primary {
    text-decoration: none;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
    .checkout-layout-universal {
        grid-template-columns: minmax(0, 1fr);
    }

    .checkout-summary-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .quick-checkout-dialog {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        border: 0;
    }

    .quick-checkout-body {
        padding: 18px;
        max-height: 100vh;
    }

    .quick-checkout-close {
        top: 12px;
        right: 12px;
    }

    .checkout-card-head,
    .checkout-summary-head,
    .checkout-details-toggle,
    .checkout-card-body,
    .checkout-streamer-block,
    .checkout-promo-box,
    .cart-summary-row {
        padding-left: 16px;
        padding-right: 16px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-form-grid .form-group.full {
        grid-column: auto;
    }

    .checkout-item-row {
        align-items: flex-start;
    }

    .checkout-item-thumb {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .cart-checkout-btn {
        min-height: 52px;
        font-size: 14px;
    }
}

.checkout-payment-methods--list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
	margin-top: -20px !important;
}

.checkout-payment-option {
    display: block;
    cursor: pointer;
}

.checkout-payment-option + .checkout-payment-option {
    border-top: 1px solid var(--border);
}

.checkout-payment-option input[type="radio"] {
    display: none;
}

.checkout-payment-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.checkout-card-body {  padding-left: 16px;
        padding-right: 16px; }

.checkout-payment-option:hover .checkout-payment-option-content,
.checkout-payment-option input[type="radio"]:checked + .checkout-payment-option-content {
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
}

.checkout-payment-option-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
    flex: 1;
}



.checkout-payment-method-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.checkout-payment-method-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
    margin-left: auto;
}

.checkout-payment-method-image {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2px;
}

.checkout-payment-method-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 12px;
    flex: 0 0 28px;
}

.checkout-summary-head { margin: 0px !important; }

.checkout-payment-method-balance {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}
.checkout-payment-methods--list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.checkout-payment-option {
    display: block;
    cursor: pointer;
}

.checkout-payment-option:not(:last-child) {
 
}

.checkout-payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-payment-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 40px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.checkout-payment-option:hover .checkout-payment-option-content,
.checkout-payment-option input[type="radio"]:checked + .checkout-payment-option-content {
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
}

.checkout-payment-option-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.checkout-payment-radio {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #d7deee;
    box-sizing: border-box;
    flex: 0 0 18px;
    position: relative;
}

.checkout-payment-option input[type="radio"]:checked + .checkout-payment-option-content .checkout-payment-radio {
    border-color: #2d8cff;
}

.checkout-payment-option input[type="radio"]:checked + .checkout-payment-option-content .checkout-payment-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background: #2d8cff;
}

.checkout-payment-method-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2px;
    flex: 0 0 24px;
}

.checkout-payment-method-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 11px;
    flex: 0 0 24px;
}

.checkout-payment-method-name {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.checkout-payment-method-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
    margin-left: auto;
}

.checkout-payment-method-balance {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.checkout-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 360px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #1f2937;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
    font-size: 14px;
    line-height: 1.4;
}

.checkout-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.checkout-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.checkout-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.checkout-qty-control.is-static {
    padding: 6px 10px;
}

.checkout-qty-btn {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: inherit;
    cursor: pointer;
}

.checkout-qty-value {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.checkout-item-remove {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #ff6b6b;
    cursor: pointer;
}

.shop-filter-search .shop-game-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: -10px;
	margin-bottom: 15px;
}

.shop-game-filter-btn {
   border: 1px solid rgba(255, 255, 255, .07);
    background: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.shop-game-filter-btn:hover {
  background: linear-gradient(135deg, #2f6bff 0%, #4a8bff 100%);
}

.shop-game-filter-btn.is-active {
    background: linear-gradient(135deg, #2f6bff 0%, #4a8bff 100%);
    color: #fff;
}

.streamer-viewer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #d8e1ff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.streamer-viewer-pill i {
    opacity: 0.85;
}

.streamer-viewer-pill span {
    color: #fff;
}

.cart-checkout-btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.streamer-apply-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Tablet */
@media (max-width: 1024px) {
    .streamer-apply-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (IMPORTANT) */
@media (max-width: 640px) {
    .streamer-apply-steps {
        grid-template-columns: 1fr;
    }

    .streamer-apply-step {
        width: 100%;
    }
}

.pack-odds-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .72;
    margin-bottom: 6px;
}

.homepage-section {
    margin-bottom: 32px;
	background: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);
	margin-top: 25px;
	border-radius: 18px;
}

.homepage-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
	padding: 18px 20px;
	
}

.homepage-section-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
	
}

.homepage-section-subtitle {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.homepage-section-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    opacity: 0.85;
	font-size: 14px;
}

.homepage-section-link:hover {
    opacity: 1;
}

.homepage-loading-state,
.homepage-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 140px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
}

/* Hero */
.homepage-hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 340px;
	background: linear-gradient(180deg, #0a0f18 0%, #060b14 100%);

}

.homepage-hero-track {
    position: relative;
    min-height: 380px;
}

.homepage-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.homepage-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.homepage-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.homepage-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,7,10,0.90) 0%, rgba(7,7,10,0.72) 38%, rgba(7,7,10,0.35) 100%),
        linear-gradient(180deg, rgba(7,7,10,0.10) 0%, rgba(7,7,10,0.55) 100%);
}

.homepage-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px;
	text-align: center;
}

.homepage-hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
}

.homepage-hero-content h1,
.homepage-hero-content h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.05;
    color: #fff;
    font-weight: 900;
}

.homepage-hero-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
	text-align: center;
}

.homepage-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;

    justify-content: center;
    align-items: center;
}

.homepage-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.homepage-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;

    justify-content: center;
    align-items: center;
}

.homepage-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(0,0,0,0.45);
    color: #fff;
    backdrop-filter: blur(8px);
}

.homepage-hero-nav.prev {
    left: 16px;
}

.homepage-hero-nav.next {
    right: 16px;
}

.homepage-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.homepage-hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255,255,255,0.35);
}

.homepage-hero-dot.is-active {
    background: #fff;
}



@media (max-width: 900px) {
  

    .homepage-hero-content {
        padding: 32px;
    }

    .homepage-hero-content h1,
    .homepage-hero-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {


    .homepage-hero-slider,
    .homepage-hero-track {
        min-height: 420px;
    }

    .homepage-hero-content {
        padding: 24px;
    }

    .homepage-hero-content h1,
    .homepage-hero-content h2 {
        font-size: 28px;
    }

    .homepage-section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}


.homepage-streamer-card-match {
    min-width: 100%;
}

.homepage-streamer-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 1200px) {
    .homepage-streamer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .homepage-streamer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .homepage-streamer-grid {
        grid-template-columns: 1fr;
    }
}

.homepage-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.homepage-section-icon {
    font-size: 18px;
    opacity: 0.9;
}

/* 🔥 Fire accent */
.homepage-section-title-hot .homepage-section-icon {
    color: #fff;
    filter: drop-shadow(0 0 6px rgba(255, 120, 0, 0.4));
}
.homepage-hero-slider {
    background: #ffffff;
}
.homepage-hero-bg {
    position: absolute;
    inset: -20px;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    filter: blur(3px); /* subtle blur */
    transform: scale(1.05);

    opacity: 0.8; /* THIS controls how light it feels */
}

.collection-card-btn.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.collection-card-btn.is-disabled:hover {
    opacity: 0.4; /* prevent hover glow */
}

@media (max-width: 640px) {
    .streamer-stream-frame {
        min-height: 180px;
        border-radius: 12px;
    }

    .streamer-stream-frame.is-overlay-only {
        min-height: 640px;
    }
}

.lb-prizes-page {
    display: grid;
    gap: 24px;
}

.lb-prize-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(18, 24, 38, 0.96), rgba(31, 41, 55, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.lb-prize-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 13px;
    margin-bottom: 14px;
}

.lb-prize-hero h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.1;
    color: #fff;
}

.lb-prize-hero p {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.lb-prize-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.lb-prize-stat-card {
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lb-prize-stat-card span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 8px;
}

.lb-prize-stat-card strong {
    font-size: 20px;
    color: #fff;
    font-weight: 800;
}

.lb-prize-stat-card.is-highlight {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.16), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 196, 0, 0.28);
}

.lb-prize-podium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lb-prize-card {
    position: relative;
    border-radius: 22px;
    padding: 22px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.lb-prize-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lb-prize-card-rank {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.64);
    margin-bottom: 6px;
}

.lb-prize-card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lb-prize-card-amount {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.lb-prize-card-meta {
    margin-top: 10px;
    color: rgba(255,255,255,0.66);
    font-size: 14px;
}

.lb-prize-list {
    display: grid;
    gap: 14px;
}

.lb-prize-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.lb-prize-row:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.lb-prize-row.is-active {
    border-color: rgba(255, 196, 0, 0.36);
    box-shadow: 0 0 0 1px rgba(255, 196, 0, 0.18) inset;
}

.lb-prize-row-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lb-prize-row-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
}

.lb-prize-row-info {
    display: grid;
    gap: 4px;
}

.lb-prize-row-rank {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.lb-prize-row-sub {
    color: rgba(255,255,255,0.60);
    font-size: 13px;
}

.lb-prize-row-right {
    text-align: right;
}

.lb-prize-row-amount {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.lb-prize-row-note {
    color: rgba(255,255,255,0.58);
    font-size: 13px;
    margin-top: 4px;
}

.is-gold {
    background: linear-gradient(135deg, #f59e0b, #facc15);
}

.is-silver {
    background: linear-gradient(135deg, #94a3b8, #e2e8f0);
    color: #0f172a;
}

.is-bronze {
    background: linear-gradient(135deg, #b45309, #f59e0b);
}

.is-blue {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.is-purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.is-teal {
    background: linear-gradient(135deg, #0f766e, #2dd4bf);
}

.is-dark {
    background: linear-gradient(135deg, #334155, #64748b);
}

@media (max-width: 900px) {
    .lb-prize-stats,
    .lb-prize-podium {
        grid-template-columns: 1fr;
    }

    .lb-prize-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .lb-prize-row-right {
        text-align: left;
    }
}

.lb-page {
    display: grid;
    gap: 26px;
}

.lb-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 28px;
background: linear-gradient(90deg, rgba(8, 15, 30, .85) 0%, rgba(8, 15, 30, .55) 50%, rgba(8, 15, 30, .85) 100%), linear-gradient(180deg, rgba(8, 15, 30, .25) 0%, rgba(8, 15, 30, .65) 100%);
}




.lb-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.lb-season-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(96, 165, 250, 0.22);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.lb-season-header-left h1 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.lb-season-header-left p {
    margin: 0;
    max-width: 760px;
    color: rgba(219, 234, 254, 0.72);
    font-size: 15px;
    line-height: 1.6;
}

.lb-reset-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.lb-podium-wrap {
    margin-top: 4px;
}

.lb-podium-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 18px;
    align-items: end;
}

.lb-podium-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 24px 20px 20px;
    background:
        linear-gradient(180deg, rgba(13, 22, 40, 0.96), rgba(7, 13, 28, 0.98));
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.04);
    text-align: center;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lb-podium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.9;
    pointer-events: none;
}

.lb-podium-card.is-first {
    min-height: 320px;
    transform: translateY(-6px);
    border-color: rgba(255, 202, 40, 0.26);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 202, 40, 0.08) inset;
}

.lb-podium-card.is-first::before {
    background: radial-gradient(circle at top center, rgba(255, 193, 7, 0.18), transparent 42%);
}

.lb-podium-card.is-second {
    min-height: 275px;
    border-color: rgba(203, 213, 225, 0.18);
}

.lb-podium-card.is-second::before {
    background: radial-gradient(circle at top center, rgba(203, 213, 225, 0.12), transparent 40%);
}

.lb-podium-card.is-third {
    min-height: 250px;
    border-color: rgba(251, 146, 60, 0.18);
}

.lb-podium-card.is-third::before {
    background: radial-gradient(circle at top center, rgba(251, 146, 60, 0.14), transparent 40%);
}

.lb-podium-user {
    position: relative;
    z-index: 1;
}

.lb-podium-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(30,41,59,0.95), rgba(15,23,42,0.95));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.30),
        0 0 0 8px rgba(255,255,255,0.02);
}

.lb-podium-card.is-first .lb-podium-avatar {
    width: 84px;
    height: 84px;
    font-size: 34px;
    box-shadow:
        0 14px 36px rgba(0,0,0,0.34),
        0 0 0 10px rgba(255, 193, 7, 0.06);
}

.lb-podium-name {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.lb-podium-card.is-second .lb-podium-name,
.lb-podium-card.is-third .lb-podium-name {
    font-size: 18px;
}

.lb-podium-place {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.70);
}

.lb-podium-base {
    position: relative;
    z-index: 1;
    margin-top: 18px;
}

.lb-podium-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 132px;
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.lb-podium-card.is-second .lb-podium-score,
.lb-podium-card.is-third .lb-podium-score {
    font-size: 18px;
    min-width: 110px;
    padding: 10px 14px;
}

.lb-podium-score.is-gold {

    background: linear-gradient(135deg, #facc15, #f59e0b);
}

.lb-podium-score.is-silver {
   
    background: linear-gradient(135deg, #e2e8f0, #94a3b8);
}

.lb-podium-score.is-bronze {

    background: linear-gradient(135deg, #fb923c, #c2410c);
}

.lb-rankings {
    border-radius: 24px;
    padding: 22px;

}

.lb-rankings-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.lb-rankings-title h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.lb-rankings-title p {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.62);
}

.lb-board-switch {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.lb-board-switch-btn {
    padding: 11px 18px;
    border-radius: 14px;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-weight: 800;
    transition: all 0.2s ease;
}

.lb-board-switch-btn.is-active {
    color: #fff;
    background: linear-gradient(135deg, #4f9cff, #3182f6);
    box-shadow: 0 8px 20px rgba(49, 130, 246, 0.28);
}

.lb-rank-list {
    display: grid;
    gap: 12px;
}

.lb-rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.lb-rank-row:hover {
    transform: translateY(-2px);
    border-color: rgba(96,165,250,0.18);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.lb-rank-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lb-rank-number {
    min-width: 64px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(96,165,250,0.12);
    color: #93c5fd;
    font-weight: 900;
    text-align: center;
}

.lb-rank-name {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
}

.lb-rank-points {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.lb-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.lb-pagination-btn,
.lb-pagination-page {
    text-decoration: none;
}

.lb-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 800;
}

.lb-pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.78);
    font-weight: 800;
}

.lb-pagination-page.is-active {
    background: linear-gradient(135deg, #4f9cff, #3182f6);
    color: #fff;
    border-color: transparent;
}

.lb-empty {
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.70);
}

@media (max-width: 980px) {
    .lb-podium-grid {
        grid-template-columns: 1fr;
    }

    .lb-podium-card.is-first,
    .lb-podium-card.is-second,
    .lb-podium-card.is-third {
        min-height: auto;
        transform: none;
    }

    .lb-rank-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .lb-rank-points {
        width: 100%;
        justify-content: center;
    }
}

.lb-points-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.lb-points-summary-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.lb-points-summary-card span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    margin-bottom: 8px;
}

.lb-points-summary-card strong {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.lb-points-summary-card.is-negative strong {
    color: #fca5a5;
}

.lb-points-filters {
    margin-bottom: 18px;
}

.lb-points-table-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
	font-size: 14px;
}

.lb-points-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.lb-points-table th,
.lb-points-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #fff;
}

.lb-points-table th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.62);
    background: rgba(255,255,255,0.03);
}

.lb-points-table td.is-positive {
    color: #86efac;
    font-weight: 800;
}

.lb-points-table td.is-negative {
    color: #fca5a5;
    font-weight: 800;
}

.lb-points-table .valid { font-size: 11px; opacity: 0.5; ]

@media (max-width: 980px) {
    .lb-points-summary-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .lb-points-summary-grid {
        grid-template-columns: 1fr;
    }
}

.lb-points-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.lb-points-status.is-active {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.lb-points-status.is-expired {
    color: #fecaca;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
