/* =====================================================
   TEATRO 2025 - MODERN STYLESHEET
   ===================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #09090b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* === MODERN HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(45, 173, 247, 0.6));
}

.brand-title {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #2dadf7 0%, #00ffa0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 173, 247, 0.15), rgba(0, 255, 160, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #00ffa0;
    font-weight: 700;
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, #2dadf7 0%, #00ffa0 100%);
    color: #041f26;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(45, 173, 247, 0.4);
}

.nav-link.nav-cta::before {
    background: rgba(255, 255, 255, 0.2);
}

.nav-link.nav-cta:hover {
    box-shadow: 0 6px 30px rgba(45, 173, 247, 0.6);
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #2dadf7, #00ffa0);
    border-radius: 2px;
    transition: all 0.3s;
}

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

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 9, 11, 0.7) 0%, rgba(45, 173, 247, 0.2) 50%, rgba(0, 255, 160, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(45, 173, 247, 0.2);
    border: 1px solid rgba(45, 173, 247, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2dadf7;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(45, 173, 247, 0.3);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #2dadf7 50%, #00ffa0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 80px rgba(45, 173, 247, 0.5);
}

.hero-subtitle {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #00ffa0 0%, #2dadf7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #041f26;
    background: linear-gradient(135deg, #2dadf7 0%, #00ffa0 100%);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(45, 173, 247, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.hero-cta-btn:hover::before {
    opacity: 1;
}

.hero-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(45, 173, 247, 0.7);
}

.hero-cta-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 2;
}

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

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* === INTRO CARDS === */
.intro-cards-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0) 0%, rgba(45, 173, 247, 0.03) 100%);
}

.intro-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.intro-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.intro-card:hover {
    transform: translateY(-8px);
    background: rgba(45, 173, 247, 0.05);
    border-color: rgba(45, 173, 247, 0.3);
    box-shadow: 0 20px 60px rgba(45, 173, 247, 0.2);
}

.intro-card-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(45, 173, 247, 0.4));
}

.intro-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2dadf7 0%, #00ffa0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.intro-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 15px;
}

