:root {
    --bg: #1a2332;
    --bg-deep: #141c28;
    --surface: rgba(35, 48, 68, 0.9);
    --surface-hover: rgba(45, 62, 88, 0.95);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #e8eef5;
    --text-muted: #7d8a9a;
    --accent: #00d4aa;
    --accent-dim: rgba(0, 212, 170, 0.3);
    --accent-green: #00e676;
    --accent-blue: #00b8ff;
    --accent-amber: #ffb347;
    --accent-purple: #b388ff;
    --border: rgba(255, 255, 255, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --glow: 0 0 40px rgba(0, 212, 170, 0.15);
}

* { box-sizing: border-box; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.7; }
}
@keyframes rise {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-dim); }
    50% { box-shadow: 0 0 40px var(--accent-dim), 0 0 60px rgba(0, 212, 170, 0.1); }
}
@keyframes chart-rise {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}
@keyframes progress-grow {
    0% { opacity: 0; filter: brightness(0.5); }
    100% { opacity: 1; filter: brightness(1); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes coin-spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes count-up {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes modalContentIn {
    0% { opacity: 0; transform: scale(0.85) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes vipCardPulse {
    0%, 100% { transform: translateY(-4px) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
}
@keyframes reqCardIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 184, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgba(179, 136, 255, 0.06) 0%, transparent 50%),
        var(--bg);
    background-size: 120% 120%;
    animation: gradient-shift 20s ease infinite;
}

.floating-coins {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.coin {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-green));
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}
.coin:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; width: 6px; height: 6px; }
.coin:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; width: 10px; height: 10px; opacity: 0.2; }
.coin:nth-child(3) { left: 80%; top: 30%; animation-delay: 2s; }
.coin:nth-child(4) { left: 90%; top: 70%; animation-delay: 0.5s; width: 5px; height: 5px; }
.coin:nth-child(5) { left: 50%; top: 85%; animation-delay: 3s; background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)); }
.coin:nth-child(6) { left: 15%; top: 45%; animation-delay: 1.5s; width: 7px; height: 7px; opacity: 0.25; }
.coin:nth-child(7) { left: 70%; top: 15%; animation-delay: 2.5s; }
.coin:nth-child(8) { left: 40%; top: 50%; animation-delay: 0.8s; width: 6px; height: 6px; opacity: 0.2; }

.container {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.site-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    text-align: center;
}
.site-footer__legal {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.site-footer__legal a {
    color: var(--text-muted);
    text-decoration: none;
}
.site-footer__legal a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Navigation */
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.nav-user-corner {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 229, 197, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 197, 0.2);
    font-size: 0.9rem;
}
.nav-user-balance-wrap {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.nav-user-balance-trigger {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    border-radius: 4px;
    transition: background 0.2s;
}
.nav-user-balance-trigger:hover {
    background: rgba(255, 255, 255, 0.06);
}
.nav-user-balance .nav-user-balance-label,
.nav-user-id .nav-user-id-label {
    color: var(--text-muted);
    margin-right: 0.25rem;
}
.nav-user-balance strong {
    color: var(--accent);
}
.nav-user-withdraw-btn {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 152, 0, 0.25);
    color: #ffb74d;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.2s, background 0.2s;
}
.nav-user-withdraw-btn:hover {
    background: rgba(255, 152, 0, 0.35);
    color: #ffcc80;
}
.nav-user-id code {
    font-size: 0.85em;
    padding: 0.15rem 0.4rem;
    background: var(--bg);
    border-radius: 4px;
    color: var(--text);
}
.nav-user-deposit-btn {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--accent);
    color: var(--bg, #0d1f2d);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
}
.nav-user-deposit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
}
.logo-link:hover { color: var(--accent); }

.logo-svg {
    height: 40px;
    width: auto;
    transition: color 0.2s;
}

