/* General Body Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Lucida Console', monospace;
    background-color: #000;
    color: #FFFFFF;
}

/* Video Background Styles */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio for portrait screens */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevents user interaction with the video */
}

/* Main Content Container */
.content-container {
    padding: 15px;
}

#content {
    background-color: rgba(128, 128, 128, 0.9);
    width: 100%;
    max-width: 350px;
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Section styling */
.content-section {
    margin-bottom: 20px;
}

.content-section:last-child {
    margin-bottom: 0;
}

h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}

/* List/Link styling */
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

li {
    margin-right: 20px;
    margin-bottom: 10px;
}

li:last-child {
    margin-right: 0;
}

a {
    text-decoration: none;
    color: #FFFFCC;
    transition: color 0.3s;
}

a:visited {
    color: #FFCC00;
}

a:hover {
    text-decoration: underline;
}

/* Info section specific styles */
#info {
    color: #C0C0C0;
    margin-top: 20px;
}

#info ul {
    display: inline;
}

#info li {
    display: inline;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 480px) {
    #content {
        padding: 15px;
        max-width: 90%;
    }

    h3 {
        font-size: 13px;
    }

    body {
        font-size: 12px;
    }

    li {
        margin-right: 15px;
    }
}
