:root {
    --bg-color: #0D011A;
    --text-color: #ffffff;
    --accent-color: #8A2BE2;
}

html, body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 1rem;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.tagline {
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    max-width: 600px;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--text-color);
    font-weight: 700;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
    background-color: #9d4eed;
}

.footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
} 
