﻿/* Wednesday Website - Complete Video Background Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.4) contrast(1.2) saturate(0.8);
}

/* Enhanced Background Overlay for Video */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.7) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(2px);
    z-index: -1;
}

/* Animated Particles Overlay */
.particles-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: rgba(255, 165, 0, 0.4);
    animation-duration: 8s;
}

.particle:nth-child(3n) {
    background: rgba(255, 215, 0, 0.3);
    animation-duration: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
}

/* Stained Glass Window Effect */
.stained-glass-effect {
    position: fixed;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    filter: blur(40px);
    animation: stainedGlassGlow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes stainedGlassGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1) rotate(180deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Creepster", cursive;
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-logo i {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    padding: 0.5rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 50%;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFD700;
    border-radius: 1px;
}

.sign-in-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    border-radius: 25px;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sign-in-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Enhanced Hero Section for Video Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: "Creepster", cursive;
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 30px rgba(255, 215, 0, 0.5);
    }
    100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 50px rgba(255, 215, 0, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000000;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateY(-3px);
}

/* Collage Section */
.collage-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.collage-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.featured-content {
    display: flex;
    flex-direction: column;
}

.featured-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.collage-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.featured-card:hover .collage-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.featured-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-family: "Creepster", cursive;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.card-overlay h4 {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.card-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.side-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collage-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.collage-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.collage-card .collage-image {
    height: 150px;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: "Creepster", cursive;
    font-size: 2.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.content-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 3rem;
    color: #FFD700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.content-card h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.content-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Creepster", cursive;
    font-size: 1.3rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-logo i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Video Controls */
.video-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.video-control-btn {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-control-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

/* Responsive Design for Video Background */
@media (max-width: 768px) {
    .video-background video {
        opacity: 0.2;
    }
    
    .background-overlay {
        background: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-search {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .collage-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .stained-glass-effect {
        width: 200px;
        height: 200px;
        top: 30%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stained-glass-effect {
        display: none;
    }
}

/* Fallback for browsers that don't support video */
.no-video .video-background {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
}

.no-video .video-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* New Mysterious Landing Page Styles */

/* Hero Full Space Design */
.hero-fullspace {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Corner Elements */
.corner-element {
    position: absolute;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.corner-element.top-left {
    top: 120px;
    left: 30px;
    animation-delay: 0.5s;
}

.corner-element.top-right {
    top: 120px;
    right: 30px;
    animation-delay: 0.7s;
}

.corner-element.bottom-left {
    bottom: 120px;
    left: 30px;
    animation-delay: 0.9s;
}

.corner-element.bottom-right {
    bottom: 120px;
    right: 30px;
    animation-delay: 1.1s;
}

/* Quote Box */
.quote-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    max-width: 300px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.quote-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.quote-text {
    color: #fff;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.quote-author {
    color: #ffc107;
    font-size: 12px;
    font-weight: bold;
}

/* Badge Box */
.badge-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    max-width: 250px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.badge-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.badge-icon {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 10px;
}

.badge-box h4 {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 5px;
}

.badge-box p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}

/* Mystery Box */
.mystery-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    max-width: 250px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.mystery-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.mystery-icon {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.mystery-box h4 {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 5px;
}

.mystery-box p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}

/* Supernatural Box */
.supernatural-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    max-width: 250px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.supernatural-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.supernatural-icon {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 10px;
    animation: glow 2s infinite alternate;
}

.supernatural-box h4 {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 5px;
}

.supernatural-box p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}

/* Center Content */
.center-content {
    text-align: center;
    z-index: 5;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title-container {
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-family: 'Creepster', cursive;
    font-size: 5rem;
    color: #ffc107;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
    margin-bottom: 30px;
    animation: titleGlow 3s ease-in-out infinite alternate;
    letter-spacing: 3px;
}

.title-subtitle {
    margin-bottom: 40px;
}

.subtitle-line {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.subtitle-line:nth-child(1) {
    animation-delay: 1.5s;
}

.subtitle-line:nth-child(2) {
    animation-delay: 1.7s;
}

.subtitle-line:nth-child(3) {
    animation-delay: 1.9s;
}

.cta-buttons {
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 2.1s both;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: #ffc107;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

/* Updated Section Titles */
.featured-characters h2,
.seasons-preview h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    margin-bottom: 50px;
}

/* Character and Season Cards */
.character-card,
.season-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.character-card:hover,
.season-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

/* Responsive Design for Corner Elements */
@media (max-width: 768px) {
    .corner-element {
        position: relative;
        margin: 20px auto;
        display: block;
        width: 90%;
        max-width: 300px;
    }
    
    .corner-element.top-left,
    .corner-element.top-right,
    .corner-element.bottom-left,
    .corner-element.bottom-right {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 20px auto;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle-line {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

/* Additional Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
    }
    100% {
        text-shadow: 0 0 50px rgba(255, 193, 7, 1);
    }
}

/* Episode Cards Styles */
.episode-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.episode-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.episode-card .card-body {
    padding: 1.5rem;
}

.episode-card .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
}

.episode-rating {
    display: flex;
    align-items: center;
}

.episode-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffc107;
    font-weight: bold;
}

.episode-card .card-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.episode-card .btn {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Episode Card Image Hover Effect */
.episode-card img {
    transition: transform 0.3s ease;
}

.episode-card:hover img {
    transform: scale(1.05);
}

/* Responsive Episode Cards */
@media (max-width: 768px) {
    .episode-card .row {
        flex-direction: column;
    }
    
    .episode-card .col-md-4 {
        width: 100%;
        max-width: 100%;
    }
    
    .episode-card .col-md-8 {
        width: 100%;
        max-width: 100%;
    }
    
    .episode-card img {
        height: 200px !important;
        object-fit: cover;
        border-radius: 0.375rem 0.375rem 0 0;
    }
}

/* Season Cards Hover Effects */
.season-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.season-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

.season-card img {
    transition: transform 0.3s ease;
}

.season-card:hover img {
    transform: scale(1.05);
}

/* Statistics Cards */
.episode-stats .card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.episode-stats .card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.15);
}

.episode-stats .card i {
    transition: all 0.3s ease;
}

.episode-stats .card:hover i {
    transform: scale(1.1);
    color: #ffc107;
}

/* Section Titles */
.seasons-section h2,
.episodes-cards h2,
.episode-stats h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    margin-bottom: 50px;
}

/* Loading Animation for Cards */
.episode-card,
.season-card,
.episode-stats .card {
    animation: fadeInUp 0.6s ease-out;
}

.episode-card:nth-child(1) { animation-delay: 0.1s; }
.episode-card:nth-child(2) { animation-delay: 0.2s; }
.episode-card:nth-child(3) { animation-delay: 0.3s; }
.episode-card:nth-child(4) { animation-delay: 0.4s; }
.episode-card:nth-child(5) { animation-delay: 0.5s; }
.episode-card:nth-child(6) { animation-delay: 0.6s; }
.episode-card:nth-child(7) { animation-delay: 0.7s; }
.episode-card:nth-child(8) { animation-delay: 0.8s; }

/* New Hero Section Styles - Matching the Reference Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-family: 'Creepster', cursive;
    font-size: 4.5rem;
    font-weight: bold;
    color: #ffc107;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.title-highlight {
    display: block;
    color: #ffc107;
    text-shadow: 0 0 40px rgba(255, 193, 7, 1);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Video Play Button */
.video-play-button {
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #ffc107;
    color: #ffc107;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
    background: rgba(255, 193, 7, 0.1);
}

.play-btn i {
    margin-left: 3px; /* Slight adjustment for play icon centering */
}

/* Enhanced Background Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.7) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(2px);
    z-index: -1;
}

/* Enhanced Particles */
.particles-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffc107;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

/* Enhanced Stained Glass Effect */
.stained-glass-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 40%);
    backdrop-filter: blur(1px);
    z-index: 2;
    animation: stainedGlassGlow 8s ease-in-out infinite alternate;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }
}

/* Additional Animations */
@keyframes titleGlow {
    0% {
        text-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
    }
    100% {
        text-shadow: 0 0 50px rgba(255, 193, 7, 1);
    }
}

@keyframes stainedGlassGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

/* Enhanced Card Hover Effects */
.character-card,
.season-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.character-card:hover,
.season-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

.character-card img,
.season-card img {
    transition: transform 0.3s ease;
}

.character-card:hover img,
.season-card:hover img {
    transform: scale(1.05);
}

/* Section Titles */
.featured-characters h2,
.seasons-preview h2,
.collage-section h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    margin-bottom: 50px;
}

/* Remove Black Overlay */
.background-overlay {
    display: none !important;
}

/* Adjust video background opacity for better visibility */
.video-background video {
    opacity: 0.6 !important;
    filter: brightness(0.7) contrast(1.1) saturate(0.9) !important;
}

/* Ensure content is visible without overlay */
.hero-fullspace {
    background: transparent !important;
}

/* Make corner elements more visible */
.corner-element .quote-box,
.corner-element .badge-box,
.corner-element .mystery-box,
.corner-element .supernatural-box {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    border: 2px solid #ffc107 !important;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4) !important;
}

/* Enhance main title visibility */
.main-title {
    text-shadow: 0 0 40px rgba(255, 193, 7, 1) !important;
    color: #ffc107 !important;
}

/* Make subtitle more visible */
.subtitle-line {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8) !important;
}

/* Completely Remove Black Background Overlay */
.background-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Remove any blur effects from background */
.background-overlay {
    backdrop-filter: none !important;
    filter: none !important;
}

/* Ensure video background is clear */
.video-background video {
    opacity: 0.8 !important;
    filter: brightness(0.8) contrast(1.2) saturate(1.1) !important;
}

/* Make sure no overlay affects the main content */
.hero-fullspace {
    background: transparent !important;
}

/* Remove any blur from main content */
.main-content {
    backdrop-filter: none !important;
}

/* Ensure corner elements are clear and visible */
.corner-element .quote-box,
.corner-element .badge-box,
.corner-element .mystery-box,
.corner-element .supernatural-box {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid #ffc107 !important;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5) !important;
}

/* Make main title more prominent */
.main-title {
    text-shadow: 0 0 50px rgba(255, 193, 7, 1) !important;
    color: #ffc107 !important;
    font-weight: bold !important;
}

/* Ensure subtitle is clear */
.subtitle-line {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    font-weight: 500 !important;
}

/* Completely Remove Black Overlay - Set to 0% opacity */
.background-overlay {
    opacity: 0 !important;
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Remove any background from body that might be causing overlay effect */
body {
    background: transparent !important;
}

/* Ensure main content has no overlay */
.main-content {
    background: transparent !important;
}

/* Remove any overlay effects from hero section */
.hero-fullspace {
    background: transparent !important;
}

/* Make sure video background is fully visible */
.video-background {
    z-index: -3 !important;
}

.video-background video {
    opacity: 1 !important;
    filter: none !important;
}

/* Remove any backdrop filters that might create overlay effect */
.hero-fullspace,
.main-content,
.background-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Ensure particles are visible without overlay interference */
.particles-overlay {
    z-index: 1 !important;
}

/* Make stained glass effect more subtle */
.stained-glass-effect {
    opacity: 0.3 !important;
    z-index: 2 !important;
}

/* Restore Black and Gold Background Theme */
body {
    background: #000 !important;
    color: #fff !important;
}

/* Restore background overlay for theme */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.7) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(2px);
    z-index: -1;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* Remove any oblong black overlays from cards */
.card {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid #ffc107 !important;
    backdrop-filter: blur(10px) !important;
}

/* Ensure cards are fully visible without oblong overlay */
.character-card,
.season-card {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 2px solid #ffc107 !important;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3) !important;
}

/* Remove any overlay effects that might create oblong shapes */
.card::before,
.card::after {
    display: none !important;
}

/* Ensure video background is visible with theme */
.video-background video {
    opacity: 0.4 !important;
    filter: brightness(0.5) contrast(1.2) saturate(0.8) !important;
}

/* Restore hero section background */
.hero-fullspace {
    background: transparent !important;
}

/* Make sure main content has proper background */
.main-content {
    background: transparent !important;
}

/* Restore corner elements with proper background */
.corner-element .quote-box,
.corner-element .badge-box,
.corner-element .mystery-box,
.corner-element .supernatural-box {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 2px solid #ffc107 !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4) !important;
}

/* Ensure sections have proper dark background */
.featured-characters,
.seasons-preview,
.collage-section,
.content-section {
    background: transparent !important;
}

/* Restore Professional Navigation Bar */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 2px solid #ffc107 !important;
    padding: 1rem 0 !important;
}

.navbar-brand {
    color: #ffc107 !important;
    font-family: 'Creepster', cursive !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

.navbar-brand i {
    color: #ffc107 !important;
    margin-right: 0.5rem !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
    background: rgba(255, 193, 7, 0.1) !important;
}

.navbar-nav .nav-link.active {
    color: #ffc107 !important;
    border-bottom: 2px solid #ffc107 !important;
    background: transparent !important;
}

/* Search Bar Styling */
.navbar .form-control {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid #ffc107 !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 0.5rem 1rem !important;
}

.navbar .form-control::placeholder {
    color: #ccc !important;
}

.navbar .form-control:focus {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: #ffc107 !important;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3) !important;
    color: #fff !important;
}

/* Search Button */
.navbar .btn-outline-warning {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.navbar .btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #000 !important;
}

/* Sign In Button */
.navbar .btn-warning {
    background: #ffc107 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
}

.navbar .btn-warning:hover {
    background: #e0a800 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4) !important;
}

/* Mobile Navigation */
.navbar-toggler {
    border: 1px solid #ffc107 !important;
    color: #ffc107 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3) !important;
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95) !important;
        border-radius: 10px !important;
        margin-top: 1rem !important;
        padding: 1rem !important;
        border: 1px solid #ffc107 !important;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0 !important;
        text-align: center !important;
    }
    
    .navbar .d-flex {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .navbar .form-control {
        margin-bottom: 0.5rem !important;
    }
}