.logo-text {
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link.active {
    background: var(--accent);
    color: var(--bg);
}
.lang-switcher {
    margin-left: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--border);
    position: relative;
}
.lang-switcher .lang-trigger {
    padding: 0.35rem 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: transparent;
    color: inherit;
    font-family: inherit;
}
.lang-switcher .lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin: 0.25rem 0 0;
    padding: 0.25rem 0;
    min-width: 8rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    list-style: none;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-switcher .lang-link {
    display: block;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
    color: inherit;
    text-decoration: none;
}
.lang-switcher .lang-link:hover,
.lang-switcher .lang-link.active { background: var(--accent); color: var(--bg); }

/* Welcome quote modal (on first visit) */
.welcome-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.welcome-modal--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.welcome-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}
.welcome-modal__box {
    position: relative;
    max-width: 28rem;
    width: 100%;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.05);
    animation: modalContentIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.welcome-modal__quote {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text);
}
.welcome-modal__author {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    color: var(--muted);
    text-align: right;
}
.announcement-modal__box {
    max-width: 32rem;
}
.announcement-modal__title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}
.announcement-modal__message {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}
.welcome-modal__close {
    width: 100%;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--bg);
    font-family: inherit;
    font-weight: 600;
    transition: filter 0.2s, transform 0.15s;
}
.welcome-modal__close:hover {
    filter: brightness(1.1);
}
.welcome-modal__close:active {
    transform: scale(0.98);
}

/* Page header (h1 + subtitle) */
.header-balance {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 229, 197, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.header-balance-label {
    color: var(--text-muted);
}
.header-balance-value {
    font-weight: 700;
    color: var(--accent);
}
.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    animation: rise 0.8s ease-out;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.chart-icon {
    width: 48px; height: 32px;
    animation: rise 1s ease-out 0.2s both;
}
.chart-icon .chart-line {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: chart-rise 1.5s ease-out 0.5s forwards;
}

h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rise 0.8s ease-out 0.1s both;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
    animation: rise 0.8s ease-out 0.2s both;
}

section {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    animation: rise 0.6s ease-out both;
}
section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.15s; }
section:nth-child(4) { animation-delay: 0.2s; }
section:nth-child(5) { animation-delay: 0.25s; }
section:nth-child(6) { animation-delay: 0.3s; }
section:nth-child(7) { animation-delay: 0.35s; }
section:nth-child(8) { animation-delay: 0.4s; }
section:nth-child(9) { animation-delay: 0.45s; }
section:hover { border-color: rgba(255, 255, 255, 0.1); }

section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}
.vip-grid .vip-level {
    animation: rise 0.5s ease backwards;
}
.vip-grid .vip-level:nth-child(1) { animation-delay: 0.05s; }
.vip-grid .vip-level:nth-child(2) { animation-delay: 0.1s; }
.vip-grid .vip-level:nth-child(3) { animation-delay: 0.15s; }
.vip-grid .vip-level:nth-child(4) { animation-delay: 0.2s; }
.vip-grid .vip-level:nth-child(5) { animation-delay: 0.25s; }
.vip-grid .vip-level:nth-child(6) { animation-delay: 0.3s; }

.vip-level {
    background: var(--surface-hover);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.vip-level:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.12);
    border-color: var(--accent-dim);
}
.vip-level-btn:active {
    animation: vipCardPulse 0.4s ease;
}

.vip-level strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.vip-level span {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.vip-click-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: -0.5rem 0 1rem;
}
.vip-level-btn {
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    text-align: center;
    width: 100%;
    border: none;
    background: none;
}
.vip-level-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.12);
    border-color: var(--accent-dim);
}

