
:root {
    --bg: #0a0a0f;
    --surface: #111118;
    --surface2: #18181f;
    --border: #ffffff0f;
    --gold: #f5c842;
    --gold-dim: #f5c84230;
    --silver: #c0c8d8;
    --bronze: #d4845a;
    --accent: #9b5cff;
    --accent-dim: #9b5cff20;
    --mid-blue: #566adf;
    --mid-blue-dim: #3f51b530;
    --text: #f0eff8;
    --muted: #6b6a7a;
    --green: #4ade80;
    --green-dim: #4ade8015;
    --other: #422585;
    --dark: white;
    --dark-dim: #00000015;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background grid */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px); */
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Glow blob */
body::after {
    content: '';
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, #9b5cff18 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: flex;
    flex-direction: column;
}

.golden {
    color: var(--gold);
}

/* ── HEADER ── */
header {
    padding: 60px 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-bottom: 1px solid var(--border); */
    margin-bottom: 10px;
}

.logo-area h1 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
}

.logo-area h1 span {
    color: var(--gold);
}

.logo-area p {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 4px;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ff000015;
    border: 1px solid #ff000040;
    padding: 18px;
    height: 15px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #ff1919;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

a {
    color: white;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* ── SEARCH BAR ── */
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 48px;
}

.search-input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input::placeholder { color: var(--muted); }
.search-input:focus { border-color: var(--accent); }

.search-btn {
    background: var(--accent);
    border: none;
    color: white;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}
.search-btn:hover { opacity: 0.85; }

/* ── GRID LAYOUT ── */
.main-grid {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    gap: 20px;
    margin-bottom: 20px;
}

/* ── SECTION LABEL ── */
.section-label {
    font-size: 10pt;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ── CARD ── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    transition: border-color 0.2s;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.history-list {
    /* flex: 1; */
    overflow-y: auto;
    height: 0;
    flex-grow: 1;
}

.card:hover { border-color: #ffffff18; }

/* ── TOP 3 ── */
.top3-card { grid-column: 1; }
.history-card { 
    grid-column: 2; 
    min-height: 230px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.4s ease both;
}

/* .rank-item:last-child { border-bottom: none; padding-bottom: 0; } */
/* .rank-item:first-child { padding-top: 0; } */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.rank-item:nth-child(1) { animation-delay: 0.05s; }
.rank-item:nth-child(2) { animation-delay: 0.1s; }
.rank-item:nth-child(3) { animation-delay: 0.15s; }

.rank-num {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.rank-1 .rank-num { color: var(--gold); }
.rank-2 .rank-num { color: var(--silver); }
.rank-3 .rank-num { color: var(--bronze); }

.rank-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.rank-1 .rank-avatar { background: var(--gold-dim); color: var(--gold); border: 1px solid #f5c84240; }
.rank-2 .rank-avatar { background: #c0c8d815; color: var(--silver); border: 1px solid #c0c8d830; }
.rank-3 .rank-avatar { background: #d4845a15; color: var(--bronze); border: 1px solid #d4845a30; }

.rank-info { flex: 1; }
.rank-name {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.rank-bits {
    font-size: 11px;
    color: var(--muted);
}

.rank-coins {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.rank-1 .rank-coins { color: var(--gold); }
.rank-2 .rank-coins { color: var(--silver); }
.rank-3 .rank-coins { color: var(--bronze); }

.coin-icon { font-size: 13px; }

/* ── HISTORY ── */
.history-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.4s ease both;
}

.history-item:last-child { border-bottom: none; padding-bottom: 0; }
.history-item:first-child { padding-top: 0; }

.history-item:nth-child(1) { animation-delay: 0.05s; }
.history-item:nth-child(2) { animation-delay: 0.1s; }
.history-item:nth-child(3) { animation-delay: 0.15s; }
.history-item:nth-child(4) { animation-delay: 0.2s; }
.history-item:nth-child(5) { animation-delay: 0.25s; }

.history-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.dot-earn { background: var(--green); }
.dot-spend { background: var(--accent); }

.history-text {
    flex: 1;
    font-size: 12px;
    line-height: 1.5;
    color: var(--silver);
}

.history-text strong {
    color: var(--text);
    font-weight: 500;
}

.history-time {
    font-size: 10px;
    color: var(--muted);
    white-space: nowrap;
    margin-top: 2px;
}

.history-amount {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 2px;
}

.amount-earn { color: var(--green); }
.amount-spend { color: var(--accent); }

/* ── CATALOG ── */
.catalog-section { margin-top: 4px; }

.tier-group { 
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.tier-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    font-weight: 500;
    width: fit-content;
}

.tier-basic { background: #4ade8015; color: var(--green); border: 1px solid #4ade8025; }
.tier-mid { background: var(--mid-blue-dim); color: var(--mid-blue); border: 1px solid #5c90ff30; }
.tier-premium { background: var(--accent-dim); color: var(--accent); border: 1px solid #9b5cff30; }
.tier-ultimate { background: var(--gold-dim); color: var(--gold); border: 1px solid #f5c84230; }

.rewards-grid {
    display: flex;
    flex-wrap: wrap;
    /* flex-basis: 50%; */
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 10px;
}

.reward-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 15px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-basis: 32.6%;
}

.reward-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.tier-basic-card::before { background: radial-gradient(circle at top left, #4ade8008, transparent 60%); }
.tier-mid-card::before { background: radial-gradient(circle at top left, #5cb0ff08, transparent 60%); }
.tier-premium-card::before { background: radial-gradient(circle at top left, #9b5cff08, transparent 60%); }
.tier-ultimate-card::before { background: radial-gradient(circle at top left, #f5c84208, transparent 60%); }

.reward-card:hover { transform: translateY(-2px); }
.reward-card:hover::before { opacity: 1; }
.tier-basic-card:hover { border-color: #4ade8030; }
.tier-mid-card:hover { border-color: #5cb0ff30; }
.tier-premium-card:hover { border-color: #9b5cff30; }
.tier-ultimate-card:hover { border-color: #f5c84230; }

.reward-name {
    font-size: 15px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    /* margin-bottom: 10px; */
    /* line-height: 1.3; */
    color: var(--text);
    width: 100%;
}

.reward-price {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
}

.tier-basic-card .reward-price { color: var(--green); }
.tier-mid-card .reward-price { color: var(--mid-blue); }
.tier-premium-card .reward-price { color: var(--accent); }
.tier-ultimate-card .reward-price { color: var(--gold); }

/* ── USER BALANCE CARD ── */
.balance-banner {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    animation: fadeUp 0.3s ease both;
}

.first {
    border: 1px solid var(--gold);
    box-shadow: 0px 0px 20px #ffae005c;
}

.second {
    border: 1px solid var(--silver);
    box-shadow: 0px 0px 20px #7042175c;
}

.third {
    border: 1px solid var(--bronze);
    box-shadow: 0px 0px 20px #ffae005c;
}

.other {
    border: 1px solid var(--other);
    box-shadow: 0px 0px 20px #2406685c;
}

.balance-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.balance-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid #9b5cff30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    overflow: hidden;
}

.balance-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.balance-name {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.balance-meta {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
}

.balance-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.balance-stat {
    text-align: right;
}

.balance-stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.balance-stat-label {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.divider-v {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ── STREAK BADGE ── */
.streak-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5c84210;
    border: 1px solid #f5c84225;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ── TABS ── */
.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 4px;
    width: fit-content;
}

.tab {
    padding: 8px 18px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s;
    border: none;
    background: none;
}

.tab.active {
    background: var(--surface2);
    color: var(--text);
    border: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
    margin-top: 10px;
    /* padding-top: 20px; */
    /* border-top: 1px solid var(--border); */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer p {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.week-badge {
    font-size: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── SEASONAL TAG ── */
.seasonal {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 11px;
    background: #f5c84220;
    color: var(--gold);
    border: 1px solid #f5c84230;
    padding: 2px 4px 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.big-icon {
    font-size: 26px;
}

.hidden {
    display: none !important;
}

.update-info-btn,
.show-info-btn,
.top-button {
    cursor: pointer;
    font-size: 18px;
    border: var(--border) 1px solid;
    background-color: var(--surface);
    width: 15px;
    height: 15px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.update-info-btn:hover,
.show-info-btn:hover,
.top-button:hover {
    background-color: var(--surface2);
    border-color: var(--bg);
    color: #9b70ff;
}

.update-info-btn:active,
.show-info-btn:active,
.top-button:active {
    /* background-color: var(); */
    color: var(--accent);
    border-color: var(--accent-dim);
}

.logout-btn:hover {
    color: rgb(255, 87, 87);
    transition: 0.3s;
}

.right-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}

.reward-card.tier-basic-card::after {
    content: "";        /* REQUIRED: pseudo-elements won't render without this */
    width: 100%;
    height: 3px;
    background-color: rgb(158, 255, 158, 0.7);
    position: absolute;
    left: 0;
    bottom: 0
}

.reward-card.tier-mid-card::after {
    content: "";        /* REQUIRED: pseudo-elements won't render without this */
    width: 100%;
    height: 3px;
    background-color: rgba(158, 208, 255, 0.7);
    position: absolute;
    left: 0;
    bottom: 0
}

.reward-card.tier-premium-card::after {
    content: "";        /* REQUIRED: pseudo-elements won't render without this */
    width: 100%;
    height: 3px;
    background-color: rgb(184, 158, 255, 0.7);
    position: absolute;
    left: 0;
    bottom: 0
}

.reward-card.tier-ultimate-card::after {
    content: "";        /* REQUIRED: pseudo-elements won't render without this */
    width: 100%;
    height: 3px;
    background-color: rgb(255, 232, 158, 0.7);
    position: absolute;
    left: 0;
    bottom: 0
}


.rank-item {
    padding: 20px 10px;
    border-radius: 8px;
}

/* -----------------------------------------------------------------------------------------------------*/
.info-session,
.commands-session {
    margin-bottom: 20px;
    font-family: 'DM Mono', monospace;
}

.how-section {
    background: var(--surface);
    border-radius: 14px;
    padding: 5px 5px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    overflow-x: auto;
}

.how-title {
    font-size: 11px;
    /* font-weight: 600; */
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.how-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border)
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 1px;
    background: var(--gold);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1720;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    box-shadow: 0 0 16px #f5a62320;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: #f0edd8;
    margin-bottom: 5px;
    line-height: 1.3;
    font-family: 'Syne', sans-serif;
}

.step-desc {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.5;
    text-transform: uppercase;
}

.step-desc em {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

.reward-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.reward-modal-card {
    background-color: #1a1720;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 30%;
}

.reward-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.reward-modal-close:hover {
    color: var(--gold);
    transition: 0.3s;
}

.reward-modal-observations {
    background-color: #09080c1c;
    color: #f0edd8;
    border: 1px solid var(--bg);
    border-radius: 4px;
    padding: 10px;
    resize: none;
    width: 100%;
    height: 100%;
}

.reward-modal-observations-wrapper {
    width: 60%;
    height: 100px;
    margin: 20px 20px;
}

.reward-modal-redeem-button {
    background-color: var(--gold);
    color: #1a1720;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.reward-modal-redeem-button:hover {
    background-color: #f5a623;
}

.top-button {
    position: relative;
}

.label {
    position: absolute;
    top: calc(-100%);
    color: var(--muted);
    background-color: var(--surface2);
    border: 1px solid var(--muted);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    text-transform: uppercase;
    color: white;
    display: none;
    transition: 1s;
    text-align: center;
    width: max-content;
}

.show-info-btn:hover > .label {
    display: initial;
}

.top-button:hover > .label {
    display: initial;
}

.reward-emoji {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22pt;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.small-gap {
    gap: 10px;
}

.medium-gap {
    gap: 20px;
}

.reward-quantity {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
}

.reward-price {
    display: flex;
    align-items: center;
    font-size: 12pt;
    font-weight: 600;
    font-family: monospace;
    padding: 5px 6px 5px 5px;
    border: 1px solid;
    border-radius: 6px;
}

.reward-price i {
    font-size: 11pt;
}

.error-bar {
    padding: 20px;
    background-color: #300000;
    border: 1px solid #7c0000;
    border-radius: 4px;
    color: #f0edd8;
    font-size: 14px;
    font-weight: 600;
    margin-top: 175px;
    font-family: 'Syne', sans-serif;
    width: 100%;
    text-align: center;
    position: fixed;
    z-index: 1000;
    align-self: center;
    max-width: 1100px;
}

.buttons-wrapper {
    display: flex;
    gap: 10px;
}

.reward-expire {
    color: #ffffff77;
    font-size: 12px;
    margin-top: 6px;
    text-transform: uppercase;
}

.reward-modal-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    /* margin-top: 40px; */
}

.reward-modal-emoji {
    font-size: 30px;
}

.reward-modal-name {
    font-size: 20px;
    font-weight: 600;
}

.reward-modal-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.reward-modal-quantity {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    margin-right: 10px;
}

.reward-modal-cost {
    /* font-size: 14px; */
    font-weight: 600;
    /* font-family: monospace; */
    padding: 10px 20px;
    /* border: 1px solid; */
    border-radius: 4px;
    color: var(--gold);
    background: var(--gold);
    background: var(--surface);
    /* color: black; */
}

.reward-modal-expire-at {
    color: #ffffff77;
    font-size: 13px;
    /* margin-top: 6px; */
    margin-bottom: 5px;
    text-transform: uppercase;
}

.expired {
    color: #ff6464;
    font-weight: 600;
    gap: 10px;
    letter-spacing: 2px;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.not-allowed {
    cursor: not-allowed;
}

.not-allowed:hover {
    cursor: not-allowed;
}

.commands-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.command {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    font-family: 'Syne', sans-serif;
}

.info-input {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    color: var(--muted);
    /* margin-bottom: 20px; */
    margin: 10px 0;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: break-spaces;
    /* letter-spacing: 1px; */
}

.reward-modal-additional-info {
    display: flex;
    margin-top: 12px;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 217, 0, 0.123);
    padding: 10px 5px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
    width: 60%;
    flex-direction: column;
    text-align: center;
    padding-bottom: 15px;
}

.reward-modal-additional-info::before {
    content: '⚠️';
    margin-bottom: 5px;
}

.reward-name-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.reward-expire {
    position: absolute;
    top: 15px;
}

.disabled-interaction {
    pointer-events: none;
}

@media screen and (max-width: 900px) {
    .main-grid {
        flex-direction: column;
    }

    .steps::before {
        right: 0;
    }

    .seasonal {
        position: initial;
        margin-bottom: 10px;
        width: max-content;
        align-self: center;
        padding: 2px 5px 2px 6px;
    }

    .rewards-grid {
        flex-wrap: wrap;
    }

    .reward-card {
        /* flex-shrink: 0; */
        flex-basis: 48.2%;
        margin-bottom: 10px;
        flex-grow: 1;
    }

    .rewards-list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .reward-modal-card {
        width: 90%;
    }

    .flex-row {
        flex-direction: column;
        gap: 10px;
    }

    .reward-name {
        text-align: center;
    }

    .history-list {
        height: 250px;
    }

    header {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 10px;
    }

    .right-area {
        flex-direction: column;
    }

    .buttons-wrapper {
        gap: 30px;
    }
    
    .reward-expire {
        text-align: center;
    }

    .reward-modal-observations-wrapper {
        width: 100%;
    }

    .reward-modal-additional-info {
        width: 100%;
    }

    .reward-modal-top {
        flex-direction: column;
    }

    .reward-expire {
        position: initial;
    }

    .balance-stat-value {
        justify-content: center;
    }

    .balance-banner {
        gap: 15px;
    }

    .balance-avatar {
        width: 100%;
        height: 100%;
    }
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
* {
scrollbar-width: medium;
scrollbar-color: var(--muted) var(--surface2);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 16px;
}

*::-webkit-scrollbar-track {
background: #111118;
}

*::-webkit-scrollbar-thumb {
background-color: var(--muted);
border-radius: 10px;
border: 3px solid #ffffff;
}

.error-bg-color {
    background-color: rgb(255 91 91) !important;
}

.success-bg-color {
    background-color: rgb(91 255 91) !important;
}

.animation-spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}