:root {
  --primary: #64ffda;
  --bg-dark: #020c1b;
  --bg-card: rgba(10, 25, 47, 0.85);
  --text-main: #e6f1ff;
  --text-dim: #a8b2d1;
  --accent: #64ffda;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(to bottom, rgba(2, 12, 27, 0.5), rgba(2, 12, 27, 0.95)),
        url('/images/3bc23b_1a420987f8db4f45a021b9276ab84225~mv2.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    line-height: 1.6;
}

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

/* --- Navigation --- */
body > header {
    background: rgba(2, 12, 27, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.05);
}

body > header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body > header .logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
}

body > header nav {
    display: flex;
    gap: 4rem; /* Wide spacing for modern look */
}

body > header nav a {
    text-decoration: none;
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s;
}

body > header nav a:hover, body > header nav a[aria-current="page"] {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
}

/* --- Hero --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    text-align: center;
}

.hero .container {
    width: 100%;
}

.hero-img {
    max-width: 850px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
}

.scroll-hint {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: var(--primary);
    margin-top: 1rem;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    rotate: 45deg;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- Sections --- */
section {
    padding: 10rem 0;
}

.section-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--primary);
    margin-bottom: 5rem;
    text-align: center;
}

.featured-img-wrapper {
    display: block;
    position: relative;
    height: 100%;
    min-height: 500px;
}

.featured-img-wrapper .play-overlay {
    width: 80px;
    height: 80px;
}

.featured-img-wrapper .play-overlay svg {
    width: 40px;
    height: 40px;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Featured News --- */
.featured-news {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.featured-img {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.featured-content {
    padding: 4rem;
}

.featured-content .date {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.featured-content h3 {
    font-size: 2.8rem;
    margin: 0 0 2rem;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
}

.featured-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s;
    background: transparent;
}

.btn:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
}

/* --- Social Compact --- */
.social-compact {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--primary));
}

.news-grid article .article-img-wrapper {
    height: 240px;
    overflow: hidden;
    order: -1;
    margin: -12px -12px 1rem -12px;
    border-radius: 4px 4px 0 0;
}

.news-grid article .article-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-grid article:hover .article-img-wrapper img {
    transform: scale(1.1);
}

.article-img-wrapper.video-preview {
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.play-overlay svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.news-grid article:hover .play-overlay {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- News List --- */
.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 8rem;
    padding: 4rem 2rem;
}

.news-grid article {
    background: var(--bg-card) !important;
    border: 1px solid rgba(100, 255, 218, 0.1) !important;
    border-radius: 4px;
    padding: 12px;
    margin: 0;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    width: 380px;
    box-shadow: 5px 15px 35px rgba(0,0,0,0.6);
    position: relative;
}

/* Irregular rotation for news flyers */
.news-grid article:nth-child(3n+1) { transform: rotate(-1.5deg); }
.news-grid article:nth-child(3n+2) { transform: rotate(2deg) translateY(15px); }
.news-grid article:nth-child(3n+3) { transform: rotate(-1deg) translateY(-10px); }

.news-grid article:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 100;
    border-color: var(--primary) !important;
    box-shadow: 0 20px 60px rgba(100, 255, 218, 0.15);
}

/* Adding tape to news articles */
.news-grid article::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 100px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    z-index: 10;
    pointer-events: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
}

.news-grid article:nth-child(even)::before {
    transform: translateX(-50%) rotate(-3deg);
    background: rgba(100, 255, 218, 0.05);
}

.news-grid article header {
    background: transparent !important;
    padding: 1rem !important;
    border-bottom: none !important;
    margin: 0 !important;
}

.news-grid article .date {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.news-grid article h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #fff;
    line-height: 1.2;
}

.news-grid article .content-wrapper {
    padding: 0 1rem 1.5rem;
    flex-grow: 1;
}

.news-grid article p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.news-grid article footer {
    background: transparent !important;
    padding: 0 1rem 1.5rem !important;
    border-top: none !important;
    margin: 0 !important;
}

.news-grid article .btn-link {
    display: inline-block;
    color: var(--primary) !important;
    text-decoration: none !important;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.news-grid article .btn-link:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--primary);
}

/* --- Individual Article (Single) --- */
.article-single {
    max-width: 800px;
    margin: 4rem auto 8rem;
}

.article-single header {
    text-align: center;
    margin-bottom: 5rem;
    background: transparent;
    border-bottom: none;
    padding: 0;
}

