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

body {
    background-color: #1a1a1a;
    color: #f5f0e8;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top stripe */
.top-stripe {
    width: 100%;
    height: 12px;
    background: repeating-linear-gradient(
        90deg,
        #fa3529 0px,
        #fa3529 40px,
        #12c6c8 40px,
        #12c6c8 80px
    );
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 20px;
    text-align: center;
}

.logo-wrap {
    margin-bottom: 32px;
}

.logo-wrap img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #fa3529;
    margin: 0 auto 28px;
}

.tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: #12c6c8;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.coming-soon-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 0.1em;
    color: #fa3529;
    line-height: 1;
    margin-bottom: 12px;
}

.coming-soon-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #f5f0e8;
    opacity: 0.7;
}

/* Bottom stripe */
.bottom-stripe {
    width: 100%;
    height: 12px;
    background: repeating-linear-gradient(
        90deg,
        #12c6c8 0px,
        #12c6c8 40px,
        #fa3529 40px,
        #fa3529 80px
    );
}
