@import url('https://fonts.cdnfonts.com/css/zybo-pop-deco');
@import url('https://fonts.cdnfonts.com/css/fanky-bubble-graffiti');
@import url('https://fonts.cdnfonts.com/css/street-echos');
@import url('https://fonts.cdnfonts.com/css/skater-street');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka One', cursive;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* ===== ENTRANCE SCREEN WITH VIDEO BACKGROUND ===== */
.entrance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: all 1s ease;
    overflow: hidden;
    /* Remove static gradient background */
}

.entrance-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

/* Entrance Video */
.entrance-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.entrance-video.loaded {
    opacity: 1;
}

/* Video Overlay for Better Text Readability */
.entrance-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    /* Gradient overlay for better text contrast */
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Fallback Background (if video fails to load) */
.entrance-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    z-index: -3;
}

/* Enhanced Content Styling for Video Background */
.entrance-content {
    text-align: center;
    z-index: 10;
    position: relative;
    backdrop-filter: blur(2px);
    border-radius: 20px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Title for Video Background */
.entrance-title {
    font-family: 'Street Echos', sans-serif;
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-shadow: 
        4px 4px 0 #000,
        8px 8px 0 #333,
        12px 12px 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 255, 255, 0.3);
    -webkit-text-stroke: 3px #000000;
    color: white;
    animation: titleGlowPulse 3s ease-in-out infinite alternate;
}

@keyframes titleGlowPulse {
    0% { 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    }
    100% { 
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
    }
}

/* Enhanced Subtitle */
.entrance-subtitle {
    font-family: 'Skater Street', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 
        3px 3px 0px #000000, 
        6px 6px 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    -webkit-text-stroke: 1px #000000;
    color: #FFFFFF;
    animation: subtitleFloat 4s ease-in-out infinite;
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.9; }
    50% { transform: translateY(-5px); opacity: 1; }
}

