@import url('https://googleapis.com');

body {
    background-color: #0b0e14;
    background-image: 
        radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(217, 70, 239, 0.1) 0px, transparent 50%);
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card {
    background: rgba(23, 28, 40, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Кнопка "Купить" и "Войти" */
.btn-premium {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(124, 58, 237, 0.4);
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px -5px rgba(124, 58, 237, 0.6);
    filter: brightness(1.1);
}

.btn-premium:active {
    transform: translateY(0) scale(0.98);
}

/* Кнопка "Скачать" (Зеленая) */
.btn-download {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.btn-download:hover {
    box-shadow: 0 20px 30px -5px rgba(16, 185, 129, 0.6);
}

.status-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 8px;
}

.btn-secondary {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: transparent;
    color: #a855f7;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 14px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    background: transparent;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}
