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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    min-height: 100vh;
}

.landing-container {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('/images/crazy-marco-upscaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 4rem 2rem;
}

.content {
    max-width: 800px;
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headline {
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

h1.headline {
    font-size: 2rem;
}

h2.headline {
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    background-color: #8a101e;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #991b1e;
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 0.875rem 1.75rem;
    }
} 