/* VIP modal */
.vip-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.vip-modal.vip-modal-open {
    opacity: 1;
    visibility: visible;
}
.vip-modal.vip-modal-open .vip-modal-content {
    animation: modalContentIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.vip-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.vip-modal-content {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
}
.vip-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: var(--surface-hover);
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.vip-modal-close:hover { background: var(--border); transform: scale(1.1); }
.vip-modal-close:active { transform: scale(0.95); }
.vip-modal-content h3 { margin: 0 0 0.5rem; color: var(--accent); }
.vip-modal-range { margin: 0 0 1rem; color: var(--text-muted); font-size: 0.95rem; }
.vip-modal-reqs ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.vip-modal-reqs li { margin-bottom: 0.25rem; }

.vip-level1-note {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text);
}
.vip-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.vip-req-card {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: reqCardIn 0.5s ease backwards;
}
.vip-req-card:nth-child(1) { animation-delay: 0.1s; }
.vip-req-card:nth-child(2) { animation-delay: 0.2s; }
.vip-req-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 212, 170, 0.1);
    border-color: var(--accent-dim);
}
.vip-req-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--accent);
}
.vip-req-card ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.vip-req-card li { margin-bottom: 0.35rem; }
.vip-total-note {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.income-page .income-intro {
    max-width: 52rem;
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
}
.income-section-title {
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
    color: var(--text);
}
.income-goal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
}

.income-card {
    background: var(--surface-hover);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    flex: 1 1 180px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.income-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.income-card .label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.income-card .value {
    font-size: 1.25rem;
    font-weight: 600;
}
.income-card-desc {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.income-card.highlight {
    border-color: var(--accent-dim);
    animation: pulse-glow 3s ease-in-out infinite;
}
.income-card.highlight .value {
    color: var(--accent-green);
    animation: count-up 0.8s ease-out 0.3s both;
}

.income-progress-block {
    margin-top: 1.5rem;
}
.income-progress-label {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}
.income-progress-desc {
    margin: 0.4rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.progress-bar {
    height: 10px;
    background: var(--surface-hover);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-green));
    border-radius: 5px;
    animation: progress-grow 1.2s ease-out 0.3s both;
}
.income-formula-block {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.income-formula-block .income-section-title { margin-top: 0; }
.income-formula-text {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.income-referrals-block {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.income-referrals-block .income-section-title { margin-top: 0; }
.income-referrals-chart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.income-chart-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}
.income-chart-circle::after {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: var(--surface-hover);
}
.income-chart-legend {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
}
.income-chart-legend-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 0.35rem;
}
.income-referrals-intro {
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.income-referrals-table-wrap {
    overflow-x: auto;
}
.income-referrals-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.income-referrals-table th,
.income-referrals-table td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.income-referrals-table th {
    font-weight: 600;
    color: var(--text);
    background: rgba(0,0,0,0.15);
}
.income-referrals-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}
.income-referrals-table .income-pct {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 400;
}
.income-referrals-table .income-earned {
    font-weight: 600;
    color: var(--accent-green);
    white-space: nowrap;
}
.income-referrals-total-row td {
    border-top: 2px solid var(--border);
    font-weight: 600;
    padding-top: 0.75rem;
}
.income-referrals-total-row .income-earned { font-size: 1.05rem; }

.referral-link-box {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}
.invite-notice {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, var(--surface-hover) 100%);
    border: 1px solid var(--accent-dim);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.invite-notice p {
    margin: 0;
    color: var(--accent);
}
.ref-row-total {
    border-top: 2px solid var(--border);
    padding-top: 0.75rem !important;
    margin-top: 0.5rem;
    font-weight: 600;
}
.referrals-calc {
    display: grid;
    gap: 0.75rem;
}

.ref-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease, padding-left 0.2s ease;
}
.ref-row:hover {
    padding-left: 0.5rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 6px;
}

.ref-row:last-child {
    border-bottom: none;
}

.ref-row .income {
    color: var(--accent-green);
    font-weight: 600;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 0.5rem;
}

.button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface-hover);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.25);
}

.button:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent);
}

