
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
            background: #f0f2f6;
            color: #1a1a2e;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding: 0 24px;
        }

     .site-header {
    max-width: 1100px;
    width: 100%;
    margin: 16px auto 0;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: var(--bg-card, #ffffff);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light, #e8eaf0);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    
    /* ===== ФИКСАЦИЯ ===== */
    position: sticky;
    top: 16px;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

        .logo {
            font-size: 1.5em;
            font-weight: 700;
            color: #1a1a2e;
            letter-spacing: -0.02em;
        }
        .logo .accent {
            color: #007acc;
        }

        .site-nav {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .site-nav a {
            color: #7a7a9a;
            text-decoration: none;
            font-size: 0.9em;
            font-weight: 400;
            transition: color 0.3s;
        }
        .site-nav a:hover {
            color: #1a1a2e;
        }
        .site-nav a.primary {
            color: #007acc;
            font-weight: 500;
        }
        .site-nav a.primary:hover {
            color: #005fa3;
        }

        .main-content {
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 0 20px;
        }

        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .hero-left {
            flex: 1;
            min-width: 280px;
        }
        .hero-left h1 {
            font-size: 2.8em;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #1a1a2e;
            line-height: 1.1;
            margin-bottom: 12px;
        }
        .hero-left h1 .accent {
            color: #007acc;
        }
        .hero-left p {
            font-size: 1.1em;
            color: #7a7a9a;
            font-weight: 300;
            max-width: 440px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 10px;
            font-size: 0.9em;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background: #007acc;
            color: #fff;
            border: 1px solid #007acc;
        }
        .btn-primary:hover {
            background: #005fa3;
            border-color: #005fa3;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 122, 204, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: #7a7a9a;
            border: 1px solid #d0d0dc;
        }
        .btn-secondary:hover {
            background: #f5f6fa;
            color: #1a1a2e;
            border-color: #b0b0c0;
        }

        .hero-right {
            flex: 1;
            min-width: 280px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        .stat-item {
            background: #ffffff;
            border: 1px solid #e8eaf0;
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
            border-color: #d0d4e0;
        }
        .stat-item .number {
            font-size: 2em;
            font-weight: 700;
            color: #007acc;
            display: block;
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.7em;
            color: #9a9ab0;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-top: 6px;
        }

        /* ===== ОНЛАЙН ===== */
        .online-section {
            margin-bottom: 24px;
        }

        .online-card {
            background: #ffffff;
            border: 1px solid #e8eaf0;
            border-radius: 16px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: all 0.3s;
        }
        .online-card:hover {
            border-color: #d0d4e0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
        }

        .online-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #4CAF50;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .online-info {
            flex: 1;
        }
        .online-total {
            font-size: 1.6em;
            font-weight: 700;
            color: #007acc;
            display: block;
            line-height: 1.2;
        }
        .online-label {
            font-size: 0.7em;
            color: #9a9ab0;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .online-details {
            display: flex;
            gap: 16px;
            font-size: 0.85em;
            color: #7a7a9a;
        }
        .online-members {
            color: #4CAF50;
        }
        .online-guests {
            color: #9a9ab0;
        }

        /* ===== РЕСУРСЫ ===== */
        .resources-section {
            margin-bottom: 48px;
        }
        .resources-section h2 {
            font-size: 1.2em;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 16px;
        }
        .resources-section h2 i {
            color: #007acc;
            margin-right: 8px;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 12px;
        }

        .resource-card {
            background: #ffffff;
            border: 1px solid #e8eaf0;
            border-radius: 12px;
            padding: 16px 18px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
        }
        .resource-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            transition: all 0.3s;
        }
        .resource-card.free::before {
            background: #4CAF50;
        }
        .resource-card.paid::before {
            background: #FF9800;
        }
        .resource-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
        }

        .resource-title {
            font-size: 0.95em;
            font-weight: 500;
            color: #1a1a2e;
            margin-bottom: 8px;
            line-height: 1.3;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }

        .resource-price {
            font-size: 0.7em;
            font-weight: 500;
            padding: 2px 10px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .resource-price.free {
            background: rgba(76, 175, 80, 0.1);
            color: #4CAF50;
        }
        .resource-price.paid {
            background: rgba(255, 152, 0, 0.1);
            color: #FF9800;
        }
        .resource-price i {
            font-size: 0.8em;
            margin-right: 4px;
        }

        .resource-meta {
            display: flex;
            gap: 14px;
            font-size: 0.75em;
            color: #9a9ab0;
            flex-wrap: wrap;
        }
        .resource-meta i {
            margin-right: 4px;
            font-size: 0.8em;
        }
        .resource-version {
            color: #007acc;
            font-weight: 500;
        }
        .resource-author {
            color: #b0b0c0;
        }
        .resource-downloads {
            color: #9a9ab0;
        }

        .site-footer {
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 24px 0 32px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .site-footer .copy {
            font-size: 0.75em;
            color: #b0b0c0;
        }
        .site-footer .copy a {
            color: #b0b0c0;
            text-decoration: none;
        }
        .site-footer .copy a:hover {
            color: #7a7a9a;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }
        .footer-links a {
            font-size: 0.75em;
            color: #b0b0c0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #7a7a9a;
        }

        @media (max-width: 820px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
            }
            .hero-left p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-buttons {
                justify-content: center;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .hero-left h1 {
                font-size: 2.2em;
            }
            .site-footer {
                flex-direction: column;
                text-align: center;
            }
            .online-card {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            .online-details {
                justify-content: center;
            }
            .resources-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 0 16px;
            }
            .site-header {
                padding: 16px 0;
            }
            .site-nav {
                gap: 14px;
            }
            .site-nav a {
                font-size: 0.8em;
            }
            .hero-left h1 {
                font-size: 1.8em;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-item {
                padding: 16px 10px;
            }
            .stat-item .number {
                font-size: 1.4em;
            }
            .resources-grid {
                grid-template-columns: 1fr;
            }
        }
 
        /* ============================================================
   ТЁМНАЯ ТЕМА
   ============================================================ */

[data-theme="dark"] {
    --bg-body: #0d0d0f;
    --text-primary: #e8edf0;
    --text-secondary: #9a9ab0;
    --text-muted: #6a6a80;
    --text-light: #5a5a70;
    --border-light: #2a2a2e;
    --border-medium: #3a3a3e;
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
    --bg-card: #1a1a1e;
    --bg-stat: #1a1a1e;
    --bg-online: #1a1a1e;
    --bg-resource: #1a1a1e;
    --bg-hover: rgba(255, 255, 255, 0.02);
    --btn-secondary-border: #3a3a3e;
    --btn-secondary-text: #6a6a80;
    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-shadow: rgba(59, 130, 246, 0.15);
}

[data-theme="dark"] body {
    background: var(--bg-body);
    color: var(--text-primary);
}

[data-theme="dark"] .site-header {
    background: rgba(15, 17, 23, 0.85);
    border-color: var(--border-light);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.85);
    border-color: #e8eaf0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .logo {
    color: var(--text-primary);
}

[data-theme="dark"] .site-nav a {
    color: var(--text-secondary);
}
[data-theme="dark"] .site-nav a:hover {
    color: var(--text-primary);
}
[data-theme="dark"] .site-nav a.primary {
    color: var(--accent);
}
[data-theme="dark"] .site-nav a.primary:hover {
    color: var(--accent-hover);
}

[data-theme="dark"] .hero-left h1 {
    color: var(--text-primary);
}
[data-theme="dark"] .hero-left p {
    color: var(--text-secondary);
}

[data-theme="dark"] .btn-secondary {
    color: var(--btn-secondary-text);
    border-color: var(--btn-secondary-border);
}
[data-theme="dark"] .btn-secondary:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--border-medium);
}
[data-theme="dark"] .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}
[data-theme="dark"] .btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 8px 30px var(--accent-shadow);
}