/* === ABOUT SECTION === */
.about-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(135deg, rgba(9, 9, 11, 1) 0%, rgba(45, 173, 247, 0.04) 50%, rgba(0, 255, 160, 0.03) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(45, 173, 247, 0.15);
    border: 1px solid rgba(45, 173, 247, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2dadf7;
    margin-bottom: 20px;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(135deg, #2dadf7 0%, #00ffa0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-paragraph {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-paragraph strong {
    color: #00ffa0;
    font-weight: 700;
}

.about-paragraph em {
    color: #2dadf7;
    font-style: normal;
    text-decoration: underline dotted rgba(45, 173, 247, 0.5);
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 255, 160, 0.05);
    border: 1px solid rgba(0, 255, 160, 0.2);
    border-radius: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(0, 255, 160, 0.1);
    transform: translateX(8px);
}

.feature-icon {
    flex-shrink: 0;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.image-decoration {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 173, 247, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

/* === SHOW SECTION === */
.show-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(180deg, rgba(45, 173, 247, 0.03) 0%, rgba(9, 9, 11, 1) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.show-card {
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.show-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 173, 247, 0.15);
}

.show-card.primary {
    border-color: rgba(45, 173, 247, 0.3);
}

.show-card.primary:hover {
    background: rgba(45, 173, 247, 0.05);
    box-shadow: 0 20px 60px rgba(45, 173, 247, 0.25);
}

.show-card.secondary {
    border-color: rgba(0, 255, 160, 0.3);
}

.show-card.secondary:hover {
    background: rgba(0, 255, 160, 0.05);
    box-shadow: 0 20px 60px rgba(0, 255, 160, 0.25);
}

.show-card.accent {
    border-color: rgba(255, 215, 0, 0.3);
}

.show-card.accent:hover {
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.25);
}

.show-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.show-card-icon {
    font-size: 40px;
    filter: drop-shadow(0 0 15px rgba(45, 173, 247, 0.5));
}

.show-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.show-card-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.show-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.show-list li {
    padding-left: 28px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.show-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ffa0;
    font-weight: 700;
}

.show-list li strong {
    color: #2dadf7;
    font-weight: 700;
}

.show-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.show-highlight:last-child {
    margin-bottom: 0;
}

.cta-box {
    padding: 48px;
    background: linear-gradient(135deg, rgba(45, 173, 247, 0.1) 0%, rgba(0, 255, 160, 0.08) 100%);
    border: 2px solid rgba(45, 173, 247, 0.3);
    border-radius: 28px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(45, 173, 247, 0.2);
}

.cta-box-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #2dadf7 0%, #00ffa0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-box-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-box-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #041f26;
    background: linear-gradient(135deg, #2dadf7 0%, #00ffa0 100%);
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(45, 173, 247, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-box-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(45, 173, 247, 0.6);
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(180deg, rgba(9, 9, 11, 1) 0%, rgba(45, 173, 247, 0.04) 50%, rgba(9, 9, 11, 1) 100%);
}

.photos-gallery,
.videos-gallery {
    margin-bottom: 80px;
}

.videos-gallery {
    margin-bottom: 0;
}

.gallery-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #ffffff;
}

.video-intro-text {
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Track */
.immersive-stage {
    --thumb-size: clamp(200px, 20vw, 280px);
    --gap: 16px;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
}

.gallery-track {
    display: flex;
    align-items: center;
    gap: var(--gap);
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 6vw;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}

.gallery-track.dragging {
    cursor: grabbing;
}

.gallery-track::-webkit-scrollbar {
    height: 10px;
}

.gallery-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.gallery-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #2dadf7, #00ffa0);
    border-radius: 20px;
}

.gallery-track::-webkit-scrollbar-thumb:hover {
    filter: brightness(1.2);
}

.gallery-image {
    flex: 0 0 var(--thumb-size);
    width: var(--thumb-size);
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit: cover;
    scroll-snap-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s, box-shadow 0.4s, filter 0.4s, opacity 0.4s;
    opacity: 0.8;
    cursor: pointer;
}

.gallery-image.active {
    transform: scale(1.12);
    box-shadow: 0 20px 60px rgba(45, 173, 247, 0.4);
    filter: none;
    opacity: 1;
}

.gallery-image:not(.active) {
    filter: grayscale(0.3) brightness(0.85);
}

.gallery-image:hover {
    opacity: 1;
    filter: none;
}

.blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(60px) brightness(0.4) saturate(1.4);
    transform: scale(1.2);
    opacity: 0.5;
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.gallery-arrow.prev {
    left: 20px;
}

.gallery-arrow.next {
    right: 20px;
}

.gallery-arrow:hover {
    background: linear-gradient(135deg, #2dadf7, #00ffa0);
    color: #041f26;
    box-shadow: 0 10px 35px rgba(45, 173, 247, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 48px;
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-caption {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Video Player */
.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}

.video-player video::-webkit-media-controls {
    display: none !important;
}

.video-overlay-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: none;
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    cursor: pointer;
    transition: opacity 0.4s;
    z-index: 2;
}

.video-overlay-play svg {
    pointer-events: none;
}

.video-overlay-play:hover svg circle {
    stroke: #00ffa0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 160, 0.7));
}

.video-overlay-play.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Protected video styling - lock icon overlay */
.video-overlay-play.video-protected-play::before {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    margin-top: -50px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
    animation: pulse-lock 2s ease-in-out infinite;
}

@keyframes pulse-lock {
    0%, 100% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.video-overlay-play.video-protected-play:hover::before {
    filter: drop-shadow(0 2px 12px rgba(255, 215, 0, 0.8));
}

.video-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 9, 20, 0.9) 40%, rgba(6, 9, 20, 0.98) 100%);
    backdrop-filter: blur(12px) saturate(140%);
    font-family: 'Montserrat', sans-serif;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 3;
}

.video-controls.hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.vc-btn {
    position: relative;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.5);
}

.vc-btn:hover {
    background: rgba(45, 173, 247, 0.2);
    transform: translateY(-2px);
}

.vc-btn:active {
    transform: translateY(0);
}

.vc-btn svg {
    pointer-events: none;
}

.vc-btn .icon-pause,
.vc-btn .icon-exit,
.vc-btn .icon-muted {
    display: none;
}

.vc-btn.active .icon-play {
    display: none;
}

.vc-btn.active .icon-pause {
    display: block;
}

.vc-btn.muted .icon-volume {
    display: none;
}

.vc-btn.muted .icon-muted {
    display: block;
}

.vc-btn.fullscreen .icon-full {
    display: none;
}

.vc-btn.fullscreen .icon-exit {
    display: block;
}

.vc-time {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    min-width: 110px;
    text-align: center;
}

.vc-progress {
    position: relative;
    flex: 1;
    height: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
}

.vc-progress::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45, 173, 247, 0.08), rgba(0, 255, 160, 0.06));
    opacity: 0.7;
}

.vc-progress-buffer {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    transition: width 0.3s;
}

.vc-progress-fill {
    position: relative;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2dadf7, #00ffa0);
    box-shadow: 0 0 10px rgba(45, 173, 247, 0.6);
    transition: width 0.2s linear;
}

.vc-volume-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-volume {
    width: 90px;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2dadf7, #00ffa0);
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.vc-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px #2dadf7, 0 0 18px rgba(45, 173, 247, 0.8);
    cursor: pointer;
    transition: transform 0.3s;
}

