/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Default background if videos don't load */
    text-align: center;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
    overflow: hidden;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    background-size: cover;
    z-index: 1;
    display: block; /* Ensure the video is visible */
}

/* Slideshow */
.slideshow-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    width: 100%;
    z-index: 2;
}

.mySlides {
    display: none;
    position: absolute;
    width: 100%;
}

.mySlides img {
    width: 80%;
    max-height: 40vh;
    object-fit: contain;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.active-slide {
    opacity: 1;
}

/* Button Container */
.button-container {
    position: fixed;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.proceed-button {
    background-color: #ff66b2;
    color: white;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid white;
    animation: pulse 2s infinite;
    position: relative;
    margin: 0 5px;
}

.proceed-button:hover {
    background-color: #ff3385;
}

@keyframes pulse {
    0% { box-shadow: 0 0 5px white; }
    50% { box-shadow: 0 0 20px white; }
    100% { box-shadow: 0 0 5px white; }
}

/* Status Container */
.status-container {
    position: fixed;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: white;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background-color: #00FF00;
    border-radius: 50%;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

/* Social Media Container */
.social-media-container {
    position: fixed;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 20px;
}

.social-button {
    width: 50px;
    height: 50px;
}

/* Heart Animation */
.heart {
    position: fixed;
    top: 10%;
    right: 5%;
    color: #ff66b2;
    font-size: 24px;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.heart.active {
    opacity: 1;
}

/* Transition & Login Menu Styles */
.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.login-container {
    display: none; /* Hidden initially */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6; /* Above the button container */
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.login-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-container input {
    margin: 10px 0;
    padding: 8px;
    width: 200px;
    border: none;
    border-radius: 4px;
}

.login-container button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: #ff66b2;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid white;
}

.login-container button:hover {
    background-color: #ff3385;
}

/* Extra Login Options Styling */
.login-options {
    margin-top: 15px;
}

.option-button {
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    margin: 0 5px;
    cursor: pointer;
}

.option-button:hover {
    background-color: #555;
}
