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

html, body {
    height: 100%;
    width: 100%;
    background-color: white;
}

#container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    width: 250px;
    height: auto;
    margin-left: 2%;
}

#logo svg {
    width: 100%;
    height: auto;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#coming-soon {
    margin-top: 4px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: black;
}

footer {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#theme-toggle {
    position: absolute;
    right: 0;
    bottom: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: sans-serif;
    font-size: 16px;
}

#light-text {
    display: none;
}

#copyright {
    font-family: sans-serif;
    font-size: 16px;
    color: #666;
}

html[data-theme="dark"] body,
html[data-theme="dark"] {
    background-color: #0A1628;
}

html[data-theme="dark"] #logo svg path {
    fill: white;
}

html[data-theme="dark"] #coming-soon {
    color: white;
}

html[data-theme="dark"] #theme-toggle {
    color: #999;
}

html[data-theme="dark"] #dark-text {
    display: none;
}

html[data-theme="dark"] #light-text {
    display: inline;
}

html[data-theme="dark"] #copyright {
    color: #999;
}

@media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) body,
    html:not([data-theme="light"]) {
        background-color: #0A1628;
    }

    html:not([data-theme="light"]) #logo svg path {
        fill: white;
    }

    html:not([data-theme="light"]) #coming-soon {
        color: white;
    }

    html:not([data-theme="light"]) #theme-toggle {
        color: #999;
    }

    html:not([data-theme="light"]) #dark-text {
        display: none;
    }

    html:not([data-theme="light"]) #light-text {
        display: inline;
    }

    html:not([data-theme="light"]) #copyright {
        color: #999;
    }
}

@media (max-width: 600px) {
    #logo {
        width: 180px;
    }

    #coming-soon {
        margin-top: 16px;
        font-size: 18px;
        padding: 0 20px;
        text-align: center;
    }

    footer {
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    #theme-toggle {
        position: static;
        padding: 10px 20px;
        font-size: 16px;
        min-height: 44px;
    }

    #copyright {
        font-size: 14px;
    }
}