body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a; /* Fallback color if video fails */
    color: #fff;
    overflow: hidden; /* Hides scrollbars if video size is too large */
    position: relative; /* Important for video's absolute positioning */
}

.background-video {
    position: fixed; /* Fixes video to the screen */
    right: 0;
    bottom: 0;
    min-width: 100%; /* Fills width */
    min-height: 100%; /* Fills height */
    width: fit-content;
    height: fit-content;
    z-index: -1; /* Sends video to background */
    background-size: cover; /* Ensures video fills available space */
    background-position: center; /* Centers video */
    filter: brightness(0.6) blur(10px); /* Existing filters */
}

/* Initial screen styling */
.initial-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: absolute; /* Take full screen */
    top: 0;
    left: 0;
    z-index: 10; /* Ensure it's above the video */
    background-color: rgba(0, 0, 0, 0.7); /* Optional: semi-transparent overlay */
}

/* ENTER button styling */
.enter-button {
    background-color: rgba(0, 188, 212, 0.8); /* A nice blue color with transparency */
    color: #fff;
    border: none;
    padding: 20px 60px; /* Increased padding for larger size */
    font-size: 2em; /* Larger font size */
    font-weight: bold;
    border-radius: 50px; /* More rounded edges */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.enter-button:hover {
    background-color: #00bcd4; /* Brighter blue on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}


.container {
    display: flex; /* Changed to flex to maintain layout when displayed */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: relative; /* Keep relative, or absolute, but z-index is important */
    z-index: 1; /* Brings container to foreground relative to video */
}

.content-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 60px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 5px;
}

h1 {
    font-size: 4em;
    margin: 0;
    letter-spacing: 5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.adam-text { /* Renamed from soon-text based on new HTML */
    font-size: 1.5em;
    margin-top: 10px;
    position: relative;
    padding: 5px 0;
}

/* If you want lines next to the "_0512_" text, these also need to be renamed: */
.adam-text::before,
.adam-text::after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.adam-text::before {
    left: calc(50% - 60px);
}

.adam-text::after {
    right: calc(50% - 60px);
}


.social-links {
    margin-top: 30px;
}

.social-links a {
    color: #fff;
    font-size: 2em;
    margin: 0 15px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: #00bcd4;
}

/* Volume controls styling */
.volume-controls {
    position: absolute;
    top: 20px; /* Changed from bottom to top */
    right: 20px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.volume-controls i {
    font-size: 1.2em;
    margin: 0 8px;
    color: #fff;
}

.volume-controls input[type="range"] {
    -webkit-appearance: none; /* Remove default styling for WebKit browsers */
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    outline: none;
    transition: opacity .2s;
}

.volume-controls input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #00bcd4;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.volume-controls input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #00bcd4;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .content-box {
        padding: 30px 40px;
    }

    h1 {
        font-size: 3em;
    }

    .logo {
        width: 100px;
    }

    .adam-text {
        font-size: 1.2em;
    }

    .social-links a {
        font-size: 1.8em;
        margin: 0 10px;
    }

    .enter-button {
        padding: 15px 45px;
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .content-box {
        padding: 20px 30px;
    }

    h1 {
        font-size: 2.5em;
    }

    .adam-text {
        font-size: 1em;
    }

    .social-links a {
        font-size: 1.5em;
        margin: 0 8px;
    }

    .enter-button {
        padding: 10px 30px;
        font-size: 1.5em;
    }

    .volume-controls {
        top: 10px; /* Changed from bottom to top for small screens too */
        right: 10px;
        padding: 8px 12px;
    }

    .volume-controls input[type="range"] {
        width: 80px;
    }
}