.deposit-personal-box {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: var(--radius-sm);
}
.deposit-personal-title {
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: var(--accent);
}
.deposit-personal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
}
.deposit-personal-uid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-start;
}
.deposit-personal-uid .deposit-copy-or-qr {
    flex: 1;
    min-width: 200px;
}
.deposit-personal-uid input {
    flex: 1;
    min-width: 140px;
    padding: 0.6rem 0.75rem;
    font-family: monospace;
    font-weight: 600;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--accent);
}
.deposit-copy-or-qr {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
}
.deposit-copy-or-qr input { flex: 1; min-width: 120px; }
.deposit-qr-wrap {
    flex-shrink: 0;
    display: inline-block;
    padding: 6px;
    background: #fff;
    border-radius: 8px;
    line-height: 0;
}
.deposit-qr-img {
    display: block;
    border-radius: 4px;
}
.deposit-qr-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.35rem 0 0;
    width: 100%;
}

.crypto-grid {
    display: grid;
    gap: 1rem;
}

.crypto-card {
    background: var(--surface-hover);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.crypto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 212, 170, 0.1);
}

.plans-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.plans-my-apps {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--surface-hover);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.plans-my-apps h3 {
    font-size: 1rem;
    margin: 0 0 0.75rem;
}
.plans-my-apps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plans-my-app-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}
.plans-my-app-item:last-child { border-bottom: none; }
.plans-my-app-plan { font-family: monospace; color: var(--text-muted); }
.plans-my-app-amount { font-weight: 600; color: var(--accent); }
.plans-my-app-term { font-size: 0.9rem; color: var(--text-muted); }
.plans-my-app-status { font-size: 0.9rem; }
.plans-my-app-status.status-pending { color: var(--text-muted); }
.plans-my-app-status.status-approved { color: var(--accent); }
.plans-my-app-status.status-funded { color: var(--accent-green, #00e676); }
.plans-my-app-status.status-rejected { color: #e57373; }
.plans-fund-form { display: inline; margin-left: 0.5rem; }

.plans-table-wrap {
    overflow-x: auto;
    margin-top: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface-hover);
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.plans-table th,
.plans-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.plans-table th {
    background: rgba(0, 212, 170, 0.08);
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.plans-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.04);
}

.plans-table tbody tr:last-child td {
    border-bottom: none;
}

.plan-percent-value {
    color: var(--accent);
    font-weight: 600;
}

.plan-apply-inline {
    display: inline;
}

.plan-apply-inline .button {
    white-space: nowrap;
}

.plan-full {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 640px) {
    .plans-table th,
    .plans-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.875rem;
    }
}

.account-history {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.history-block {
    margin-top: 1.25rem;
}

.history-block h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.history-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface-hover);
    margin-top: 0.75rem;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.history-table th,
.history-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.history-table th {
    background: rgba(0, 212, 170, 0.08);
    color: var(--text);
    font-weight: 600;
    white-space: nowrap;
}

.history-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.04);
}

.history-table tbody tr:last-child td {
    border-bottom: none;
}

.history-empty {
    margin: 0;
    padding: 1rem;
    color: var(--text-muted);
}

.history-status {
    font-size: 0.9rem;
}

.history-status-pending {
    color: var(--text-muted);
}