.vc-volume::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(45, 173, 247, 0.08) 0%, rgba(0, 255, 160, 0.06) 100%);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    text-align: center;
    padding: 40px;
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(45, 173, 247, 0.4));
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 600;
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px) saturate(140%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.lightbox-inner img {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    animation: lbIn 0.5s cubic-bezier(0.22, 0.9, 0.3, 1);
}

@keyframes lbIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 28px;
    right: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 36px;
    display: grid;
    place-items: center;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: linear-gradient(135deg, #2dadf7, #00ffa0);
    color: #041f26;
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.3s;
}

.lightbox-arrow:hover {
    background: linear-gradient(135deg, #2dadf7, #00ffa0);
    color: #041f26;
    transform: scale(1.1);
}

.lightbox-arrow:active {
    transform: scale(0.95);
}

.lightbox-counter {
    position: absolute;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    padding: 8px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.lightbox[hidden] {
    display: flex;
}

/* === FOOTER === */
.main-footer {
    position: relative;
    margin-top: 100px;
    padding: 60px 32px 70px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    background: radial-gradient(circle at 20% 25%, rgba(45, 173, 247, 0.12), transparent 65%),
        radial-gradient(circle at 80% 75%, rgba(0, 255, 160, 0.12), transparent 65%),
        linear-gradient(145deg, #0c1016, #090c11 55%, #080a0e);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.main-footer::before,
.main-footer::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.main-footer::before {
    top: -200px;
    left: -150px;
    background: radial-gradient(circle, #2dadf7, transparent 70%);
}

.main-footer::after {
    bottom: -220px;
    right: -150px;
    background: radial-gradient(circle, #00ffa0, transparent 70%);
}

.main-footer p {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-content,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .intro-cards-grid {
        grid-template-columns: 1fr;
    }

    .show-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-item {
        width: 100%;
    }

    .vc-time {
        display: none;
    }

    .vc-volume {
        width: 70px;
    }

    .lightbox-inner img {
        max-width: 92vw;
        max-height: 70vh;
    }

    .lightbox-arrow {
        width: 60px;
        height: 60px;
        font-size: 38px;
    }

    .lightbox-close {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 20px;
    }

    .hero-cta-btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .section-heading {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .cta-box-content h3 {
        font-size: 24px;
    }

    .cta-box-content p {
        font-size: 16px;
    }

    .gallery-arrow {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .gallery-arrow.prev {
        left: 10px;
    }

    .gallery-arrow.next {
        right: 10px;
    }
}

/* Prevent selection on interactive elements */
.vc-btn,
.vc-progress,
.vc-volume,
.gallery-arrow,
.lightbox-arrow {
    user-select: none;
}

/* Smooth cursor transitions */
.video-player.hide-cursor {
    cursor: none;
}

.video-player.grabbing {
    cursor: grabbing;
}

/* ===================== PASSWORD MODAL ===================== */
.password-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.password-modal-overlay[hidden] {
    display: none;
}

.password-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.password-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}

.password-modal-close:hover {
    background: rgba(255, 77, 103, 0.2);
    color: #ff4d67;
    transform: rotate(90deg);
}

.password-modal-icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0, 255, 160, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.password-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.password-modal-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.password-form {
    width: 100%;
}

.password-input-group {
    position: relative;
    margin-bottom: 12px;
}

.password-input {
    width: 100%;
    padding: 16px 50px 16px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.password-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #00ffa0;
    box-shadow: 0 0 0 4px rgba(0, 255, 160, 0.1);
}

.password-input.error {
    border-color: #ff4d67;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
    20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #00ffa0;
}

.password-toggle .icon-hide {
    display: none;
}

.password-toggle.show-password .icon-show {
    display: none;
}

.password-toggle.show-password .icon-hide {
    display: block;
}

.password-error {
    background: rgba(255, 77, 103, 0.15);
    border-left: 3px solid #ff4d67;
    padding: 12px 15px;
    border-radius: 8px;
    color: #ff4d67;
    font-size: 14px;
    margin-bottom: 12px;
    animation: slideDown 0.3s ease-out;
}

.password-error[hidden] {
    display: none;
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.password-attempts {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 20px;
    min-height: 20px;
}

.password-attempts.warning {
    color: #ffa500;
    font-weight: 600;
}

.password-attempts.blocked {
    color: #ff4d67;
    font-weight: 600;
}

.password-buttons {
    display: flex;
    gap: 12px;
}

.password-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.password-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.password-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.password-btn-submit {
    background: linear-gradient(135deg, #00ffa0 0%, #00d4ff 100%);
    color: #0a0a0f;
    box-shadow: 0 4px 15px rgba(0, 255, 160, 0.3);
}

.password-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 160, 0.4);
}

.password-btn-submit:active {
    transform: translateY(0);
}

.password-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Mobile responsive */
@media (max-width: 500px) {
    .password-modal {
        padding: 30px 25px;
    }
    
    .password-modal-icon {
        font-size: 48px;
    }
    
    .password-modal-title {
        font-size: 24px;
    }
    
    .password-buttons {
        flex-direction: column;
    }
}

/* ===================== SUCCESS TOAST ===================== */
.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00ffa0 0%, #00d4ff 100%);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0, 255, 160, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 10001;
    min-width: 320px;
    animation: toastSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-toast[hidden] {
    display: none;
}

.success-toast.toast-exit {
    animation: toastSlideOut 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
}

.success-toast-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #00d4a0;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-toast-content {
    flex: 1;
}

.success-toast-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0f;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.success-toast-message {
    font-size: 14px;
    color: rgba(10, 10, 15, 0.75);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 500px) {
    .success-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        padding: 16px 20px;
    }
    
    .success-toast-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .success-toast-title {
        font-size: 15px;
    }
    
    .success-toast-message {
        font-size: 13px;
    }
}


