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

body {
    background-color: #ff6a00;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.logo {
    margin-bottom: 60px;
}

.logo-img {
    width: 450px;
    height: auto;
}

.tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.4;
}

.coming-soon {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFBF94;
    letter-spacing: 8px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .logo-img {
        width: 200px;
    }

    .tagline {
        font-size: 22px;
        padding: 0 20px;
    }

    .coming-soon {
        font-size: 12px;
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 160px;
    }

    .tagline {
        font-size: 18px;
    }
}
