/* Retropix font */
@font-face {
    font-family: 'retropix';
    src: url('fonts/retropix.otf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

/* Base reset and page setup */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #070707;
    color: white;
    overflow: hidden; /* Prevents scrollbars from the background text */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Styling the animated binary background */
#binary-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Positive z-index keeps it in front of the body background */
    color: #3a3a3a; /* Bright gray for visibility */
    font-family: monospace;
    font-size: 18px;
    line-height: 1.5;
    word-break: break-all;
    overflow: hidden;
    user-select: none;
}

/* Logo & text container */
.content {
    text-align: center;
    position: relative; /* Required for z-index to take effect against siblings */
    z-index: 10; /* Ensures content is layered strictly above the binary background */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Styling for the SVG logo image */
.logo-img {
    max-width: 100%;
    width: 500px;
    height: auto;
    margin-bottom: 20px; 
}

/* Styling the Coming Soon text */
h2 {
    font-family: 'Retropix', monospace;
    color: #7700ff; 
    font-size: 100px;
    margin: 0;
}

/* Styling the copyright footer */
.footer {
    position: absolute;
    bottom: 20px;
    font-family: sans-serif; 
    font-size: 10px;
    color: #ffffff;
    z-index: 10; /* Keeps footer above the binary background */
}

/* Mobile responsiveness */
@media (max-width: 770px) {
    .logo-img { width: 500px; } 
    h2 { font-size: 70px; }
}