body {
    background-color: #1c1d18;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.content {
    padding: 2rem;
    background-color: rgba(28, 29, 24, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.coming-soon-text {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 300;
}

.banner-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .coming-soon-text {
        font-size: 1.1rem;
    }
    
    .banner-image {
        max-width: 90%;
    }
} 