body {
    margin: 0;
    padding: 0;
    background: url('https://suntelia.moongate.studio/trivax/trivax-band.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* ✅ Fully Dynamic Container */
.container {
    width: 400px; /* Default width for desktop */
    max-width: 90vw; /* Ensures it shrinks properly on smaller screens */
    height: auto; /* Expands dynamically */
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    margin: auto; /* Centers it properly */
	opacity: 0; /* Start invisible */
	transform: translateY(20px); /* Slightly move it down */
    animation: fadeInContainer 2.5s ease-out forwards;
}

@keyframes fadeInContainer {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ✅ Ensure Top Section Scales Properly */
.top-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0; /* Prevents shrinking */
}

.top-section img {
    width: 275px;
    height: 275px;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.9));
}

/* Logo Styling */
.logo {
    width: 165px !important;
    height: 100px !important;
    object-fit: contain;
    margin-top: -50px;
}

/* Text Styling */
.text {
    font-family: "Artifika", serif;
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #b3b3b3;
    letter-spacing: 5px;
    margin-top: 10px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px; /* Adds spacing between the social icons */
}

.social-icons img {
    width: 25px !important;
    height: 25px !important;
}

/* ✅ Ensuring List Section Expands Correctly */
.list-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px; /* Provides space before the footer */
    flex-grow: 1; /* Expands as needed */
}

.list-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

.list-item img {
    max-width: 140px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain; /* Ensures the entire image fits within the box */
}

.list-item button {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: white;
    background: transparent;
    border: 1px solid white;
    padding: 3px 30px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 0px 20px 5px rgba(40, 40, 40, 0.9);
    transition: all 1s ease;
}

.list-item button:hover {
    font-size: 14px;
    color: #404040;
    border: 1px solid #404040;
}

/* ✅ Listen Button Fix */
.listen-btn {
    position: fixed;
    left: 10px;
    bottom: 10px;
    cursor: pointer;
    z-index: 1000; /* Ensures it appears above all other elements */
}

.listen-btn img {
    width: 40px;
    height: 40px;
}

/* ✅ Footer Fix */
.footer-logo {
    position: relative;
    margin-top: 60px;
    padding-bottom: 0px;
}

/* ✅ Desktop Optimization */
@media screen and (min-width: 1025px) {
    .container {
        min-height: 100vh; /* Ensures it fills the screen */
        height: auto; /* Expands as needed */
        margin: 20px auto; /* Keeps it centered */
    }
}

/* ✅ Mobile Optimization */
@media screen and (max-width: 768px) {
    .container {
        width: 75vw;
        max-width: 350px;
        height: auto; /* Allows it to expand properly */
        padding: 20px; /* Ensures proper spacing */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 100vh; /* Ensures full screen coverage */
    }
}
