* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #1b1f3b, #0b0e1a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    /* 🔥 ВАЖНЫЕ ПРАВКИ */
    overflow-x: hidden;
    overflow-y: auto;
}

/* Фоновые эффекты */
.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 12s ease-in-out infinite;
}

.orb1 {
    width: 260px;
    height: 260px;
    background: #6c63ff;
    top: 10%;
    left: 15%;
}

.orb2 {
    width: 220px;
    height: 220px;
    background: #8b7cff;
    bottom: 15%;
    right: 10%;
    animation-delay: 4s;
}

.orb3 {
    width: 180px;
    height: 180px;
    background: #4f46e5;
    top: 50%;
    right: 40%;
    animation-delay: 8s;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Карточка */
.card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    background: rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 32px 22px;
    text-align: center;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Контент */
.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

h1 {
    font-size: 22px;
    margin-bottom: 6px;
    color: #eaeaff;
}

.subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ffffff; /* белый цвет */
    opacity: 1;     /* чтобы был не приглушённый */
}

/* Кнопки */
.btn {
    display: block;
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #5f67ff, #7b6cff);
    transition: transform .2s, box-shadow .2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(95,103,255,0.4);
}

.accent {
    background: linear-gradient(135deg, #8b7cff, #6c63ff);
}

/* Бонусы */
.bonus-box {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
    color: #eaeaff;
}

.bonus-box h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.bonus-box ul {
    list-style: none;
    font-size: 14px;
}

.bonus-box li {
    margin-bottom: 8px;
}

/* Подпись */
.note {
    font-size: 12px;
    opacity: 0.6;
    color: #eaeaff;
}
