/* General Styles for Index Page */
body.index-page {
    background-color: #000;
    color: #808080;
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
}

.main-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent),
                linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-size: cover;
    mask-composite: intersect;
}

.enter-text a {
    color: #FFFFFF;
    font-size: 3em;
    text-decoration: none;
    font-family: 'Lucida Console', 'Courier New', monospace;
}

.enter-text a:hover {
    color: #F0F0F0;
}

.instructions a {
    color: #CCCCCC;
    text-decoration: none;
}

.instructions a:hover {
    color: #D4D4D4;
}

.instructions a:visited {
    color: #666666;
}

.instructions {
    color: #808080;
    font-size: 0.9em;
}

/* Scoped Styles for altmain.html */
body.alt-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.test-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.alt-top-section {
    flex: 1;
    padding: 0; /* Remove padding to align items tightly */
    display: flex;
    align-items: flex-start; /* Align items to the top */
    justify-content: space-between;
    background: url('http://www.ahopelessmotive.com/images/skyline.jpg') no-repeat center center;
    background-size: cover;
}

.alt-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align to the right */
    justify-content: flex-start; /* Ensure items are aligned at the top */
    gap: 10px; /* Space between SoundCloud player and navbar */
}

.alt-logo {
    height: auto;  /* Maintain aspect ratio */
    margin-top: 33px;  /* Add some space above the logo */
    margin-left: 10px; /* Add some space to the left of the logo */
}

.alt-navbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px; /* Add space above the navbar */
}

.alt-navbar a {
    margin: 0 5px;
}

.alt-content-section {
    flex: 1;
    background-color: #333;
}

.alt-walker-section {
    flex: 1;
    overflow: hidden;
}

.soundcloud-player {
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: flex-start;   /* Align content to the top */
    width: 100%; /* Ensure the container takes full width for alignment */
    margin: 0; /* Reset margins to prevent extra space */
    padding: 0; /* Remove any padding for a tight fit */
}
