* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    height: 100vh;
    background:
        radial-gradient(circle at top, rgba(138, 43, 226, 0.15), transparent 60%),
        radial-gradient(circle at bottom right, rgba(255, 80, 0, 0.15), transparent 60%),
        #0b0b0f;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Основной блок */
.container {
    text-align: center;
    background: rgba(15, 15, 20, 0.85);
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow:
        0 0 30px rgba(138, 43, 226, 0.25),
        0 0 60px rgba(255, 80, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Заголовок */
h1 {
    font-size: 52px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ff003c, #9b5cff, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 12px rgba(255, 0, 60, 0.6),
        0 0 24px rgba(155, 92, 255, 0.4);
}

/* Подзаголовок */
.subtitle {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 45px;
    color: #d1d1e0;
}

/* Кнопки */
.buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.btn {
    position: relative;
    text-decoration: none;
    padding: 15px 38px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    overflow: hidden;
}

/* КРАСНАЯ КНОПКА */
.btn-primary {
    background: linear-gradient(135deg, #ff003c, #ff7a00);
    color: #fff;
    box-shadow:
        0 0 15px rgba(255, 0, 60, 0.7),
        0 0 35px rgba(255, 122, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 25px rgba(255, 0, 60, 0.9),
        0 0 55px rgba(255, 122, 0, 0.6);
}

/* ФИОЛЕТОВАЯ КНОПКА */
.btn-secondary {
    background: transparent;
    color: #cbb9ff;
    border: 2px solid rgba(155, 92, 255, 0.6);
    box-shadow:
        0 0 12px rgba(155, 92, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(155, 92, 255, 0.15);
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 25px rgba(155, 92, 255, 0.9);
}