[data-theme="dark"] .stat-item {
    background: var(--bg-stat);
    border-color: var(--border-light);
    box-shadow: var(--shadow-card);
}
[data-theme="dark"] .stat-item:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-hover);
}
[data-theme="dark"] .stat-item .number {
    color: var(--accent);
}
[data-theme="dark"] .stat-item .label {
    color: var(--text-muted);
}

[data-theme="dark"] .online-card {
    background: var(--bg-online);
    border-color: var(--border-light);
    box-shadow: var(--shadow-card);
}
[data-theme="dark"] .online-card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-hover);
}
[data-theme="dark"] .online-total {
    color: var(--accent);
}
[data-theme="dark"] .online-label {
    color: var(--text-muted);
}
[data-theme="dark"] .online-details {
    color: var(--text-secondary);
}
[data-theme="dark"] .online-guests {
    color: var(--text-muted);
}

[data-theme="dark"] .resources-section h2 {
    color: var(--text-primary);
}
[data-theme="dark"] .resources-section h2 i {
    color: var(--accent);
}

[data-theme="dark"] .resource-card {
    background: var(--bg-resource);
    border-color: var(--border-light);
    box-shadow: var(--shadow-card);
}
[data-theme="dark"] .resource-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}
[data-theme="dark"] .resource-title {
    color: var(--text-primary);
}
[data-theme="dark"] .resource-price.free {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
}
[data-theme="dark"] .resource-price.paid {
    background: rgba(255, 152, 0, 0.15);
    color: #FF9800;
}
[data-theme="dark"] .resource-meta {
    color: var(--text-muted);
}
[data-theme="dark"] .resource-version {
    color: var(--accent);
}
[data-theme="dark"] .resource-author {
    color: var(--text-light);
}
[data-theme="dark"] .resource-downloads {
    color: var(--text-muted);
}

