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

body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 3.5rem;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo {
    max-width: 180px;
    height: auto;
    border-radius: 50%;
    border: 3px solid #f00;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    color: #f00;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.4);
}

main {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.tagline {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
    font-style: italic;
    letter-spacing: 1px;
}

.body-text {
    font-size: 1.25rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    font-weight: 300;
}

footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Media Queries for Responsive Desktop Scaling */
@media (min-width: 768px) {
    .brand {
        flex-direction: row;
        gap: 2rem;
        text-align: left;
    }

    .brand-name {
        font-size: 4rem;
        margin-top: 0;
        max-width: 400px;
        line-height: 1.1;
    }

    .tagline {
        font-size: 2.4rem;
    }

    .body-text {
        font-size: 1.5rem;
    }
}
