:root {
    color-scheme: dark;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #050507;
    color: #f5f5f5;
    touch-action: manipulation;
}

.app-toast {
    position: fixed;
    left: 50%;
    bottom: 92px;
    transform: translate(-50%, 24px);
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(15, 17, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2500;
    min-width: 200px;
    max-width: min(360px, calc(100% - 32px));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.app-toast__message {
    display: inline-block;
    line-height: 1.3;
}

.app-toast--visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

#app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%);
    position: relative;
}

.theme-has-background #app-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-background-image, none) center/cover no-repeat;
    opacity: 0.35;
    filter: brightness(0.6);
    z-index: -2;
}

.theme-has-background #app-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 7, 0.55), rgba(5, 5, 7, 0.85));
    z-index: -1;
}

.debug-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 240px;
    overflow: auto;
    padding: 12px 16px;
    background: rgba(23, 23, 32, 0.92);
    color: #ffb347;
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.debug-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.debug-panel__actions button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.75rem;
}

.debug-panel__item {
    margin-bottom: 6px;
    padding: 6px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffd27f;
}

.debug-panel__item pre {
    margin: 4px 0 0;
    white-space: pre-wrap;
    word-break: break-word;
    color: #f3f6ff;
}

.app-hero {
    padding: 14px 16px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-label {
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1px;
}

.hero-badge {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent, #FBDC2E);
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

#app-root {
    flex: 1;
    padding: 16px 14px calc(100px + env(safe-area-inset-bottom, 0px));
}

.panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.mine-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}

.mine-income {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 12px;
}

.mine-income__label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.mine-income__value {
    margin-top: 2px;
    font-size: 1.05rem;
    font-weight: 600;
}

.mine-income__action {
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(251, 220, 46, 0.18);
    color: #fbdc2e;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.mine-income__action:active,
.mine-income__action:hover {
    background: rgba(251, 220, 46, 0.28);
}

.mine-coin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.coin-button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    width: min(280px, 65vw);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.coin-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.coin-button:active {
    transform: scale(0.97);
}

.coin-button--busy {
    cursor: progress;
}

.coin-button--busy img {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45)) saturate(0.9);
}

