/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background: radial black → dark gray */
body {
    height: 100vh;
    width: 100vw;
    background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Michroma', sans-serif;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Container for vertical layout */
.container {
    max-width: 90%;
    padding: 20px;
}

/* Responsive logo */
.logo {
    max-width: 70%;
    height: auto;
    margin-bottom: 30px;
}

/* Title styling */
.title {
    font-size: 2.8rem;
    letter-spacing: 0.25rem;
    margin-bottom: 25px;
}

/* Tagline with breathing room */
.tagline {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1rem;
    }
}