.history-status-completed {
    color: var(--accent-green, #00e676);
}

.history-status-rejected {
    color: #e57373;
}

.history-tx {
    font-family: monospace;
    color: var(--text-muted);
    word-break: break-word;
}

.crypto-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.crypto-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-network {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.address-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.address-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.address-box .deposit-copy-or-qr {
    flex: 1;
    min-width: 220px;
}

.deposit-memo-box {
    margin-bottom: 0;
}

.address-box input {
    flex: 1;
    padding: 0.6rem 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: monospace;
    font-size: 0.85rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.address-box input:focus {
    outline: none;
    border-color: var(--accent);
}

.button-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.withdraw-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-group input, .form-group select {
    padding: 0.7rem 0.9rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.balance-display {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, var(--surface-hover) 100%);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--accent-dim);
    transition: box-shadow 0.3s ease;
}
.balance-display:hover {
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.1);
}

.balance-display .label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.balance-display .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.withdraw-limits {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.button-primary {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #fff;
}

.button-primary:hover {
    background: #00e676;
    border-color: #00e676;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 230, 118, 0.35);
}

.deposit-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.deposit-tab {
    padding: 0.5rem 1rem;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
}

.deposit-tab:hover, .deposit-tab.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.auth-tab {
    padding: 0.5rem 1.25rem;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.auth-tab:hover { color: var(--text); }
.auth-tab.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}
.form-group input[type="password"] {
    font-family: inherit;
}
.password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.password-wrap input {
    padding-right: 2.75rem;
    flex: 1;
}
.password-toggle {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1;
    border-radius: 4px;
}
.password-toggle:hover {
    color: var(--accent);
}
.password-toggle:focus {
    outline: none;
}
.form-group input.ref-readonly {
    background: rgba(255,255,255,0.05);
    cursor: default;
}
.form-group-checkbox { margin-top: 0.5rem; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}
.checkbox-label a {
    color: var(--accent);
    text-decoration: none;
}
.checkbox-label a:hover { text-decoration: underline; }

/* Game - wheel */
.game-section { text-align: center; }
.game-section h2 { margin-bottom: 0.5rem; }
.game-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.game-info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.game-info-card {
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    min-width: 140px;
}
.game-info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.game-info-value { font-size: 1.25rem; font-weight: 700; color: var(--accent-green); }
.game-info-sublabel { font-size: 0.8rem; color: var(--text-muted); display: block; margin-top: 0.25rem; }
.game-spin-rule {
    margin: -0.5rem 0 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.game-spin-rule strong { color: var(--accent-green); }
.game-reinvest-block {
    margin: 1.5rem 0 1rem;
}
.game-reinvest-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    min-width: 220px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s, opacity 0.2s;
}
.game-reinvest-btn:hover:not(:disabled) {
    transform: scale(1.03);
    filter: brightness(1.1);
}
.game-reinvest-btn:active:not(:disabled) { transform: scale(0.98); }
.game-reinvest-btn--loading {
    opacity: 0.85;
    pointer-events: none;
}
.next-spin-wrap {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.next-spin-label { margin: 0 0 0.25rem; font-size: 0.9rem; color: var(--text-muted); }
.next-spin-timer { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
/* 3D wheel */
.wheel-3d-container {
    perspective: 1200px;
    margin: 1rem 0 2rem;
    display: inline-block;
}
.wheel-wrap {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    transform: rotateX(18deg) rotateZ(0deg);
}
.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.75rem;
    color: var(--accent);
    z-index: 3;
    text-shadow: 0 0 12px rgba(0,0,0,0.9), 0 4px 8px rgba(0,0,0,0.5);
    filter: drop-shadow(0 2px 4px rgba(0,212,170,0.4));
}
.wheel-3d {
    position: relative;
    width: 280px;
    height: 280px;
    transform-style: preserve-3d;
    transition: transform 0.1s;
}
.wheel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid var(--border);
    box-shadow:
        0 0 0 2px rgba(0,212,170,0.2),
        inset 0 0 30px rgba(0,0,0,0.4),
        inset 0 -10px 20px rgba(0,0,0,0.25),
        0 20px 50px rgba(0,0,0,0.5),
        0 30px 60px rgba(0,0,0,0.3);
    transition: inherit;
}
.wheel-edge {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 12px solid rgba(20,25,35,0.9);
    transform: translateZ(-10px);
    pointer-events: none;
    box-sizing: border-box;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}
.wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--surface-hover), var(--bg));
    border: 4px solid var(--border);
    box-shadow: inset 0 0 8px rgba(0,0,0,0.5), 0 0 12px rgba(0,0,0,0.3);
}
.game-actions { margin-bottom: 1.5rem; }
.game-spin-btn { font-size: 1.1rem; padding: 0.9rem 2rem; }
.spin-result {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, var(--surface-hover) 100%);
    border: 1px solid var(--accent-dim);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    max-width: 360px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.spin-result-visible {
    opacity: 1;
    transform: scale(1);
}
.spin-result-title { margin: 0 0 0.25rem; font-size: 0.95rem; color: var(--text-muted); }
.spin-result-amount { margin: 0; font-size: 1.75rem; font-weight: 700; color: var(--accent-green); }
.spin-result-detail { margin: 0.5rem 0 0; font-size: 0.85rem; color: var(--text-muted); }

