@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
    --bg-color: #0A1628;
    --gold: #FCCE06;
    --text-color: #FFFFFF;
    --button-hover: #E5B800;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 8px; /* Подтянул текст ближе к лого */
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
}

.cta-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--bg-color);
    padding: 18px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(252, 206, 6, 0.2);
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.cta-button-note {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    font-weight: 400;
    opacity: 0.78;
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
}
