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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    margin-bottom: 2rem;
}

#logo-img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

.coming-soon {
    font-size: 1.2rem;
    color: #888888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-link {
    margin-top: 2rem;
    font-size: 1rem;
}

.contact-link a {
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none;
    border: none;
    background: none;
    padding: 0;
}

.contact-link a:hover {
    background-color: transparent;
    color: #cccccc;
}