.hero-section {
    text-align: center;
    padding: 2rem 0;
    position: relative;
}
.hero-symbols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem 1.75rem;
    margin-bottom: 1rem;
}
.hero-symbol {
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
    animation: hero-symbol-float 4s ease-in-out infinite;
}
.hero-symbol:nth-child(1) { animation-delay: 0s; }
.hero-symbol:nth-child(2) { animation-delay: 0.5s; }
.hero-symbol:nth-child(3) { animation-delay: 1s; }
.hero-symbol:nth-child(4) { animation-delay: 1.5s; }
.hero-section:hover .hero-symbol { opacity: 1; }
.hero-symbol--ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-ico {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    transition: transform 0.25s;
}
.hero-symbol:hover .hero-ico {
    transform: scale(1.08);
}
@keyframes hero-symbol-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.hero-section h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}
.welcome-title-3d {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #00e5c5;
    text-transform: uppercase;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.8),
        0 0 4px rgba(0, 212, 170, 0.25),
        0 1px 0 rgba(0, 180, 140, 0.5),
        0 2px 0 #0d2a24,
        0 3px 0 #0a221e,
        0 4px 0 #081c18,
        0 5px 0 #061612,
        0 6px 0 #04100d,
        0 8px 6px rgba(0, 0, 0, 0.4),
        0 12px 16px rgba(0, 0, 0, 0.3);
    animation: welcome3dIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, welcome3d 4s ease-in-out 0.7s infinite;
    transform-origin: center bottom;
    opacity: 0;
}
@keyframes welcome3dIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.85); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes welcome3d {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
}
.hero-section p {
    color: var(--text-muted);
    margin: 0;
}
.quick-links h2 {
    margin-bottom: 1rem;
}
.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.link-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 212, 170, 0.15);
    border-color: var(--accent-dim);
}
.link-card-title {
    font-weight: 600;
}
.link-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.agreement-content { max-width: 720px; }
.agreement-content h2 { margin-bottom: 0.5rem; }
.agreement-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.agreement-content h3 {
    font-size: 1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--accent);
}
.agreement-content p {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}
.agreement-content a {
    color: var(--accent);
    text-decoration: none;
}
.agreement-content a:hover { text-decoration: underline; }

.contacts-list {
    list-style: none;
    padding: 0;
    color: var(--text-muted);
}
.contacts-list li { margin-bottom: 0.5rem; }
.contacts-list li:last-child { margin-bottom: 0; }
.about-content { max-width: 56ch; }
.about-content p { margin-bottom: 1rem; }
.about-content p:last-child { margin-bottom: 0; }
.about-intro { font-size: 1.05rem; color: var(--text); }
.contacts-link {
    color: var(--accent);
    text-decoration: none;
}
.contacts-link:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 600px) {
    .container { padding: 1rem; }
    h1 { font-size: 1.5rem; }
    .logo-wrap { flex-direction: column; }
    .chart-icon { width: 36px; height: 24px; }
    .logo-svg { height: 34px; }
    .vip-grid { grid-template-columns: repeat(2, 1fr); }
    .main-nav { flex-wrap: wrap; }
    .nav-links { flex: 1; }
    .link-cards { grid-template-columns: 1fr; }
}
