﻿        :root {
            --brand-gold: #f6bf26;
            --brand-gold-soft: rgba(246, 191, 38, 0.12);
            --brand-navy: #091022;
            --brand-navy-soft: rgba(9, 16, 34, 0.8);
            --brand-surface: rgba(10, 18, 38, 0.82);
            --brand-surface-strong: rgba(7, 14, 29, 0.95);
            --brand-border: rgba(255, 255, 255, 0.1);
            --brand-copy: #edf2ff;
            --brand-muted: #98a4c4;
            --brand-sky: #53a9e8;
            --brand-red: #ef6654;
            --brand-emerald: #4cc38a;
            --brand-violet: #7f7ce8;
            --plan-soft: #f4f6fb;
            --plan-ink: #102042;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Manrope', sans-serif;
            min-height: 100vh;
            color: var(--brand-copy);
            background:
                radial-gradient(circle at 0% 0%, rgba(83, 169, 232, 0.2), transparent 28%),
                radial-gradient(circle at 100% 10%, rgba(246, 191, 38, 0.12), transparent 22%),
                linear-gradient(120deg, rgba(6, 11, 24, 0.98), rgba(7, 15, 33, 0.95) 42%, rgba(9, 16, 34, 1)),
                #060b16;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 120px 120px;
            opacity: 0.06;
            pointer-events: none;
            z-index: -2;
        }

        h1, h2, h3, h4 {
            font-family: 'Sora', sans-serif;
        }

        .bg-glow {
            position: fixed;
            inset: 0;
            z-index: -1;
            background:
                radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.04), transparent 18%),
                linear-gradient(90deg, rgba(5, 10, 20, 0.2), rgba(6, 12, 24, 0.05));
            pointer-events: none;
        }

        .brand-nav {
            position: relative;
            background: rgba(7, 12, 29, 0.88);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
            backdrop-filter: blur(18px);
        }

        .dashboard-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: linear-gradient(180deg, rgba(6, 11, 24, 0.96), rgba(6, 11, 24, 0.72) 72%, transparent);
            backdrop-filter: blur(8px);
        }

        .dashboard-nav-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .dashboard-menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            min-width: 124px;
            min-height: 52px;
            padding: 0 1.15rem;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 1rem;
            background: rgba(255, 255, 255, 0.04);
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .dashboard-menu-toggle:hover,
        .dashboard-menu-toggle:focus-visible,
        .dashboard-menu-toggle.is-active {
            outline: 0;
            transform: translateY(-1px);
            border-color: rgba(246, 191, 38, 0.26);
            background: rgba(246, 191, 38, 0.08);
        }

        .dashboard-quick-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-right: 0.35rem;
        }

        .dashboard-quick-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 0.95rem;
            color: var(--brand-copy);
            font-size: 0.82rem;
            font-weight: 500;
            text-decoration: none;
            transition: 0.2s ease;
        }


        .brand-mark {
            width: 2.75rem;
            height: 2.75rem;
            display: block;
            flex: 0 0 auto;
            object-fit: contain;
        }

        .glass-panel,
        .mission-card,
        .stat-panel,
        .surface-panel {
            background: var(--brand-surface);
            border: 1px solid var(--brand-border);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
        }

        .glass-panel {
            border-radius: 2rem;
            backdrop-filter: blur(14px);
        }

        .surface-panel {
            border-radius: 1.7rem;
        }

        .stat-panel {
            border-radius: 1.75rem;
            padding: 1.4rem;
        }

        .mission-card {
            border-radius: 1.5rem;
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .mission-card:hover,
        .surface-panel:hover,
        .stat-panel:hover {
            transform: translateY(-3px);
            border-color: rgba(246, 191, 38, 0.24);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.55rem 1rem;
            border-radius: 999px;
            background: rgba(246, 191, 38, 0.1);
            border: 1px solid rgba(246, 191, 38, 0.24);
            color: var(--brand-gold);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .section-title {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.9rem;
            margin-bottom: 1.25rem;
        }

        .section-title h3 {
            font-size: 1.35rem;
            font-weight: 800;
            color: white;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.35rem 0.7rem;
            border-radius: 999px;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .section-badge.gold {
            background: rgba(246, 191, 38, 0.12);
            color: var(--brand-gold);
            border: 1px solid rgba(246, 191, 38, 0.22);
        }

        .section-badge.blue {
            background: rgba(83, 169, 232, 0.12);
            color: #85c9ff;
            border: 1px solid rgba(83, 169, 232, 0.22);
        }

        .input-field {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 0.95rem 1rem 0.95rem 2.9rem;
            border-radius: 1rem;
            color: white;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .input-field::placeholder {
            color: rgba(255, 255, 255, 0.42);
        }

        .input-field:focus {
            outline: none;
            border-color: rgba(246, 191, 38, 0.52);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 0 4px rgba(246, 191, 38, 0.1);
        }

        .primary-btn {
            background: linear-gradient(135deg, #ffca2e 0%, #efb00f 100%);
            color: var(--brand-navy);
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            box-shadow: 0 18px 35px rgba(246, 191, 38, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 42px rgba(246, 191, 38, 0.3);
        }

        .secondary-btn {
            background: rgba(255, 255, 255, 0.04);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: 0.2s ease;
        }

        .secondary-btn:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(246, 191, 38, 0.22);
        }

        .cupom-chip {
            background: linear-gradient(135deg, #ffca2e 0%, #efb00f 100%);
            color: #08101f;
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            padding: 0.55rem 0.7rem;
            border-radius: 0.95rem;
            text-align: center;
            font-size: 0.78rem;
            border: 1px solid rgba(255,255,255,0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            white-space: nowrap;
        }

.daily-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
            border-radius: 999px;
            padding: 0.35rem 0.7rem;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: rgba(83, 169, 232, 0.12);
            color: #85c9ff;
    border: 1px solid rgba(83, 169, 232, 0.22);
}

.allocation-summary {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.allocation-shell {
    background:
        radial-gradient(circle at top right, rgba(246, 191, 38, 0.08), transparent 26%),
        rgba(10, 18, 38, 0.82);
}

.allocation-shell-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.allocation-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(246, 191, 38, 0.22);
    background: rgba(246, 191, 38, 0.08);
    color: var(--brand-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.allocation-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
    min-height: 4.8rem;
    min-width: 16rem;
    padding: 0.8rem 1.15rem 0.8rem 1.25rem;
    border: 1px solid rgba(198, 212, 236, 0.22);
    border-radius: 1.45rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.allocation-toggle:hover {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.08);
    border-color: rgba(246, 191, 38, 0.38);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
    transform: translateY(-1px);
}

.allocation-toggle:active {
    transform: translateY(1px);
}

.allocation-toggle span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d7dfef;
}

.allocation-toggle i {
    font-size: 0.95rem;
    color: #c9d4ea;
    transition: transform 0.2s ease;
}

.allocation-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.allocation-toggle-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.allocation-toggle-hint {
    position: absolute;
    left: calc(100% + 0.9rem);
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffcf52 0%, #f1b60d 100%);
    color: #111827;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 16px 34px rgba(246, 191, 38, 0.24);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.allocation-toggle-hint::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid #f4c229;
    transform: translateY(-50%);
}

.allocation-toggle-hint.is-visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.allocation-panel {
    margin-top: 1.75rem;
}

.allocation-summary-card {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.04);
}

.allocation-summary-card span {
    display: block;
    color: var(--brand-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.allocation-summary-card strong {
    display: block;
    margin-top: 0.55rem;
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 1.7rem;
    line-height: 1;
}

.allocation-warning {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(246, 191, 38, 0.18);
    background: rgba(246, 191, 38, 0.08);
    color: #f7df9b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.allocation-warning.is-error {
    border-color: rgba(239, 102, 84, 0.28);
    background: rgba(239, 102, 84, 0.12);
    color: #ffb4a7;
}

.allocation-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.allocation-empty {
    grid-column: 1 / -1;
    padding: 1.2rem;
    border-radius: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    color: var(--brand-muted);
    text-align: center;
}

.allocation-card {
    padding: 0.95rem 1rem 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
}

.allocation-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.allocation-card-label {
    display: block;
    color: var(--brand-gold);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.allocation-card h4 {
    margin-top: 0.35rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.15;
}

.allocation-card p {
    margin-top: 0.55rem;
    color: var(--brand-muted);
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 31rem;
}

.allocation-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.35rem;
    border-radius: 0.9rem;
    background: rgba(246, 191, 38, 0.12);
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.allocation-controls {
    display: grid;
    grid-template-columns: 52px 44px minmax(0, 1fr) 44px 52px;
    gap: 0.55rem;
    margin-top: 0.8rem;
}

.allocation-stepper,
.allocation-number {
    min-height: 44px;
    border-radius: 0.85rem;
}

.allocation-stepper {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-size: 1.05rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.allocation-stepper:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(246, 191, 38, 0.22);
}

.allocation-stepper:active {
    transform: translateY(1px);
}

.allocation-stepper:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.allocation-number {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 10, 20, 0.32);
    color: white;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
}

.allocation-number:focus {
    outline: none;
    border-color: rgba(246, 191, 38, 0.44);
    box-shadow: 0 0 0 4px rgba(246, 191, 38, 0.08);
}

.allocation-stepper.is-wide {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.roulette-panel {
    background:
        radial-gradient(circle at top, rgba(246, 191, 38, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(9, 17, 31, 0.96), rgba(6, 12, 22, 0.98));
}

.roulette-preview-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.roulette-preview-kicker {
    margin: 0 0 10px;
    color: var(--brand-gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
}

.roulette-preview-head h3 {
    margin: 0;
    max-width: 20ch;
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.roulette-preview-badge {
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
}

.roulette-copy {
    max-width: 44ch;
    margin-top: 0.85rem;
    color: var(--brand-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.roulette-preview-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
    margin-top: 1.35rem;
}

.roulette-preview-summary {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roulette-preview-stat {
    padding: 1rem 1.05rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.roulette-preview-stat-soft {
    border-radius: 1.5rem 1rem 1rem 1rem;
    background: rgba(255, 202, 51, 0.06);
    border-color: rgba(255, 202, 51, 0.12);
}

.roulette-preview-stat span {
    display: block;
    color: var(--brand-muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
}

.roulette-preview-stat strong {
    display: block;
    margin-top: 0.55rem;
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.3;
}

.roulette-preview-stat small {
    display: block;
    margin-top: 0.4rem;
    color: var(--brand-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.roulette-stage {
    position: relative;
    display: grid;
    place-items: center;
    padding-top: 0.25rem;
}

.roulette-wheel-shell {
    position: relative;
    display: grid;
    place-items: center;
    width: 16.2rem;
    height: 16.8rem;
    padding-top: 0.6rem;
}



.roulette-pointer {
    position: absolute;
    top: 0.05rem;
    z-index: 3;
    display: inline-flex;
    align-items: end;
    justify-content: center;
    width: 24px;
    height: 34px;
    color: #08101f;
}

.roulette-pointer::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0px 0px 74px 74px;
    background: linear-gradient(180deg, #ffd45c 0%, #efb00f 100%);
}

.roulette-pointer svg {
    position: relative;
    z-index: 1;
    width: 1.1rem;
    height: 1.1rem;
}

.roulette-wheel {
    position: relative;
    width: 13.2rem;
    height: 13.2rem;
    border-radius: 999px;
    border: 0;
    background: conic-gradient(
        from -90deg,
        #5230a4 0deg 36deg,
        #1e63b5 36deg 72deg,
        #18a6da 72deg 108deg,
        #60bf36 108deg 144deg,
        #e1df11 144deg 180deg,
        #f4a519 180deg 216deg,
        #f05f1d 216deg 252deg,
        #e62a4e 252deg 288deg,
        #cc1387 288deg 324deg,
        #7d33b8 324deg 360deg
    );
    transition: transform 4.8s cubic-bezier(0.18, 0.88, 0.18, 1);
    overflow: hidden;
    box-shadow:
        0 26px 46px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(246, 191, 38, 0.1);
}

.roulette-wheel::after {
    content: "";
    position: absolute;
    inset: 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle, rgba(8, 16, 31, 0.1), rgba(8, 16, 31, 0.84));
}

.roulette-wheel-core {
    position: absolute;
    inset: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.9rem;
    height: 4.9rem;
    border-radius: 999px;
    border: 1px solid rgba(246, 191, 38, 0.34);
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.98), rgba(12, 22, 42, 0.94));
    color: white;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 0.42rem rgba(7, 12, 22, 0.92),
        0 18px 32px rgba(0, 0, 0, 0.28);
}

.roulette-wheel-core-logo {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.roulette-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.15rem;
}

.roulette-spin-btn {
    min-height: 3.4rem;
    text-decoration: none;
    flex: 1 1 12rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.roulette-preview-link {
    min-height: 3.4rem;
    flex: 1 1 12rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

        .id-box-container {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(246, 191, 38, 0.2);
            border-radius: 1.25rem;
            padding: 1rem;
            margin-top: 1.5rem;
            width: 100%;
            text-align: center;
        }

        .rules-inline-banner {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            margin-top: 1.1rem;
            color: var(--brand-muted);
            font-size: 0.84rem;
            line-height: 1.4;
        }

        .rules-inline-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 32px;
            padding: 0 0.7rem;
            border-radius: 999px;
            border: 1px solid rgba(246, 191, 38, 0.22);
            background: rgba(246, 191, 38, 0.1);
            color: var(--brand-gold);
            font-size: 0.78rem;
            font-weight: 500;
            transition: 0.2s ease;
        }

        .rules-inline-button:hover,
        .rules-inline-button:focus-visible {
            background: rgba(246, 191, 38, 0.16);
            border-color: rgba(246, 191, 38, 0.34);
            color: #fff2c4;
            outline: 0;
        }

        .id-number {
            font-family: 'Sora', sans-serif;
            letter-spacing: 0.2em;
            font-weight: 800;
            color: white;
        }

        .modal-overlay {
            background: rgba(2, 4, 10, 0.84);
            backdrop-filter: blur(6px);
        }

        .regras-scroll::-webkit-scrollbar,
        .custom-scroll::-webkit-scrollbar {
            width: 6px;
        }

        .regras-scroll::-webkit-scrollbar-thumb,
        .custom-scroll::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.18);
            border-radius: 999px;
        }

        .regras-scroll::-webkit-scrollbar-track,
        .custom-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        @keyframes spinSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .animate-spin-slow {
            animation: spinSlow 4s linear infinite;
        }

        .all-plans-panel {
            border-radius: 2rem;
            background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
            padding: 2rem;
        }

        .all-plans-header {
            margin-bottom: 1.75rem;
        }

        .all-plans-header h3 {
            color: var(--plan-ink);
            font-size: clamp(2.2rem, 4vw, 3.1rem);
            font-weight: 800;
            letter-spacing: -0.04em;
        }

        .all-plans-header p {
            margin-top: 0.85rem;
            color: #51617f;
            font-size: 1rem;
            line-height: 1.7;
            max-width: 48rem;
        }

        .plan-category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .plan-tab {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 3.25rem;
            padding: 0.85rem 1.35rem;
            border-radius: 0.9rem;
            border: 1px solid #d2dae8;
            background: #f5f7fb;
            color: #23365b;
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 800;
            letter-spacing: -0.01em;
            transition: 0.2s ease;
            cursor: pointer;
        }

        .plan-tab:hover {
            border-color: #b7c5dd;
            background: #eef3fb;
        }

        .plan-tab.is-active {
            background: #1e2f82;
            border-color: #1e2f82;
            color: white;
            box-shadow: 0 16px 34px rgba(30, 47, 130, 0.24);
        }

        .catalog-panel[hidden] {
            display: none !important;
        }

        .catalog-panel.is-active {
            display: block;
        }

        .catalog-panel {
            overflow-x: auto;
            padding-bottom: 0.45rem;
        }

        .catalog-slider-dots {
            display: none;
        }

        .catalog-panel::-webkit-scrollbar {
            height: 8px;
        }

        .catalog-panel::-webkit-scrollbar-thumb {
            background: rgba(30, 47, 130, 0.24);
            border-radius: 999px;
        }

        .catalog-panel::-webkit-scrollbar-track {
            background: rgba(210, 218, 232, 0.4);
            border-radius: 999px;
        }

        .catalog-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 1.2rem;
            align-items: stretch;
            min-width: 100%;
        }

        .catalog-grid.three-columns {
            min-width: 100%;
        }

        .catalog-card {
            display: flex;
            flex-direction: column;
            flex: 1 1 0;
            min-width: 0;
            min-height: 100%;
            border-radius: 1.35rem;
            border: 1px solid #d6deec;
            background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
            padding: 1.6rem;
            color: #1a2949;
            box-shadow: 0 12px 30px rgba(15, 29, 66, 0.08);
        }

        .catalog-grid.three-columns .catalog-card {
            flex-basis: 0;
        }

        .catalog-card.is-highlighted {
            border-color: rgba(246, 191, 38, 0.72);
            background: linear-gradient(180deg, #fffdfa 0%, #fff7e7 100%);
            box-shadow: 0 16px 40px rgba(246, 191, 38, 0.12);
        }

        .catalog-card span:first-child {
            margin-bottom: 0.85rem;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #4b2aa8;
        }

        .catalog-card h4 {
            font-size: 1.25rem;
            font-weight: 800;
            line-height: 1.2;
            color: #162445;
        }

        .catalog-card p {
            margin-top: 0.8rem;
            color: #51617f;
            font-size: 0.98rem;
            line-height: 1.75;
        }

        .catalog-price-wrap {
            margin-top: 1.1rem;
            margin-bottom: 1rem;
        }

        .catalog-price {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 0.25rem;
            color: #132244;
        }

        .catalog-price small,
        .catalog-price em {
            font-style: normal;
            font-size: 0.9rem;
            opacity: 0.72;
        }

        .catalog-price strong {
            font-family: 'Sora', sans-serif;
            font-size: 2.25rem;
            line-height: 1;
            font-weight: 800;
        }

        .price-was {
            margin-bottom: 0.25rem;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #596987;
        }

        .catalog-card ul {
            list-style: none;
            display: grid;
            gap: 0.85rem;
            padding: 0;
            margin: 0 0 1.2rem;
            color: #30425f;
        }

        .catalog-card li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .catalog-card li::before {
            content: "\2022";
            color: #11a7d9;
            font-weight: 900;
            line-height: 1.2;
        }

        .catalog-partners {
            display: grid;
            gap: 0.7rem;
            margin-top: 0.35rem;
            padding-top: 0.2rem;
        }

        .catalog-partners span {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #6d7a96;
        }

        .catalog-partners-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .catalog-partners-row img {
            display: block;
            max-height: 2rem;
            width: auto;
            border-radius: 0.85rem;
            border: 1px solid #d2dae8;
            background: #f0f4fb;
            padding: 0.45rem 0.7rem;
        }

        .catalog-actions {
            margin-top: auto;
            display: grid;
            gap: 0.65rem;
        }

        .catalog-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 3rem;
            padding: 0.8rem 1rem;
            border-radius: 0.85rem;
            border: 1px solid #1e2f82;
            background: #1e2f82;
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 800;
            transition: 0.2s ease;
        }

        .catalog-link:hover {
            filter: brightness(1.05);
        }

        .catalog-link-secondary {
            background: transparent;
            color: #1e2f82;
            border-color: #c7d1e4;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation: none !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }

@media (max-width: 1200px) {
    .dashboard-nav-actions {
        justify-content: flex-start;
    }

    .dashboard-quick-links {
        width: 100%;
        margin-right: 0;
    }

    .allocation-shell-head {
        flex-direction: column;
        align-items: stretch;
    }

    .allocation-toggle {
        justify-content: space-between;
        width: 100%;
    }

    .allocation-toggle-hint {
        left: auto;
        right: 0;
        top: calc(100% + 0.75rem);
        transform: translateY(-8px);
    }

    .allocation-toggle-hint::before {
        top: auto;
        right: 1.5rem;
        bottom: 100%;
        border-top: 0;
        border-bottom: 10px solid #f4c229;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        transform: none;
    }

    .allocation-toggle-hint.is-visible {
        transform: translateY(0);
    }

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

    .catalog-grid {
        min-width: max-content;
    }

            .catalog-card {
                flex: 0 0 16rem;
            }

            .catalog-grid.three-columns .catalog-card {
                flex-basis: 17rem;
            }
        }

@media (max-width: 720px) {
    .dashboard-header {
        padding-top: 0.65rem;
    }

    .brand-nav {
        flex-wrap: nowrap;
        align-items: center;
        border-radius: 1.4rem;
        padding: 1rem;
    }

    .brand-nav > .flex.items-center.gap-3 {
        min-width: 0;
        flex: 1 1 auto;
        gap: 0.75rem;
    }

    .brand-nav > .flex.items-center.gap-3 .brand-mark {
        width: 2.35rem;
        height: 2.35rem;
    }

    .brand-nav > .flex.items-center.gap-3 .leading-none {
        min-width: 0;
    }

    .brand-nav > .flex.items-center.gap-3 .leading-none p:first-child {
        font-size: 1rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-nav > .flex.items-center.gap-3 .leading-none p:last-child {
        display: none;
    }

    .dashboard-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        margin-left: auto;
        min-width: 108px;
        min-height: 48px;
        padding: 0 1rem;
    }

    .dashboard-nav-actions {
        display: none;
        position: absolute;
        top: calc(100% + 0.9rem);
        left: 0;
        right: 0;
        width: 100%;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1.5rem;
        background: rgba(7, 12, 29, 0.96);
        box-shadow: 0 26px 54px rgba(0, 0, 0, 0.34);
        backdrop-filter: blur(18px);
        gap: 0.75rem;
        z-index: 12;
    }

    .dashboard-nav-actions.is-open {
        display: flex;
    }

    .dashboard-quick-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-right: 0;
    }

    .dashboard-quick-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.9rem 1rem;
        min-height: 52px;
        font-size: 0.95rem;
        text-align: left;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.03);
    }

    .dashboard-nav-actions > a,
    .dashboard-nav-actions > button {
        display: inline-flex;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
        min-height: 52px;
        padding: 0.9rem 1rem;
        text-align: left;
    }

    .allocation-card {
        padding: 0.9rem;
    }

    .allocation-summary {
        grid-template-columns: 1fr;
    }

    .roulette-preview-summary {
        grid-template-columns: 1fr;
    }

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

    .allocation-number {
        grid-column: 1 / -1;
        order: -1;
    }

    .all-plans-panel {
        padding: 1.2rem;
    }

    .roulette-preview-head,
    .roulette-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .roulette-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .roulette-preview-layout {
        grid-template-columns: 1fr;
    }

    .roulette-wheel-shell {
        width: 15.2rem;
        height: 15.8rem;
        margin: 0 auto;
    }


    .roulette-wheel {
        width: 12.5rem;
        height: 12.5rem;
    }

    .roulette-wheel-core {
        width: 4.8rem;
        height: 4.8rem;
    }

    .roulette-spin-btn,
    .roulette-preview-link {
        flex: none;
        width: 100%;
        min-height: 3.25rem;
        padding: 0.85rem 1rem;
        font-size: 0.82rem;
        line-height: 1.2;
    }

            .catalog-panel {
                overflow: hidden;
                padding-bottom: 0;
            }

            .catalog-card,
            .catalog-grid.three-columns .catalog-card {
                flex: 0 0 92%;
                min-width: 92%;
                max-width: 92%;
                scroll-snap-align: start;
            }

        .plan-category-tabs {
            flex-wrap: nowrap;
            gap: 0.45rem;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            overflow: visible;
        }

        .plan-tab {
            position: relative;
            flex: 1 1 0;
            min-width: 0;
            min-height: 2.8rem;
            padding: 0.72rem 0.55rem;
            font-size: 0.74rem;
            line-height: 1.1;
            white-space: normal;
            text-align: center;
        }

            .plan-tab.is-active::after {
                content: "";
                position: absolute;
                left: 50%;
                bottom: -0.7rem;
                width: 0;
                height: 0;
                border-left: 0.42rem solid transparent;
                border-right: 0.42rem solid transparent;
                border-top: 0.48rem solid #1e2f82;
                transform: translateX(-50%);
            }

            .catalog-grid,
            .catalog-grid.three-columns {
                gap: 0.9rem;
                overflow-x: auto;
                min-width: 0;
                padding-bottom: 0.5rem;
                scroll-snap-type: x mandatory;
                scroll-padding-left: 0;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .catalog-grid::-webkit-scrollbar,
            .catalog-grid.three-columns::-webkit-scrollbar {
                display: none;
            }

            .catalog-slider-dots {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                margin-top: 0.9rem;
            }

            .catalog-slider-dots button {
                width: 0.5rem;
                height: 0.5rem;
                padding: 0;
                border: 0;
                border-radius: 999px;
                background: rgba(30, 47, 130, 0.24);
                cursor: pointer;
                transition: transform 0.18s ease, background 0.18s ease;
            }

            .catalog-slider-dots button.is-active {
                width: 1.4rem;
                height: 1.4rem;
                background: var(--brand-gold);
                transform: translateY(-1px);
            }

            .catalog-slider-dots button.is-active::before {
                content: "\2192";
                display: block;
                color: #08101f;
                font-size: 0.9rem;
                font-weight: 800;
                line-height: 1.4rem;
                text-align: center;
            }

            .catalog-slider-dots button.is-active.is-reversed::before {
                content: "\2190";
            }
        }