.coin-button--disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.mine-energy {
    width: min(320px, 90vw);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.mine-energy__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.mine-energy__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.mine-energy__value {
    font-size: 0.9rem;
}

.mine-energy__bar {
    position: relative;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mine-energy__bar > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #2fea8c, #fbdc2e);
    transition: width 0.3s ease;
}

.mine-stats {
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.stat-card {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card--with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-card__media {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.stat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.level-widget {
    width: min(420px, 100%);
    padding: 18px 20px;
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(251, 220, 46, 0.25), rgba(12, 12, 12, 0.85));
    border: 1px solid rgba(251, 220, 46, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 35px rgba(251, 220, 46, 0.25);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.level-widget::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.level-widget__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(251, 220, 46, 0.95), rgba(255, 142, 60, 0.85));
    box-shadow: 0 12px 28px rgba(251, 220, 46, 0.4);
    position: relative;
    color: #0c0c0c;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.level-widget__icon-core {
    font-size: 1rem;
    z-index: 2;
}

.level-widget__icon-orbit {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    opacity: 0.7;
    animation: level-orbit 8s linear infinite;
}

.level-widget__label {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.level-widget__value {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.level-widget__hint {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
}

.level-widget__progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.level-widget__progress-track {
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.level-widget__progress-value {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #fbdc2e, #ff8e3c);
    box-shadow: 0 0 18px rgba(251, 220, 46, 0.5);
    transition: width 0.3s ease;
}

.level-widget__progress-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.level-widget--pulse {
    animation: level-pulse 1.3s ease;
}

.stat-card__emoji {
    font-size: 1.6rem;
}

.stat-card__content {
    text-align: left;
}

.stat-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 3px;
    white-space: nowrap;
}

.cross-promos {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.cross-promos__eyebrow {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

.cross-promos__title {
    margin: 2px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.cross-promos__controls {
    display: flex;
    gap: 8px;
}

.cross-promos__control {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.cross-promos__control:active:not(:disabled) {
    transform: scale(0.95);
}

.cross-promos__control:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cross-promo-card {
    position: relative;
    border: none;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    text-align: left;
    background-color: var(--promo-accent-secondary, #151515);
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55);
    background-image:
        linear-gradient(140deg, rgba(0, 0, 0, 0.55) 10%, rgba(0, 0, 0, 0.15) 90%),
        var(--promo-background-image, none);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.cross-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(130deg, rgba(var(--promo-accent-rgb, 252, 220, 46), 0.35) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.cross-promo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 70%);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.cross-promo-card:hover {
    transform: translateY(-2px);
}

.cross-promo-card > * {
    position: relative;
    z-index: 1;
}

.cross-promo-card__eyebrow {
    margin: 0 0 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.82);
}

.cross-promo-card__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
}

.cross-promo-card__subtitle {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.4;
}

.cross-promo-card__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--promo-accent, #fbdc2e);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 999px;
}

.cross-promo-card__action::after {
    content: '↗';
    font-size: 13px;
}

.cross-promo-card__badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 12px;
    text-transform: lowercase;
}

.cross-promos__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.cross-promos__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.2s, transform 0.2s;
}

.cross-promos__dot.is-active {
    background: var(--primary-color, #fbdc2e);
    transform: scale(1.15);
}

@media (max-width: 480px) {
    .cross-promos__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cross-promos__controls {
        width: 100%;
        justify-content: flex-end;
    }
}

.energy-card {
    margin-top: 20px;
}

.energy-bar {
    margin-top: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.energy-bar > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #2FEA8C, #52E5FF);
    transition: width 0.3s ease;
}

.primary-button {
    width: 100%;
    border: none;
    border-radius: 20px;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 24px;
    color: #050507;
    background: linear-gradient(135deg, #FBDC2E, #FF9D0A);
    box-shadow: 0 20px 30px rgba(251, 220, 46, 0.35);
}

.primary-button:disabled {
    opacity: 0.55;
    box-shadow: none;
}

.nav-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 6px 10px calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(5, 5, 7, 0), rgba(5, 5, 7, 0.92));
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    gap: 2px;
    z-index: 2000;
}

.nav-item {
    flex: 1;
    padding: 0 4px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
}

.nav-item--active {
    color: #fff;
    font-weight: 600;
}

.nav-item__icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.nav-item--active .nav-item__icon {
    transform: scale(1.2);
}

.nav-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.nav-item__emoji {
    font-size: 1.5rem;
}

.nav-item__label {
    font-weight: 600;
    font-size: 0.75rem;
    margin-top: -4px;
}

.secondary-button,
.ghost-button {
    width: 100%;
    border-radius: 16px;
    padding: 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    margin-top: 12px;
}

.secondary-button:disabled {
    opacity: 0.6;
}

.ghost-button {
    border-style: dashed;
}

.friends-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.friends-leaderboards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.leaderboard-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leaderboard-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.leaderboard-card__titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leaderboard-card__title {
    font-weight: 600;
    font-size: 1rem;
}

.leaderboard-card__subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.leaderboard-card__count {
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
}

.leaderboard-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.leaderboard-item--current {
    border-color: rgba(47, 234, 140, 0.4);
    box-shadow: 0 0 12px rgba(47, 234, 140, 0.2);
}

.leaderboard-item__rank {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    min-width: 40px;
}

.leaderboard-item__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.leaderboard-item__name {
    font-weight: 600;
}

.leaderboard-item__meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.leaderboard-item__value {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}

.leaderboard-item__value strong {
    font-size: 1.05rem;
}

.leaderboard-item__value span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.boosts-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.boosts-balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.boosts-balance span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.boosts-balance strong {
    font-size: 1.1rem;
}

.boosts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.boosts-empty {
    text-align: center;
    padding: 32px 12px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.boost-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.boost-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.boost-card__icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.boost-card__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.boost-card__icon--fallback {
    font-weight: 700;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
}

.boost-card__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.boost-card__title {
    font-weight: 600;
    font-size: 1.05rem;
}

.boost-card__level {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.boost-card__description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.boost-card__stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.boost-card__stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.boost-card__stat strong {
    color: #fff;
    font-weight: 600;
}

.boost-card__cost {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.boost-card__cost strong {
    color: #fff;
}

.boost-card__cost--insufficient strong {
    color: #ff9f76;
}

.boost-card__hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.boost-card__action {
    margin-top: 4px;
}

.boost-card__action--disabled {
    opacity: 0.65;
}

.friends-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.referral-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px;
}

.referral-note {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.referral-note__text {
    font-size: 0.95rem;
}

.referral-note__name {
    color: #FBDC2E;
    font-weight: 700;
}

.ref-link {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.ref-link input {
    flex: 1;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 10px 12px;
    font-size: 0.9rem;
}

.ref-link .secondary-button {
    width: auto;
    margin-top: 0;
    padding: 0 16px;
    white-space: nowrap;
}

.ref-link .copy-icon-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ref-link .copy-icon-button svg {
    width: 20px;
    height: 20px;
}

.friends-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.friend-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.friend-name {
    font-weight: 600;
}

.friend-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.friend-earned {
    font-weight: 600;
    color: #FBDC2E;
    white-space: nowrap;
}

.friends-empty {
    text-align: center;
    padding: 32px 12px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.friend-status {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.friend-status--done {
    color: #2FEA8C;
    border-color: rgba(47, 234, 140, 0.4);
}

.friend-status--pending {
    color: #FBDC2E;
    border-color: rgba(251, 220, 46, 0.4);
}

.friend-req-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: none;
    border-radius: 20px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.85);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    flex-wrap: wrap;
}

.friend-req-info:focus-visible,
.friend-req-info:hover {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.friend-req-info__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 100px;
}

.friend-req-info__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}

.friend-req-info__hint {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}

.referral-bonus-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(47, 234, 140, 0.5);
    background: rgba(47, 234, 140, 0.12);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.referral-bonus-pill img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.referral-bonus-pill__emoji {
    font-size: 1.2rem;
}

.referral-bonus-pill__text {
    color: #ffffff;
}

.referral-info-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: clamp(16px, 6vw, 32px);
}

.referral-info-modal__content {
    width: min(420px, 90vw);
    max-width: 420px;
    border-radius: 28px;
    padding: 24px 26px;
    background: radial-gradient(circle at top, rgba(56, 56, 86, 0.65), rgba(17, 17, 26, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    color: #fff;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    max-height: min(560px, 90vh);
    overflow-y: auto;
}

.referral-info-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.referral-info-modal__eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.referral-info-modal__title {
    margin: 0;
    font-size: 1.25rem;
}

.referral-info-modal__list {
    margin: 18px 0 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
}

.referral-info-modal__bonus {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(251, 220, 46, 0.35);
    background: rgba(251, 220, 46, 0.1);
    color: #fbdc2e;
    font-size: 0.95rem;
    line-height: 1.45;
}

.referral-info-modal__bonus strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.referral-info-modal__note {
    margin-top: 18px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 540px) {
    .referral-info-modal {
        align-items: flex-start;
    }

    .referral-info-modal__content {
        width: 100%;
        max-width: none;
        border-radius: 22px;
        padding: 22px 20px;
    }
}

.task-card--completed {
    border-color: rgba(47, 234, 140, 0.3);
    position: relative;
}

.task-card--completed::after {
    content: 'Выполнено';
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(47, 234, 140, 0.5);
    color: #2FEA8C;
    font-size: 0.75rem;
}

.task-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.task-modal__content {
    width: min(420px, 90vw);
    background: rgba(20, 20, 25, 0.95);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.task-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
}

.task-modal__title {
    font-size: 1.2rem;
    font-weight: 600;
}

.task-modal__desc {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.task-modal__note {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

.task-modal__rewards {
    margin-top: 14px;
    display: flex;
    gap: 8px;
}

.task-modal__buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.penalty-modal__title {
    margin-top: 6px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff8080;
}

.penalty-modal__message {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.penalty-modal__amount {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 77, 109, 0.22));
    border: 1px solid rgba(255, 128, 128, 0.4);
    font-weight: 700;
    color: #ffd166;
    text-align: center;
}

.penalty-modal__tasks {
    margin: 12px 0 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
}

.penalty-modal__tasks li {
    margin-bottom: 6px;
}

.penalty-modal__note {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.penalty-modal__actions {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tasks-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-progress {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(251, 220, 46, 0.12), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(251, 220, 46, 0.35);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-progress__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.shop-progress__stage {
    font-size: 1.05rem;
    font-weight: 600;
}

.shop-progress__subtitle {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.shop-progress__percent {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent, #fbdc2e);
}

.shop-progress__bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.shop-progress__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #fbdc2e, #ff8d23);
}

.shop-progress__cta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.shop-hero h2 {
    margin: 0;
    font-size: 1.35rem;
}

.shop-hero p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.shop-limits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.shop-limit {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-limit__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.shop-limit__value {
    font-size: 1.1rem;
    font-weight: 600;
}

.shop-warning {
    border-radius: 16px;
    padding: 12px 16px;
    background: rgba(255, 159, 67, 0.08);
    border: 1px solid rgba(255, 159, 67, 0.25);
    font-size: 0.9rem;
}

.shop-warning ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.shop-nudges {
    background: rgba(255, 159, 67, 0.12);
    border-color: rgba(255, 159, 67, 0.35);
}

.shop-nudges strong {
    font-weight: 600;
}

.shop-nudges li {
    margin: 4px 0;
}

.shop-packages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-package {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: inherit;
    cursor: pointer;
}

.shop-package--selected {
    border-color: #fbdc2e;
    background: rgba(251, 220, 46, 0.08);
}

.shop-package--locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.shop-package__coins {
    font-size: 1.2rem;
    font-weight: 600;
}

.shop-package__value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.shop-package__aside {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.6px;
}

.shop-package__cta {
    color: #2fea8c;
}

.shop-package__lock {
    color: rgba(255, 255, 255, 0.5);
}

.shop-package__hint {
    margin-top: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
}

.shop-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-selection {
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
}

.shop-field span {
    color: rgba(255, 255, 255, 0.7);
}

.shop-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    font-size: 1rem;
}

.shop-upload {
    display: flex;
    gap: 8px;
    align-items: center;
}

.shop-upload input[type="file"] {
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.shop-upload__clear {
    white-space: nowrap;
}

.shop-upload__manual {
    margin-top: 8px;
    font-size: 0.9rem;
}

.shop-upload__status {
    margin-top: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.shop-upload__status--error {
    color: #ff6b6b;
}

.shop-upload__preview {
    margin-top: 10px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 260px;
}

.shop-upload__preview img {
    display: block;
    width: 100%;
    height: auto;
}

.shop-form__hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.shop-lock {
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.shop-empty {
    padding: 18px;
    text-align: center;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.shop-history {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.shop-history__title {
    font-weight: 600;
    margin-bottom: 10px;
}

.shop-history__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.shop-history-item:last-child {
    border-bottom: none;
}

.shop-history-item__date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.shop-history-item__amount {
    font-weight: 600;
}

.shop-history-item__login {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-badge--pending {
    color: #fbdc2e;
    border-color: rgba(251, 220, 46, 0.5);
}

.status-badge--approved {
    color: #2fea8c;
    border-color: rgba(47, 234, 140, 0.5);
}

.status-badge--rejected {
    color: #ff6b81;
    border-color: rgba(255, 107, 129, 0.5);
}

.task-card {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
}

.task-card--review {
    background: linear-gradient(135deg, rgba(255, 214, 126, 0.1), rgba(255, 111, 145, 0.08));
    border-color: rgba(255, 214, 126, 0.35);
    box-shadow: 0 20px 36px rgba(255, 153, 102, 0.15);
}

.task-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #1D6FE4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.task-icon img {
    width: 28px;
    height: 28px;
}

.task-icon--telegram {
    background: rgba(33, 110, 228, 0.2);
    border: 1px solid rgba(33, 110, 228, 0.45);
}

.task-icon--telegram img {
    width: 24px;
    height: 24px;
}

.task-card--review .task-icon {
    background: linear-gradient(135deg, #ffd67e, #ff6f91);
}

.task-info {
    flex: 1;
}

.task-title {
    font-weight: 600;
    font-size: 1rem;
}

.task-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.task-reward {
    font-size: 0.9rem;
    margin-top: 6px;
    color: #FBDC2E;
}

.task-rewards {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.reward-pill {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.1;
}

.reward-energy {
    color: #2feA8C;
}

.reward-coins {
    color: #FBDC2E;
}

.reward-pill__value {
    font-weight: 700;
}

.reward-pill__icon {
    width: 16px;
    height: 16px;
}

.reward-pill__code {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.task-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
}

.tasks-empty {
    text-align: center;
    padding: 32px 12px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.error-panel {
    text-align: center;
    gap: 12px;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20vh;
    color: rgba(255, 255, 255, 0.8);
}

.spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--accent, #FBDC2E);
    animation: spin 0.85s linear infinite;
}

.coin-click-fx {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 1;
    pointer-events: none;
    z-index: 1500;
    text-shadow: 0 10px 18px rgba(0, 0, 0, 0.6);
    transition: transform 0.45s ease-out, opacity 0.45s ease-out;
}

.coin-click-fx--active {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-60px);
}

.debug-toggle {
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom, 0));
    right: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 8, 12, 0.85);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 2400;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.has-nav .debug-toggle {
    bottom: calc(var(--nav-height, 0px) + 16px);
}

.debug-toggle[aria-pressed="true"] {
    border-color: rgba(251, 220, 46, 0.7);
    color: #fbdc2e;
    background: rgba(251, 220, 46, 0.12);
}

.app-footer {
    padding: 16px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes level-orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes level-pulse {
    0% {
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 35px rgba(251, 220, 46, 0.25);
    }
    40% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 60px rgba(251, 220, 46, 0.5);
    }
    100% {
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 35px rgba(251, 220, 46, 0.25);
    }
}

/* ============================================
   PARTICLE EFFECTS ON CLICK
   ============================================ */

.coin-particle {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1499;
    opacity: 1;
    background: radial-gradient(circle, var(--accent, #fbdc2e), rgba(255, 142, 60, 0.8));
    box-shadow: 0 0 6px var(--accent, #fbdc2e);
    transition: none;
}

.coin-particle--active {
    animation: particleFly 0.6s ease-out forwards;
}

@keyframes particleFly {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--px, 0), var(--py, -80px)) scale(0.3);
    }
}

.coin-click-fx {
    text-shadow: 0 10px 18px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent, rgba(251, 220, 46, 0.4));
}

.coin-button--tapped {
    animation: coinPulse 0.15s ease-out;
}

@keyframes coinPulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.94); }
    100% { transform: scale(1); }
}

/* ============================================
   DAILY STREAK
   ============================================ */

.daily-streak {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 142, 60, 0.15), rgba(251, 220, 46, 0.08));
    border: 1px solid rgba(255, 142, 60, 0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.daily-streak:active {
    background: linear-gradient(135deg, rgba(255, 142, 60, 0.25), rgba(251, 220, 46, 0.15));
}

.daily-streak__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.daily-streak__fire {
    font-size: 1.5rem;
    line-height: 1;
}

.daily-streak__info {
    flex: 1;
}

.daily-streak__title {
    font-weight: 600;
    font-size: 0.9rem;
}

.daily-streak__subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1px;
}

.daily-streak__days {
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

.daily-streak__day {
    flex: 1;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.daily-streak__day--done {
    background: rgba(255, 142, 60, 0.3);
    border-color: rgba(255, 142, 60, 0.6);
    color: #fff;
}

.daily-streak__day--today {
    background: linear-gradient(135deg, #fbdc2e, #ff8e3c);
    border-color: #fbdc2e;
    color: #0c0c0c;
    box-shadow: 0 0 10px rgba(251, 220, 46, 0.4);
}

/* Daily streak modal */
.streak-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 16px;
}

.streak-modal__content {
    width: min(400px, 90vw);
    border-radius: 28px;
    padding: 28px 24px;
    background: radial-gradient(circle at top, rgba(56, 56, 86, 0.7), rgba(17, 17, 26, 0.96));
    border: 1px solid rgba(255, 142, 60, 0.3);
    text-align: center;
}

.streak-modal__fire {
    font-size: 3rem;
    margin-bottom: 8px;
}

.streak-modal__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.streak-modal__desc {
    margin: 8px 0 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.streak-modal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.streak-modal__cell {
    padding: 8px 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.streak-modal__cell--done {
    background: rgba(255, 142, 60, 0.2);
    border-color: rgba(255, 142, 60, 0.5);
}

.streak-modal__cell--today {
    background: linear-gradient(135deg, rgba(251, 220, 46, 0.25), rgba(255, 142, 60, 0.2));
    border-color: #fbdc2e;
    box-shadow: 0 0 12px rgba(251, 220, 46, 0.3);
}

.streak-modal__cell-day {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.streak-modal__cell-reward {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 2px;
}

.streak-modal__cell--done .streak-modal__cell-reward {
    color: #ff8e3c;
}

.streak-modal__cell--today .streak-modal__cell-reward {
    color: #fbdc2e;
}

/* ============================================
   VPN PROMO inside Streak Modal (раз в неделю)
   ============================================ */

.streak-modal__vpn-promo {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 180, 100, 0.04));
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.streak-modal__vpn-promo:active {
    transform: scale(0.98);
}

.streak-modal__vpn-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.06), transparent 60%);
    pointer-events: none;
}

.streak-modal__vpn-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.streak-modal__vpn-shield {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.streak-modal__vpn-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.streak-modal__vpn-title span {
    background: linear-gradient(90deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.streak-modal__vpn-badge {
    margin-left: auto;
    padding: 3px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35, #ff3366);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.streak-modal__vpn-text {
    margin: 0 0 12px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    z-index: 1;
}

.streak-modal__vpn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a1a2e;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 255, 136, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.2s;
}

.streak-modal__vpn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: vpn-ad-shimmer 3s ease-in-out infinite;
}

.streak-modal__vpn-cta:active {
    transform: scale(0.97);
}

/* ============================================
   OFFLINE INCOME POPUP
   ============================================ */

.offline-income {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3100;
    padding: 16px;
}

.offline-income__content {
    width: min(380px, 90vw);
    border-radius: 28px;
    padding: 32px 24px;
    background: radial-gradient(circle at top, rgba(251, 220, 46, 0.15), rgba(17, 17, 26, 0.96));
    border: 1px solid rgba(251, 220, 46, 0.3);
    text-align: center;
}

.offline-income__icon {
    font-size: 3rem;
    margin-bottom: 8px;
    animation: offlineCoinBounce 1s ease-in-out infinite;
}

@keyframes offlineCoinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.offline-income__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.offline-income__amount {
    font-size: 2rem;
    font-weight: 700;
    color: #fbdc2e;
    margin: 12px 0;
    text-shadow: 0 0 20px rgba(251, 220, 46, 0.4);
}

.offline-income__time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

/* ============================================
   FORTUNE WHEEL
   ============================================ */

.fortune-banner {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.18), rgba(251, 220, 46, 0.08));
    border: 1px solid rgba(147, 51, 234, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.fortune-banner:active {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.28), rgba(251, 220, 46, 0.15));
}

.fortune-banner__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fortune-banner__info {
    flex: 1;
    min-width: 0;
}

.fortune-banner__title {
    font-weight: 600;
    font-size: 0.9rem;
}

.fortune-banner__subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1px;
}

.fortune-banner__badge {
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(147, 51, 234, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.6);
    color: #d4a5ff;
    white-space: nowrap;
    flex-shrink: 0;
}

.fortune-banner__badge--used {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
}

/* Fortune wheel modal */
.fortune-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3200;
    padding: 16px;
}

.fortune-modal__content {
    width: min(360px, 92vw);
    border-radius: 28px;
    padding: 28px 20px;
    background: radial-gradient(circle at top, rgba(100, 50, 180, 0.3), rgba(17, 17, 26, 0.97));
    border: 1px solid rgba(147, 51, 234, 0.4);
    text-align: center;
}

.fortune-modal__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.fortune-modal__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.fortune-wheel {
    position: relative;
    width: min(280px, 70vw);
    height: min(280px, 70vw);
    margin: 0 auto 20px;
}

.fortune-wheel__canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(147, 51, 234, 0.6);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.fortune-wheel__pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.fortune-result {
    padding: 16px;
    border-radius: 16px;
    background: rgba(251, 220, 46, 0.12);
    border: 1px solid rgba(251, 220, 46, 0.35);
    margin-bottom: 16px;
}

.fortune-result__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.fortune-result__amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fbdc2e;
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */

.achievements-section {
    width: 100%;
}

.achievements-section__title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.achievement-card {
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.achievement-card--unlocked {
    border-color: rgba(47, 234, 140, 0.4);
    background: rgba(47, 234, 140, 0.05);
}

.achievement-card--claimable {
    border-color: rgba(251, 220, 46, 0.5);
    box-shadow: 0 0 15px rgba(251, 220, 46, 0.2);
    cursor: pointer;
    animation: achievementGlow 2s ease-in-out infinite;
}

@keyframes achievementGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(251, 220, 46, 0.15); }
    50% { box-shadow: 0 0 20px rgba(251, 220, 46, 0.35); }
}

.achievement-card__icon {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.achievement-card--locked .achievement-card__icon {
    filter: grayscale(1);
    opacity: 0.4;
}

.achievement-card__name {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.achievement-card__progress {
    margin-top: 6px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.achievement-card__progress-bar {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent, #fbdc2e), #ff8e3c);
    transition: width 0.3s;
}

.achievement-card__reward {
    margin-top: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.achievement-card--unlocked .achievement-card__reward {
    color: #2fea8c;
}

.achievement-card__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2fea8c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #0c0c0c;
    font-weight: 700;
}

/* ============================================
   SEASON PASS / EVENT BANNER
   ============================================ */

.event-banner {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(47, 234, 140, 0.12), rgba(52, 152, 219, 0.08));
    border: 1px solid rgba(47, 234, 140, 0.3);
    display: flex;
    align-items: center;
    gap: 14px;
}

.event-banner__icon {
    font-size: 1.6rem;
}

.event-banner__info {
    flex: 1;
}

.event-banner__title {
    font-weight: 600;
    font-size: 0.95rem;
}

.event-banner__subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.event-banner__timer {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(47, 234, 140, 0.2);
    border: 1px solid rgba(47, 234, 140, 0.5);
    color: #2fea8c;
}

/* Golden Hour x2 event */
.golden-hour-active {
    position: relative;
    overflow: visible;
}

.golden-hour-active::before {
    content: 'x2';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbdc2e, #ff8e3c);
    color: #0c0c0c;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(251, 220, 46, 0.5);
    animation: goldenHourPulse 1.5s ease-in-out infinite;
    z-index: 5;
}

@keyframes goldenHourPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================
   MINI LEVEL PROGRESS ON MAIN SCREEN
   ============================================ */

.mine-level-mini {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mine-level-mini__badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(251, 220, 46, 0.9), rgba(255, 142, 60, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0c0c0c;
    flex-shrink: 0;
}

.mine-level-mini__info {
    flex: 1;
    min-width: 0;
}

.mine-level-mini__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.mine-level-mini__level {
    font-weight: 600;
}

.mine-level-mini__xp {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
}

.mine-level-mini__bar {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-top: 4px;
}

.mine-level-mini__bar-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #fbdc2e, #ff8e3c);
    transition: width 0.3s;
}

/* ================================================================
   VPN Ad Banner — MATRIX VPN
   ================================================================ */

@keyframes vpn-ad-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes vpn-ad-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.12), 0 8px 32px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.22), 0 8px 40px rgba(0, 0, 0, 0.5); }
}

@keyframes vpn-ad-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes vpn-ad-text-in {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes vpn-ad-text-out {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes vpn-ad-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.vpn-ad-banner {
    position: relative;
    width: 100%;
    margin-top: 20px;
    border-radius: 20px;
    padding: 18px;
    background: linear-gradient(135deg, #0a1628 0%, #0e2a1e 35%, #0a1628 65%, #160a28 100%);
    background-size: 250% 250%;
    animation: vpn-ad-gradient 10s ease infinite, vpn-ad-glow 4s ease-in-out infinite;
    border: 1px solid rgba(0, 255, 136, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    text-align: left;
}

.vpn-ad-banner:active {
    transform: scale(0.98);
}

/* Мягкий глоу-оверлей */
.vpn-ad-banner::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at 25% 25%, rgba(0, 255, 136, 0.07) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.vpn-ad-banner > * {
    position: relative;
    z-index: 1;
}

/* Верхняя строка: тег + бейдж в одной строке */
.vpn-ad-banner__top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.vpn-ad-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.18);
    color: #00ff88;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vpn-ad-banner__tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00ff88;
    animation: vpn-ad-pulse 2s ease-in-out infinite;
}

.vpn-ad-banner__free-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35, #ff3366);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.35);
    flex-shrink: 0;
}

/* Шапка: шилд + заголовок горизонтально */
.vpn-ad-banner__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.vpn-ad-banner__shield {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.18), rgba(0, 180, 100, 0.08));
    border: 1px solid rgba(0, 255, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.vpn-ad-banner__title-group {
    flex: 1;
    min-width: 0;
}

.vpn-ad-banner__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.vpn-ad-banner__title span {
    background: linear-gradient(90deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vpn-ad-banner__subtitle {
    margin: 3px 0 0;
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Рекламный текст */
.vpn-ad-banner__text-area {
    min-height: 42px;
    margin-bottom: 14px;
}

.vpn-ad-banner__text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    animation: vpn-ad-text-in 0.45s ease forwards;
}

.vpn-ad-banner__text--out {
    animation: vpn-ad-text-out 0.35s ease forwards;
}

/* Фичи — горизонтальная полоса */
.vpn-ad-banner__features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    justify-content: flex-start;
}

.vpn-ad-banner__feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.12);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.vpn-ad-banner__feature-icon {
    font-size: 0.75rem;
}

/* CTA кнопка */
.vpn-ad-banner__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a1628;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.25);
    position: relative;
    overflow: hidden;
}

.vpn-ad-banner__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: vpn-ad-shimmer 3.5s ease-in-out infinite;
}

.vpn-ad-banner__cta:active {
    transform: scale(0.97);
}

.vpn-ad-banner__cta-icon {
    font-size: 1rem;
}

/* Нижняя строка */
.vpn-ad-banner__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vpn-ad-banner__bot-handle {
    font-size: 0.73rem;
    color: rgba(0, 255, 136, 0.6);
    font-weight: 600;
}

.vpn-ad-banner__dismiss {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.63rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.vpn-ad-banner__dismiss:hover,
.vpn-ad-banner__dismiss:active {
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.vpn-ad-banner--hidden {
    display: none;
}

