body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('Coolvetica Rg.otf') format('opentype');
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

h1 {
	font-family: 'Coolvetica', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #4ade80 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-buttons {
    margin-bottom: 3rem;
}

.button {
    padding: 12px 30px;
    margin: 0 10px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: linear-gradient(90deg, #38bdf8 0%, #4ade80 100%);
    color: white;
    font-weight: bold;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-placeholder {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #38bdf8 0%, #4ade80 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    color: #94a3b8;
    line-height: 1.6;
}

.beta-button {
    margin-top: 3rem;
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #4ade80 0%, #38bdf8 100%);
}

footer {
    margin-top: 4rem;
    padding: 2rem 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}