:root {
    --bg-page: #f1f5f9;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --accent-orange: #ff7a00;
    --accent-orange-hover: #e66d00;
    --accent-tg: #0088cc;
    --accent-max: #ff5e36;
    --success-green: #22c55e;
    --danger-red: #ef4444;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.45;
}

.hidden { display: none !important; }

/* Релизная сервисная плашка */
.top-service-bar {
    background: #0f172a;
    color: #cbd5e1;
    padding: 7px 14px;
    font-size: 11.5px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
}

.service-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

/* Аккуратный подвал релиза */
.app-footer {
    margin-top: 24px;
    padding: 16px 4px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.release-tag {
    font-size: 10px;
    font-weight: 800;
    background: #e2e8f0;
    color: #475569;
    padding: 3px 7px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}