/* Enhanced Enter Button */
.enter-btn {
    padding: 20px 40px;
    background: linear-gradient(45deg, rgba(108, 106, 106, 0.9), rgba(193, 191, 191, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-family: 'Skater Street', sans-serif;
    font-size: 1.4rem;
    cursor: pointer;
    text-shadow: 2px 2px 0px #000000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    -webkit-text-stroke: 1px #000000;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.enter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(45deg, rgba(108, 106, 106, 1), rgba(193, 191, 191, 1));
}

/* Video Controls */
.video-controls-entrance {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 11;
}

.video-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.video-icon {
    width: 20px;
    height: 20px;
    margin-left: 2px; /* Visual centering for play icon */
}

/* Reduced Particles (since video provides movement) */
.entrance-particles {
    opacity: 0.3; /* Make particles more subtle */
}

/* Mobile Responsive for Video Background */
@media (max-width: 768px) {
    .entrance-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .entrance-title {
        font-size: clamp(3rem, 10vw, 8rem);
    }
    
    .entrance-subtitle {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .enter-btn {
        font-size: 1.2rem;
        padding: 18px 35px;
        min-width: 220px;
    }
    
    .video-controls-entrance {
        bottom: 20px;
        right: 20px;
    }
    
    .video-toggle {
        width: 45px;
        height: 45px;
    }
    
    .video-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .entrance-title {
        font-size: 2.5rem;
    }
    
    .entrance-subtitle {
        font-size: 1rem;
    }
    
    .enter-btn {
        font-size: 1rem;
        min-width: 200px;
    }
    
    .entrance-content {
        padding: 20px 15px;
    }
}

/* Performance Optimizations */
.entrance-video {
    will-change: transform;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .entrance-video {
        display: none;
    }
    
    .entrance-video-overlay {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.main-content.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: 'Street Echos', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-shadow: 
        4px 4px 0 #000,
        8px 8px 0 #333,
        12px 12px 15px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 3px #000000;
}

.hero-subtitle {
    font-family: 'Skater Street', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0px #000000, 6px 6px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    -webkit-text-stroke: 1px #000000;
    color: #FFFFFF;
}

/* ===== CONTRACT ADDRESS ===== */
.ca-section {
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ca-label {
    font-family: 'Skater Street', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 0px #000000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px #000000;
}

.ca-container {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ca-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    padding: 12px 16px;
    outline: none;
    text-align: center;
    cursor: pointer;
}

.ca-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #c0bfb8, #e5e3e3);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Skater Street', sans-serif;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 0px #000000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.ca-copy-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.copy-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Skater Street', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 150px;
    text-shadow: 2px 2px 0px #000000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 1px #000000;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn-primary {
    background: linear-gradient(45deg, #6c6a6a, #c1bfbf);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('./img/bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.about-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-family: 'Skater Street', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFFF00, #DAA520);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        3px 3px 0px #000000,
        6px 6px 0px #333333,
        9px 9px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    -webkit-text-stroke: 2px #000000;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    font-family: 'Skater Street', sans-serif;
    text-shadow: 2px 2px 0px #000000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* ===== SOCIAL LINKS - UPDATED ===== */
.social-links {
    text-align: center;
}

.social-links h3 {
    font-family: 'Skater Street', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 0px #000000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    -webkit-text-stroke: 1px #000000;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-family: 'Skater Street', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 2px 2px 0px #000000, 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.03em;
    -webkit-text-stroke: 1px #000000;
    min-height: 50px;
}

.social-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Twitter Button */
.twitter-btn {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.twitter-btn:hover {
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.5);
}

/* Community Button */
.community-btn {
    background: linear-gradient(45deg, #7c3aed, #5b21b6);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.community-btn:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

/* YouTube Button */
.youtube-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

/* Telegram Button */
.telegram-btn {
    background: linear-gradient(45deg, #0088cc, #006bb3);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

/* Icons */
.twitter-icon,
.community-icon,
.youtube-icon,
.telegram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Mobile Responsive for Social */
@media (max-width: 768px) {
    .social-buttons {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 300px;
    }
    
    .social-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .social-links h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-btn {
        padding: 12px 15px;
        font-size: 0.8rem;
        min-height: 45px;
    }
    
    .twitter-icon,
    .community-icon,
    .youtube-icon,
    .telegram-icon {
        width: 18px;
        height: 18px;
    }
    
    .social-links h3 {
        font-size: 1.3rem;
    }
}

/* Hover effects for better UX */
.social-btn:active {
    transform: translateY(0) scale(0.98);
}

.social-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ===== GALLERY SECTION FIXED ===== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75));
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.gallery-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 300px;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Gallery Image Container */
.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

/* Real Image Styling */
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

/* Image Fallback Styling */
.image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Show fallback when image fails to load */
.gallery-image.fallback .image-fallback {
    display: flex;
}

.fallback-content {
    text-align: center;
    color: white;
}

.fallback-title {
    display: block;
    font-family: 'Street Echos', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-shadow: 
        2px 2px 0 #000,
        4px 4px 0 #333,
        6px 6px 10px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 2px #000000;
    margin-bottom: 0.5rem;
}

.fallback-subtitle {
    display: block;
    font-family: 'Skater Street', sans-serif;
    font-size: 1rem;
    text-shadow: 1px 1px 0px #000000, 2px 2px 4px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 1px #000000;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Skater Street', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px #000000;
    -webkit-text-stroke: 1px #000000;
}

.gallery-overlay p {
    font-family: 'Skater Street', sans-serif;
    font-size: 0.9rem;
    text-shadow: 1px 1px 0px #000000;
    opacity: 0.9;
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-overlay {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
        padding: 15px;
    }
    
    .fallback-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .fallback-title {
        font-size: 1.2rem;
    }
    
    .fallback-subtitle {
        font-size: 0.8rem;
    }
}
/* ===== GALLERY VIDEO STYLES ===== */

/* Video Container */
.gallery-video {
    position: relative;
    overflow: hidden;
}

/* Video Player */
.gallery-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    position: relative;
}

.gallery-video-player:hover {
    transform: scale(1.05);
}

/* Video Play Button Overlay */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.video-play-button.playing {
    opacity: 0;
    pointer-events: none;
}

.play-icon {
    width: 24px;
    height: 24px;
    color: white;
    margin-left: 3px; /* Offset for visual centering */
}

/* Video Loading State */
.gallery-video-player[data-loading="true"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: videoLoading 1s linear infinite;
    z-index: 4;
}

@keyframes videoLoading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Video Fallback Enhancement */
.gallery-video .image-fallback .fallback-subtitle {
    color: #ff6b6b;
    font-weight: bold;
}

.gallery-video .image-fallback .fallback-content::before {
    content: '🎬';
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Video Controls Bar (Optional) */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.gallery-item:hover .video-controls {
    opacity: 1;
}

.video-time {
    color: white;
    font-family: 'Skater Street', sans-serif;
    font-size: 0.8rem;
    text-shadow: 1px 1px 0px #000000;
}

.video-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.video-progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    width: 0%;
    transition: width 0.1s ease;
}

/* Mobile Responsive for Video */
@media (max-width: 768px) {
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-icon {
        width: 20px;
        height: 20px;
    }
    
    .video-controls {
        padding: 8px;
    }
    
    .video-time {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .video-play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-icon {
        width: 16px;
        height: 16px;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 0;
    background: #000000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Skater Street', sans-serif;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Skater Street', sans-serif;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .entrance-title {
        font-size: clamp(3rem, 10vw, 8rem);
    }
    
    .enter-btn {
        font-size: 1.2rem;
        padding: 18px 35px;
        min-width: 220px;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .ca-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .ca-copy-btn {
        min-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-section,
    .gallery-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-overlay {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
    }
}

@media (max-width: 480px) {
    .entrance-title {
        font-size: 2.5rem;
    }
    
    .enter-btn {
        font-size: 1rem;
        min-width: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}