
.video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.sticky-nav.visible {
    transform: translateY(0);
}

.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 800px;
    height: 500px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@font-face {
    font-family: 'Aptos Display';
    src: url('/fonts/aptos-display.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.aptos-font {
    font-family: 'Aptos Display', sans-serif;

}
.menu-overlay {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.menu-overlay.active {
    transform: translateX(0);
}
.opacity-0 {
    opacity: 0;
}
.opacity-100 {
    opacity: 1;
}
.transition-opacity {
    transition: opacity 0.5s ease-in-out;
}
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    width: 300px;  /* Width of phone-like format */
    height: 500px; /* Height of phone-like format */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 3s linear infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
}

.bounce {
    animation: bounce 0.5s ease infinite;
}
        /* Subtle Halloween animations */
        .subtle-glow {
            box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
            transition: box-shadow 0.3s ease;
        }
        
        .subtle-glow:hover {
            box-shadow: 0 0 25px rgba(255, 102, 0, 0.3);
        }
        
        .creepy-border {
            border: 2px solid;
            border-image: linear-gradient(45deg, #7f1e1b, #FF6600, #8A2BE2, #7f1e1b) 1;
        }
        
        .floating-subtle {
            animation: float-subtle 4s ease-in-out infinite;
        }
        
        @keyframes float-subtle {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        .video-overlay {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.4), rgba(138, 43, 226, 0.2), rgba(26, 26, 26, 0.6));
        }

        .section-bg {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(138, 43, 226, 0.1), rgba(26, 26, 26, 0.95));
        }

        .text-shadow-subtle {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .copy-success {
            animation: copySuccess 2s ease-in-out;
        }
        
        @keyframes copySuccess {
            0% { background-color: rgba(127, 30, 27, 0.8); }
            50% { background-color: rgba(0, 128, 0, 0.8); }
            100% { background-color: rgba(127, 30, 27, 0.8); }
        }