:root {
    --main-bg: #0a0a0a;
    --header-bg: rgba(26, 15, 26, 0.9);
    --accent-color: #b61bc4;
    --accent-light: #d13fe0;
    --text-primary: #ffffff;
    --text-secondary: #bbbbbb;
    --stats-bg: rgba(30, 30, 30, 0.8);
    --card-bg: rgba(40, 40, 40, 0.8);
    --button-hover: #72176c;
    --button-glow: 0 0 10px rgba(234, 0, 255, 0.5);
    --neon-glow: 0 0 5px #fff, 0 0 10px rgba(195, 41, 209, 0.7);
    --online-color: #4caf50;
    --offline-color: #f44336;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== ОБЩИЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--main-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ЗВЕЗДНОЕ НЕБО */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: twinkle linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* МЕРЦАЮЩИЕ ОГОНЬКИ */
.sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
    animation: sparkleMove linear infinite;
}

@keyframes sparkleMove {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}

/* ПАДАЮЩИЕ ЗВЕЗДЫ */
.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    box-shadow: 0 0 10px white;
    border-radius: 50%;
    animation: shootingStar linear infinite;
}

@keyframes shootingStar {
    0% { transform: translateX(-100px) translateY(-100px) scale(0.5); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateX(100vw) translateY(100vh) scale(1.5); opacity: 0; }
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* СЕКЦИИ И КАРТОЧКИ (ОБЩИЕ) */
.section { padding: 80px 0; }
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    left: 50%; transform: translateX(-50%);
    background: linear-gradient(to right, #b61bc4, #6a0dad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-bg {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(182, 27, 196, 0.2);
    transition: var(--transition);
}

/* ФУТЕР */
footer {
    background: rgba(15, 15, 15, 0.95);
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Password Toggle */
.password-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.password-toggle:hover {
    opacity: 1;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
}

/* Skeleton Loader */
.skeleton {
    overflow: hidden;
    position: relative;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.sk-img { width: 100%; height: 150px; background: rgba(255,255,255,0.05); border-radius: 10px; margin-bottom: 15px; }
.sk-title { width: 60%; height: 20px; background: rgba(255,255,255,0.05); border-radius: 4px; margin-bottom: 10px; }
.sk-text { width: 100%; height: 15px; background: rgba(255,255,255,0.05); border-radius: 4px; margin-bottom: 10px; }
.sk-btn { width: 100px; height: 35px; background: rgba(255,255,255,0.05); border-radius: 20px; }

/* Dashboard & Tabs */
.dashboard-tabs, .store-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.tab-btn.active {
    background: var(--accent-color);
    box-shadow: var(--button-glow);
    border-color: var(--accent-color);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* (Тут будут остальные стили из HTML) */
