:root {
    --bg-gradient-start: #0a0915;
    --bg-gradient-end: #14112c;
    --card-bg: rgba(22, 19, 49, 0.45);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --accent-primary: #a855f7;
    --accent-secondary: #ec4899;
    --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --input-bg: rgba(13, 11, 28, 0.6);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus: #a855f7;
    --danger-color: #ef4444;
    --success-color: #10b981;
    --error-bg: rgba(239, 68, 68, 0.15);
    --error-border: rgba(239, 68, 68, 0.3);
    --error-text: #fca5a5;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Фоновые размытые круги для эстетики */
body::before, body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

body::before {
    background: var(--accent-primary);
}

body::after {
    background: var(--accent-secondary);
}

/* Глобальные макетные сетки и контейнеры */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Глобальный премиальный стиль кнопок действий */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-gradient);
    color: white;
    border: 1px solid transparent;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
    text-decoration: none;
}

.btn-action:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(168, 85, 247, 0.35);
}

.btn-action:active {
    transform: translateY(0);
}
