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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 800px;
    background: #ffffff;
    padding: 3rem;
}

.hero-image {
    max-width: 50%;
    height: auto;
    margin: 2rem auto;
    display: block;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.coming-soon {
    font-size: 0.625rem;
    font-weight: 500;
    color: #ffffff;
    background: #000000;
    margin-top: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
}