[data-theme="dark"] .site-footer {
    border-top-color: var(--border-light);
}
[data-theme="dark"] .site-footer .copy {
    color: var(--text-light);
}
[data-theme="dark"] .site-footer .copy a {
    color: var(--text-light);
}
[data-theme="dark"] .site-footer .copy a:hover {
    color: var(--text-secondary);
}
[data-theme="dark"] .footer-links a {
    color: var(--text-light);
}
[data-theme="dark"] .footer-links a:hover {
    color: var(--text-secondary);
}

/* ===== КНОПКА ПЕРЕКЛЮЧЕНИЯ ТЕМЫ ===== */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-light, #e8eaf0);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: var(--text-secondary, #7a7a9a);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: var(--bg-card, #ffffff);
}
.theme-toggle:hover {
    border-color: var(--accent, #007acc);
    color: var(--accent, #007acc);
}

[data-theme="dark"] .theme-toggle {
    border-color: var(--border-light);
    color: var(--text-secondary);
    background: var(--bg-card);
}
[data-theme="dark"] .theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================================
   АДАПТИВНАЯ ШАПКА (логотип сверху, ссылки снизу)
   ============================================================ */

@media (max-width: 768px) {
    .site-header {
        margin: 12px auto 0;
        padding: 14px 18px 12px;
        border-radius: 16px;
        border: 1px solid var(--border-light, #e8eaf0);
        top: 12px;
        max-width: 96%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    .logo {
        font-size: 15px;
        text-align: left;
        order: 1;
    }
    
    /* --- ВТОРАЯ СТРОКА: ссылки + выбор темы --- */
    .site-nav {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
        border-top: 1px solid var(--border-light, #e8eaf0);
        padding-top: 10px;
        width: 100%;
    }
    
    .site-nav a {
        font-size: 15px;
        padding: 4px 10px;
        white-space: nowrap;
        color: var(--text-secondary, #7a7a9a);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .site-nav a:hover {
        color: var(--text-primary, #1a1a2e);
    }
    
    .site-nav a.primary {
        color: var(--accent, #007acc);
        font-weight: 500;
    }
    
    .site-nav a.primary:hover {
        color: var(--accent-hover, #005fa3);
    }
    
    .site-nav a i {
        margin-right: 4px;
    }
    
    /* Выбор тем — справа от ссылок */
    .theme-selector {
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .theme-selector select {
        padding: 5px 24px 5px 10px;
        font-size: 15px;
        border-radius: 8px;
        background-position: right 8px center;
        background-size: 8px;
        background-color: var(--bg-card, #ffffff);
        border: 1px solid var(--border-light, #e8eaf0);
        color: var(--text-primary, #1a1a2e);
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 10px 14px 10px;
        margin: 8px auto 0;
        border-radius: 14px;
        top: 8px;
        max-width: 98%;
        gap: 8px;
    }
    
    .logo {
        font-size: 15px;
    }
    
    .site-nav {
        gap: 4px;
        padding-top: 8px;
        justify-content: center;
    }
    
    .site-nav a {
        font-size: 0.75em;
        padding: 4px 8px;
    }
    
    .site-nav a i {
        margin-right: 3px;
    }
    
    .theme-selector select {
        font-size: 15px;
        padding: 4px 20px 4px 8px;
        border-radius: 6px;
        background-size: 6px;
        background-position: right 6px center;
    }
}

@media (max-width: 380px) {
    .site-header {
        padding: 8px 10px 8px;
        border-radius: 12px;
        gap: 6px;
    }
    
    .logo {
        font-size: 15px;
    }
    
    .site-nav {
        gap: 2px;
        padding-top: 6px;
        flex-wrap: wrap;
    }
    
    .site-nav a {
        font-size: 15px;
        padding: 3px 6px;
    }
    
    .theme-selector select {
        font-size: 0.6em;
        padding: 3px 16px 3px 6px;
        background-size: 5px;
        background-position: right 5px center;
    }
}

/* ===== ПРОГРЕСС-БАРЫ ===== */
.progress-section {
    margin-bottom: 40px;
}
.progress-section h2 {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-primary, #1a1a2e);
    margin-bottom: 16px;
}
.progress-section h2 i {
    color: var(--accent, #007acc);
    margin-right: 8px;
}

.progress-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.progress-item {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-light, #e8eaf0);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-card, 0 2px 8px rgba(0, 0, 0, 0.02));
    transition: all 0.3s;
}
.progress-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover, 0 12px 40px rgba(0, 0, 0, 0.04));
    border-color: var(--border-medium, #d0d4e0);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.85em;
    color: var(--text-secondary, #7a7a9a);
}
.progress-label i {
    margin-right: 6px;
}
.progress-value {
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
}

.progress-track {
    width: 100%;
    height: 8px;
    background: var(--bg-hover, rgba(0, 0, 0, 0.04));
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.progress-bar {
    height: 100%;
    border-radius: 20px;
    transition: width 1.5s ease;
    position: relative;
}
.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-sub {
    font-size: 0.7em;
    color: var(--text-muted, #9a9ab0);
    margin-top: 4px;
}

/* Адаптив */
@media (max-width: 768px) {
    .progress-grid {
        grid-template-columns: 1fr;
    }
}

/* Тёмная тема */
[data-theme="dark"] .progress-item {
    background: var(--bg-card);
    border-color: var(--border-light);
}
[data-theme="dark"] .progress-item:hover {
    border-color: var(--border-medium);
}
[data-theme="dark"] .progress-track {
    background: var(--bg-hover);
}
[data-theme="dark"] .progress-value {
    color: var(--text-primary);
}
[data-theme="dark"] .progress-label {
    color: var(--text-secondary);
}

/* ============================================================
   СЧЁТЧИК ДНЕЙ СУЩЕСТВОВАНИЯ — ОБНОВЛЁННЫЙ
   ============================================================ */

.age-section {
    margin-bottom: 24px;
}

.age-card {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-light, #e8eaf0);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: var(--shadow-card, 0 2px 8px rgba(0, 0, 0, 0.02));
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.age-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent, #007acc) 0%, transparent 70%);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(30px, -30px);
}
.age-card:hover {
    border-color: var(--border-medium, #d0d4e0);
    box-shadow: var(--shadow-hover, 0 12px 40px rgba(0, 0, 0, 0.04));
    transform: translateY(-2px);
}

/* Верхняя часть */
.age-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.age-icon {
    font-size: 1.8em;
    color: var(--accent, #007acc);
}
.age-badge {
    font-size: 0.7em;
    color: var(--text-muted, #9a9ab0);
    background: var(--bg-hover, rgba(0, 0, 0, 0.03));
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-light, #e8eaf0);
}
.age-badge i {
    color: #f0b34b;
    margin-right: 4px;
}

/* Основная часть */
.age-body {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.age-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.age-digits {
    font-size: 3em;
    font-weight: 800;
    color: var(--accent, #007acc);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.age-unit {
    font-size: 0.85em;
    color: var(--text-muted, #9a9ab0);
    font-weight: 400;
}

.age-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 6px;
}
.age-item {
    display: flex;
    flex-direction: column;
}
.age-item-label {
    font-size: 0.65em;
    color: var(--text-muted, #9a9ab0);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.age-item-label i {
    margin-right: 4px;
}
.age-item-value {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-primary, #1a1a2e);
}
.age-days-left {
    font-weight: 400;
    font-size: 0.85em;
    color: var(--text-muted, #9a9ab0);
}

.age-divider {
    width: 1px;
    height: 34px;
    background: var(--border-light, #e8eaf0);
}

/* Прогресс-бар */
.age-progress {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}
.age-progress-track {
    flex: 1;
    height: 4px;
    background: var(--bg-hover, rgba(0, 0, 0, 0.04));
    border-radius: 20px;
    overflow: hidden;
}
.age-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent, #007acc), var(--accent-hover, #3b82f6));
    border-radius: 20px;
    width: 0%;
    transition: width 1.5s ease;
}
.age-progress-label {
    font-size: 0.7em;
    color: var(--text-muted, #9a9ab0);
    white-space: nowrap;
}

/* ===== ТЁМНАЯ ТЕМА ===== */
[data-theme="dark"] .age-card {
    background: var(--bg-card);
    border-color: var(--border-light);
}
[data-theme="dark"] .age-card:hover {
    border-color: var(--border-medium);
}
[data-theme="dark"] .age-digits {
    color: var(--accent);
}
[data-theme="dark"] .age-badge {
    background: var(--bg-hover);
    border-color: var(--border-light);
}
[data-theme="dark"] .age-item-value {
    color: var(--text-primary);
}
[data-theme="dark"] .age-divider {
    background: var(--border-light);
}
[data-theme="dark"] .age-progress-track {
    background: var(--bg-hover);
}
[data-theme="dark"] .age-progress-bar {
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}

/* ===== АДАПТИВ ===== */
@media (max-width: 640px) {
    .age-card {
        padding: 18px 16px;
    }
    .age-body {
        flex-direction: column;
        gap: 12px;
    }
    .age-digits {
        font-size: 2.2em;
    }
    .age-number {
        width: 100%;
    }
    .age-info {
        width: 100%;
        gap: 12px;
    }
    .age-divider {
        display: none;
    }
    .age-item {
        flex: 1;
    }
    .age-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .age-progress {
        flex-direction: column;
        gap: 6px;
    }
    .age-progress-label {
        align-self: flex-start;
    }
}

/* ============================================================
   ОСНОВАТЕЛЬ
   ============================================================ */

.age-founder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-hover, rgba(0, 0, 0, 0.02));
    border-radius: 10px;
    margin: 12px 0 16px;
    border: 1px solid var(--border-light, #e8eaf0);
    transition: all 0.3s;
}
.age-founder:hover {
    border-color: var(--border-medium, #d0d4e0);
    background: var(--bg-hover, rgba(0, 0, 0, 0.04));
}

.founder-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent, #007acc);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    flex-shrink: 0;
}

.founder-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.founder-name {
    font-weight: 600;
    color: var(--text-primary, #1a1a2e);
    font-size: 0.95em;
}
.founder-role {
    font-size: 0.7em;
    color: var(--text-muted, #9a9ab0);
}
.founder-role i {
    color: #f0b34b;
    margin-right: 2px;
}

.founder-link {
    color: var(--text-muted, #9a9ab0);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.9em;
}
.founder-link:hover {
    color: var(--accent, #007acc);
    background: var(--bg-hover, rgba(0, 0, 0, 0.03));
}

/* ===== ТЁМНАЯ ТЕМА ===== */
[data-theme="dark"] .age-founder {
    background: var(--bg-hover);
    border-color: var(--border-light);
}
[data-theme="dark"] .age-founder:hover {
    border-color: var(--border-medium);
    background: var(--bg-hover);
}
[data-theme="dark"] .founder-name {
    color: var(--text-primary);
}
[data-theme="dark"] .founder-role {
    color: var(--text-muted);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 480px) {
    .age-founder {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 12px;
    }
    .founder-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.9em;
    }
    .founder-name {
        font-size: 0.85em;
    }
}