.article-single .date {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.article-single h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0 auto;
    color: #fff;
    max-width: 900px;
    letter-spacing: -0.5px;
}

.article-hero-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 4rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.article-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
}

.article-content p {
    margin-bottom: 2rem;
}

.article-content h3 {
    color: var(--primary);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.article-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.article-content ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.article-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.article-content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.article-content a:hover {
    border-bottom-color: var(--primary);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 4rem 0;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-footer {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.share-section {
    text-align: center;
    margin-bottom: 4rem;
}

.share-section p {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.article-back {
    text-align: center;
}

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

.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- Tour --- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.tour-item {
    background: var(--bg-card) !important;
    border: 1px solid rgba(100, 255, 218, 0.1) !important;
    border-radius: 12px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.tour-item:hover {
    border-color: rgba(100, 255, 218, 0.3) !important;
    transform: translateY(-5px);
}

.tour-item header {
    padding: 2.5rem 2.5rem 1.5rem !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
}

.tour-item .date {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.tour-item h3 {
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
    line-height: 1.2;
}

.tour-poster {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.5s;
}

.tour-item:hover .tour-poster {
    opacity: 1;
    transform: scale(1.05);
}

.tour-img-link {
    display: block;
    overflow: hidden;
}

.tour-item .content-wrapper {
    padding: 1.5rem 2.5rem 2.5rem;
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dim);
}

.tour-item footer {
    padding: 0 2.5rem 2.5rem !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
}

.tour-separator {
    margin: 8rem 0;
    opacity: 0.2;
}

.tour-posters {
    padding-bottom: 12rem;
}

.punk-title {
    font-size: 7rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 12px;
    line-height: 0.9;
    text-shadow: 
        0 0 10px rgba(100, 255, 218, 0.8),
        0 0 20px rgba(100, 255, 218, 0.4),
        0 0 40px rgba(100, 255, 218, 0.2),
        5px 10px 0px #000;
    margin-bottom: 8rem !important;
    transform: perspective(1000px) rotateX(20deg);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.malfunction {
    display: inline-block;
    animation: flicker-sporadic 12s step-end infinite;
}

@keyframes flicker-sporadic {
    /* Main Illuminated State */
    0%, 15%, 15.2%, 15.4%, 16%, 35%, 35.2%, 35.8%, 65%, 65.2%, 65.4%, 65.6%, 66.5%, 85%, 85.2%, 85.4%, 86%, 86.2%, 86.4%, 87.5%, 95.2%, 95.4%, 96%, 96.2%, 97.5%, 98%, 100% {
        color: #fff;
        text-shadow: 
            0 0 10px rgba(100, 255, 218, 0.8),
            0 0 20px rgba(100, 255, 218, 0.4),
            5px 10px 0px #000;
    }
    
    /* Random Failure Incidents */
    /* 15%: Micro-glitch */
    /* 35%: Struggle and dim */
    /* 65-66%: Rapid ztztzt burst */
    /* 85-95%: Major failure: ztztzt -> Stable OFF */
    /* 95-98%: Re-ignition struggle: ztztzt -> ON */
    15.1%, 15.3%, 15.5%, 35.1%, 35.3%, 65.1%, 65.3%, 65.5%, 65.7%, 66%, 85.1%, 85.3%, 85.5%, 86.1%, 86.3%, 86.5%, 88%, 95.1%, 95.3%, 95.5%, 96.1%, 96.3%, 97.4%, 97.9% {
        color: #555;
        text-shadow: 5px 10px 0px #000;
    }
}

.cinema-marquee {
    position: relative;
    padding: 8rem 4rem;
    background-color: #050505;
    border: 50px solid #d00; 
    border-radius: 4px;
    box-shadow: 
        0 0 0 4px #111,
        0 50px 150px rgba(0,0,0,1);
    margin-bottom: 10rem;
    overflow: visible;
}

.marquee-lights {
    display: block;
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    pointer-events: none;
    z-index: 10;
    
    /* Larger bulbs centered in each 50px tile */
    background-image: 
        radial-gradient(circle at center, #fff 8px, #ffdd00 12px, transparent 15px);
    background-size: 50px 50px;
    background-repeat: round; /* Ensures single row and perfect alignment */
    background-position: 0 0;
    animation: marquee-flash 0.8s step-end infinite;
    
    /* Clip exactly to the 50px border */
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%, 
        50px 50px, 50px calc(100% - 50px), calc(100% - 50px) calc(100% - 50px), calc(100% - 50px) 50px, 50px 50px
    );
}

@keyframes marquee-flash {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px #ffcc00); }
    50% { opacity: 0.6; filter: drop-shadow(0 0 2px #ffcc00); }
}

.cinema-marquee::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 150px rgba(0,0,0,1);
    pointer-events: none;
    z-index: 2;
}

.punk-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 2rem;
    position: relative;
    z-index: 5;
    justify-items: center;
}

.punk-poster-wrapper {
    position: relative;
    padding: 0;
    background: transparent;
    box-shadow: 5px 15px 40px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

/* More dramatic and varied rotations */
.punk-poster-wrapper:nth-child(5n+1) { transform: rotate(-4deg) translateY(10px); z-index: 1; }
.punk-poster-wrapper:nth-child(5n+2) { transform: rotate(3deg) translateY(-15px); z-index: 2; }
.punk-poster-wrapper:nth-child(5n+3) { transform: rotate(-2deg) translateY(20px); z-index: 1; }
.punk-poster-wrapper:nth-child(5n+4) { transform: rotate(5deg) translateY(-5px); z-index: 3; }
.punk-poster-wrapper:nth-child(5n+5) { transform: rotate(-6deg) translateY(15px); z-index: 2; }

.punk-poster-wrapper:hover {
    transform: scale(1.15) rotate(0deg) !important;
    z-index: 50 !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    background: transparent !important;
}

.punk-poster {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(20%) contrast(1.1);
}

.punk-poster-wrapper:hover .punk-poster {
    filter: none;
}

/* Messy Tape effects */
.tape-top {
    position: absolute;
    top: -15px;
    left: 20%;
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    transform: rotate(-15deg);
    border-left: 1px solid rgba(255,255,255,0.3);
    z-index: 10;
}

.punk-poster-wrapper:nth-child(even) .tape-top {
    left: auto;
    right: 15%;
    transform: rotate(20deg);
    width: 90px;
    background: rgba(100, 255, 218, 0.15);
}

.punk-poster-wrapper:nth-child(3n) .tape-top {
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 120px;
}

html {
    scroll-behavior: smooth;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    z-index: 2000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: rotate(5deg) scale(0.8);
    box-shadow: 5px 5px 0px rgba(100, 255, 218, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: rotate(-5deg) scale(1);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.6);
    transform: rotate(0deg) scale(1.1);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 10px;
    width: 40px;
    height: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(2px);
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: -1;
}

/* Utilities */
.text-center { text-align: center; }

@media (max-width: 900px) {
    header .container { flex-direction: column; gap: 2rem; }
    header nav { gap: 2rem; }
    .featured-news { grid-template-columns: 1fr; }
    .featured-img { min-height: 300px; }

    /* Mobile Cinema Marquee */
    .punk-title {
        font-size: 3.5rem !important;
        letter-spacing: 4px;
        margin-bottom: 4rem !important;
    }

    .cinema-marquee {
        border-width: 30px;
        padding: 4rem 1.5rem;
    }

    .marquee-lights {
        top: -30px; left: -30px; right: -30px; bottom: -30px;
        background-size: 30px 30px;
        background-image: radial-gradient(circle at center, #fff 4px, #ffdd00 6px, transparent 8px);
        clip-path: polygon(
            0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%, 
            30px 30px, 30px calc(100% - 30px), calc(100% - 30px) calc(100% - 30px), calc(100% - 30px) 30px, 30px 30px
        );
    }

    .punk-gallery {
        grid-template-columns: 1fr;
        gap: 5rem 0;
    }

    .punk-poster-wrapper {
        max-width: 320px;
    }

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

    .tour-poster {
        height: 300px;
    }

    .tape-top {
        width: 60px;
        height: 20px;
    }

    /* Subtle Back-to-Top on Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        opacity: 0.6;
        border-width: 1px;
    }

    .back-to-top.visible {
        opacity: 0.6; /* More subtle when visible */
    }

    .back-to-top::before {
        display: none; /* Remove extra decoration on mobile */
    }
}

/* --- Lightbox --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 27, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.8) rotate(2deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1) rotate(0deg);
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: var(--primary);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
    text-shadow: 0 0 15px var(--primary);
}

@media (max-width: 900px) {
    .lightbox-close {
        top: -50px;
        right: 0;
    }
}
