/* Базовые стили на основе Remnawave Subscription Page */
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background-color: #161b23;
    background-image:
        linear-gradient(to right, rgba(128, 128, 128, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 128, 128, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    background-attachment: fixed;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 60% 40% at 25% 40%, rgba(151, 117, 250, 0.08), transparent 50%),
        radial-gradient(ellipse 50% 50% at 85% 85%, rgba(34, 211, 238, 0.06), transparent 50%);
}

.container {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Стили карточек из оригинала */
.info-card {
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card-cyan {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(178, 84, 204, 1);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
    margin: 0.5rem;
}

.btn:hover {
    opacity: 0.9;
}
