        /* Existing CSS - PA stilimet për kartat e eventeve dhe modalin */
        body { margin: 0; font-family: 'Inter', sans-serif; background-color: #1a1a1a; color: #fff; overflow-x: hidden; }
        @keyframes neon-glow { 0%{text-shadow:0 0 5px #fff,0 0 10px #fff,0 0 15px #0ff,0 0 20px #0ff,0 0 25px #0ff,0 0 30px #0ff,0 0 35px #0ff} 50%{text-shadow:0 0 10px #fff,0 0 20px #fff,0 0 30px #f0f,0 0 40px #f0f,0 0 50px #f0f,0 0 60px #f0f,0 0 70px #f0f} 100%{text-shadow:0 0 5px #fff,0 0 10px #fff,0 0 15px #0ff,0 0 20px #0ff,0 0 25px #0ff,0 0 30px #0ff,0 0 35px #0ff} }
        @keyframes hero-logo-color-change {0%{filter:drop-shadow(0 0 5px rgba(255,255,255,.7)) drop-shadow(0 0 10px rgba(255,255,255,.5));transform:scale(1)}50%{filter:drop-shadow(0 0 15px rgba(255,215,0,1)) drop-shadow(0 0 25px rgba(255,215,0,.8));transform:scale(1.04)}100%{filter:drop-shadow(0 0 5px rgba(255,255,255,.7)) drop-shadow(0 0 10px rgba(255,255,255,.5));transform:scale(1)}}
        @keyframes neon-text-pulse { 0%{text-shadow:0 0 5px #fff,0 0 10px #0ff,0 0 15px #f0f} 50%{text-shadow:0 0 8px #fff,0 0 15px #f0f,0 0 25px #0ff} 100%{text-shadow:0 0 5px #fff,0 0 10px #0ff,0 0 15px #f0f} }
        @keyframes button-water-neon-flow { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }
        @keyframes hero-title-neon-multi { 0%{text-shadow:0 0 10px #fff,0 0 20px #0ff,0 0 30px #0ff} 25%{text-shadow:0 0 10px #fff,0 0 20px #f0f,0 0 30px #f0f} 50%{text-shadow:0 0 10px #fff,0 0 20px #ff0,0 0 30px #ff0} 75%{text-shadow:0 0 10px #fff,0 0 20px #0f0,0 0 30px #0f0} 100%{text-shadow:0 0 10px #fff,0 0 20px #0ff,0 0 30px #0ff} }
        @keyframes animated-neon-border { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        /* Menu CSS moved to header-menu.css */
        
        .hero-section { 
            position: relative; 
            width: 100%; 
            height: 100vh; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            overflow: hidden; 
            background-color: #000; 
            text-align: center;
            margin-top: 0;
            padding-top: 0;
        }
        .hero-section video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 1; transform: translate(-50%, -50%); object-fit: cover; }
        .hero-section .overlay { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(26, 26, 26, 0.9) 100%);
            z-index: 2; 
        }
        .hero-section .content { position: relative; z-index: 3; color: #fff; padding: 20px; }
        .hero-section .content .hero-logo { display: block; margin-left: auto; margin-right: auto; margin-bottom: 20px; width: auto; max-width: 300px; height: auto; max-height: 330px; animation: hero-logo-color-change 8s infinite alternate; }
        .hero-section .content h1 { font-size: 4.5em; animation: hero-title-neon-multi 6s infinite alternate ease-in-out; }
        .hero-section .content p { font-size: 1.3em; max-width: 700px; margin: 10px auto 0; text-shadow: 0 0 5px #fff; }
        .hero-buttons { margin-top: 40px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .hero-button { border: none; padding: 15px 30px; border-radius: 50px; cursor: pointer; font-weight: bold; font-size: 1.2em; text-decoration: none; color: #fff; position: relative; overflow: hidden; transition: all 0.3s ease; background: linear-gradient(90deg,#00ffff,#ff00ff,#00ffff,#f0f000,#ff00ff); background-size: 400% auto; animation: button-water-neon-flow 8s infinite linear; box-shadow:0 0 10px rgba(0,255,255,0.7),0 0 20px rgba(255,0,255,0.7); }
        .hero-button:hover { background:linear-gradient(45deg,#ff00ff,#00ffff); box-shadow:0 0 15px rgba(255,0,255,0.9),0 0 30px rgba(0,255,255,0.9); transform:translateY(-3px); animation:none; }
        #about-us { 
            background: #0a0a0a;
            padding: 140px 40px 80px 40px;
            text-align: center;
            position: relative;
            margin-top: -100px;
            overflow: hidden;
        }
        
        #about-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.5) 70%, #0a0a0a 100%);
            pointer-events: none;
            z-index: 1;
        }
        
        #about-us::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 60, 172, 0.03) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }
        
        #about-us .about-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 60px 80px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border: 1px solid rgba(255, 60, 172, 0.1);
            backdrop-filter: blur(10px);
        }
        
        #about-us h2 {
            font-size: 4em;
            font-weight: 700;
            margin-bottom: 40px;
            background: linear-gradient(90deg, #ff3cac, #784ba0, #ff3cac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
        }
        
        #about-us p {
            font-size: 1.25em;
            line-height: 2;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 auto;
            max-width: 1000px;
            text-align: center;
        }
        
        #about-us .about-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
            margin-top: 60px;
        }
        
        @media (max-width: 1200px) {
            #about-us .about-container {
                padding: 50px 40px;
            }
        }
        
        @media (max-width: 1024px) {
            #about-us .about-features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            #about-us .about-container {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 640px) {
            #about-us .about-features {
                grid-template-columns: 1fr;
            }
            
            #about-us .about-container {
                padding: 30px 20px;
            }
            
            #about-us h2 {
                font-size: 2.5em;
            }
        }
        
        #about-us .feature-item {
            padding: 25px;
            background: rgba(255, 60, 172, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 60, 172, 0.2);
            transition: all 0.3s ease;
        }
        
        #about-us .feature-item:hover {
            background: rgba(255, 60, 172, 0.1);
            border-color: rgba(255, 60, 172, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 60, 172, 0.2);
        }
        
        #about-us .feature-item i {
            font-size: 2.5em;
            color: #ff3cac;
            margin-bottom: 15px;
            display: block;
        }
        
        #about-us .feature-item h3 {
            font-size: 1.3em;
            color: #fff;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        #about-us .feature-item p {
            font-size: 0.95em;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            text-align: center;
        }
        
        #about-us h2, #events h2, #newsletter h2, #instagram-feed h2 { font-size:2.8em; margin-bottom:20px; text-shadow:0 0 10px #fff,0 0 20px #ff3cac,0 0 30px #784ba0; position: relative;}
        #about-us p { font-size:1.1em; line-height:1.6; max-width:800px; margin:0 auto; color:#ccc; }
        #events { 
            position:relative; 
            padding:60px 0; 
            text-align:center; 
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
            background-size:cover; 
            background-position:center; 
            background-attachment:fixed;
            margin-top: -50px;
        }
        #events::before { 
            content:''; 
            position:absolute; 
            top:0; 
            left:0; 
            width:100%; 
            height:100%; 
            background: linear-gradient(180deg, #0a0a0a 0%, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.75) 100%);
            z-index:1; 
        }
        .events-container { position:relative; z-index:2; }
        #events h2 { margin-bottom:40px; }
        .show-more-events-container { margin-top: 50px; }



        /* Responsive për Homepage Grid */
        @media (max-width: 768px) {
            .event-grid-homepage {
                grid-template-columns: 1fr;
            }
        }
        
        /* Stili për listën e thjeshtë të eventeve */
        .event-list-simple {
            max-width: 1200px;
            margin: 60px auto 0 auto;
            border: 1px solid #333;
            border-radius: 15px;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            box-shadow: 0 0 25px rgba(255,0,255,0.1);
        }
        .event-list-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap; 
            gap: 20px;
            padding: 20px 10px;
            border-bottom: 1px solid #2a2a2a;
            transition: background-color 0.3s;
        }
        .event-list-item:last-child { border-bottom: none; }
        .event-list-item:hover { background-color: rgba(0, 255, 255, 0.05); }
        .event-list-item .date-info {
            flex-basis: 100px; 
            flex-shrink: 0;
            text-align: center;
            color: #ccc;
            border-right: 1px solid #333;
            padding-right: 20px;
        }
        .event-list-item .date-info .day {
            font-size: 1.8em;
            font-weight: bold;
            color: #fff;
            line-height: 1;
        }
        .event-list-item .title-info {
            flex-grow: 1;
            text-align: left;
        }
        .event-list-item .title-info h3 {
            font-size: 1.4em;
            font-weight: bold;
            color: #0ff;
            margin: 0;
            text-shadow: 0 0 8px rgba(0,255,255,0.5);
        }
        .event-list-item .action-info .hero-button {
            padding: 10px 25px;
            font-size: 1em;
        }
        
     
        #newsletter, #instagram-feed, footer { text-align:center; }
        #newsletter { 
            position:relative; 
            padding:100px 20px; 
            background: linear-gradient(135deg, #0d0d0d 0%, #1a0a12 50%, #0d0d0d 100%);
        }
        .newsletter-content { 
            position:relative; 
            z-index:2; 
            max-width:600px; 
            margin:0 auto; 
        }
        .newsletter-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255,60,172,0.15);
            border: 1px solid rgba(255,60,172,0.3);
            border-radius: 30px;
            color: #ff3cac;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }
        #newsletter h2 { 
            font-size: 2.5rem; 
            color: #fff; 
            margin-bottom: 15px; 
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        #newsletter p { 
            font-size: 1.1rem; 
            line-height: 1.7; 
            max-width: 480px; 
            margin: 0 auto 40px auto; 
            color: rgba(255,255,255,0.65); 
        }
        #newsletter form { 
            max-width: 500px; 
            margin: 0 auto; 
        }
        .newsletter-form-row {
            display: flex;
            background: rgba(255,255,255,0.08);
            border-radius: 50px;
            padding: 5px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        #newsletter input[type="email"] { 
            flex: 1;
            padding: 16px 25px; 
            border: none; 
            background: transparent; 
            color: #fff; 
            font-size: 1rem; 
            outline: none; 
        }
        #newsletter input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
        #newsletter button { 
            border-radius: 50px; 
            border: none; 
            padding: 16px 35px; 
            cursor: pointer; 
            font-weight: 700; 
            font-size: 0.9rem; 
            letter-spacing: 1px;
            color: #fff; 
            background: #ff3cac; 
            transition: all 0.3s; 
        }
        #newsletter button:hover { 
            background: #ff5fc3; 
            transform: scale(1.02);
        }
        .newsletter-privacy {
            margin-top: 20px;
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
        }
        .newsletter-privacy i {
            margin-right: 6px;
            color: rgba(255,60,172,0.6);
        }
        #instagram-feed { background-color:#000; padding:80px 20px; }
        .instagram-header { margin-bottom:40px; }
        .instagram-header .fa-instagram { font-size:3em; color:#fff; background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
        #instagram-feed h2 { margin:10px 0 5px 0; }
        .instagram-username { color:#ccc; text-decoration:none; font-size:1.2em; transition:color 0.3s ease; }
        .instagram-username:hover { color:#fff; }
        .instagram-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:15px; max-width:1200px; margin:0 auto; }
        .instagram-post { position:relative; display:block; aspect-ratio:1 / 1; overflow:hidden; border-radius:10px; box-shadow:0 0 15px rgba(0,0,0,0.5); }
        .instagram-post img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease,filter 0.4s ease; }
        .instagram-post .post-overlay { position:absolute; top:0; left:0; width:100%; height:100%; background-color:rgba(0,0,0,0.5); display:flex; justify-content:center; align-items:center; color:#fff; font-size:1.5em; font-weight:bold; opacity:0; transition:opacity 0.4s ease; }
        .instagram-post .post-overlay .fa-external-link-alt { transform:scale(0.8); opacity:0.8; }
        .instagram-post:hover img { transform:scale(1.1); filter:brightness(0.8); }
        .instagram-post:hover .post-overlay { opacity:1; }
        footer { background-color:#000; color:#a0a0a0; padding:60px 20px 0; }
        .footer-container { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:40px; max-width:1200px; margin:0 auto; padding-bottom:40px; }
        .footer-col h4 { color:#fff; font-size:1.2em; margin-bottom:20px; position:relative; }
        .footer-col h4::after { content:''; position:absolute; left:0; bottom:-8px; width:40px; height:2px; background:linear-gradient(90deg,#0ff,#f0f); }
        .footer-col.about { display:flex; align-items:center; gap:15px; }
        .footer-logo { width:80px; margin-bottom:0; flex-shrink:0; animation:hero-logo-color-change 8s infinite alternate; }
        .footer-col.about p { font-size:0.9em; line-height:1.6; }
        .footer-col.links ul { list-style:none; padding:0; }
        .footer-col.links ul li { margin-bottom:10px; }
        .footer-col.links ul li a { color:#a0a0a0; text-decoration:none; transition:color 0.3s ease,padding-left 0.3s ease; }
        .footer-col.links ul li a:hover { color:#fff; padding-left:5px; }
        .footer-col.contact p { margin:0 0 10px 0; display:flex; align-items:center; }
        .footer-col.contact i { margin-right:10px; color:#0ff; width:20px; text-align:center; }
        .footer-col.social .social-icons { display:flex; gap:15px; }
        .footer-col.social .social-icons a { color:#a0a0a0; font-size:1.5em; transition:color 0.3s ease,transform 0.3s ease; }
        .footer-col.social .social-icons a:hover { color:#fff; transform:translateY(-3px); }
        .footer-bottom { border-top:1px solid #333; padding:20px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:15px; max-width:1200px; margin:0 auto; font-size:0.9em; }
        .footer-bottom .legal-links a { color:#a0a0a0; text-decoration:none; margin-left:20px; }
        .footer-bottom .legal-links a:hover { color:#fff; }
        
        @media (max-width: 768px) {
            .top-navbar, .footer-bottom, .footer-container { flex-direction: column; text-align: center; gap: 10px; }
            .hero-section .content h1 { font-size: 3em; }
            .hero-section .content p { font-size: 1em; }
            .hero-section .content .hero-logo { height: 250px; margin-bottom: 15px; }
            .hero-buttons { flex-direction: column; gap: 15px; }
            .hero-button { width: 80%; margin: 0 auto; }
            #newsletter form { flex-direction: column; gap: 12px; padding:12px; }
            #newsletter input[type="email"] { text-align: center; padding:16px 20px; }
            #newsletter button { width: 100%; padding: 16px 30px; }
            .instagram-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
            .footer-col.about { flex-direction: column; }
            .footer-col h4::after { left: 50%; transform: translateX(-50%); }
            .footer-col.contact p, .footer-col.social .social-icons { justify-content: center; }
             .event-grid-modern { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        }
        @media(max-width: 600px) {
            .modal-content {
                width: 98%; 
                padding: 15px;
            }
        }

        /* === STYLES FOR THE RESERVATION MODAL === */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; z-index: 2000; opacity: 0; transition: opacity .3s ease; }
        .modal-overlay.active { display: flex; opacity: 1; }
        .modal-content { background-color: #000; padding: 25px; border-radius: 15px; border: 1px solid #0ff; box-shadow: 0 0 40px rgba(0,255,255,0.3); width: 95%; max-width: 800px; position: relative; transform: scale(.95); transition: transform .3s ease; max-height: 90vh; overflow-y: auto;}
        .modal-overlay.active .modal-content { transform: scale(1); }
        .modal-close { position: absolute; top: 10px; right: 15px; font-size: 2rem; color: #fff; cursor: pointer; background: none; border: none; z-index: 10; }
        .step-section { display: none; }
        .step-section.active { display: block; }
        .table-shape { fill: #718096; stroke: #4a5568; stroke-width: 2; cursor: pointer; transition: fill 0.2s; }
        .table-shape:hover { fill: #a0aec0; }
        .table-shape.selected { fill: #3b82f6; stroke: #1e40af; }
        .table-shape.occupied { fill: #ef4444; cursor: not-allowed; }
        .table-label { fill: #000; font-size: 16px; font-weight: bold; pointer-events: none; }
        .package-card { border: 2px solid #444; padding: 1rem; border-radius: 0.5rem; cursor: pointer; transition: all 0.2s; background-color: #1f2937; }
        .package-card.selected { border-color: #0ff; box-shadow: 0 0 15px rgba(0,255,255,0.5); }
        .btn { background: linear-gradient(90deg, #00ffff, #ff00ff); color: white; padding: 10px 20px; border-radius: 50px; cursor: pointer; border: none; font-weight: bold; transition: all 0.3s; }
        .btn:hover { transform: scale(1.05); }
        .btn-secondary { background: #4a5568; }
        .message-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); display: none; justify-content: center; align-items: center; z-index: 2001; }
        .message-modal-overlay.active { display: flex; }
        .message-modal-content { background-color: #000; padding: 30px; border-radius: 15px; border: 1px solid #0ff; max-width: 400px; text-align: center; color: #fff; }
        .message-modal-content h3 { font-size: 1.8em; color: #0ff; margin-bottom: 15px; }
        .message-modal-content button { background: linear-gradient(90deg, #00ffff, #ff00ff); color: #fff; border: none; padding: 12px 25px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: all 0.3s ease; }
        .message-modal-content button:hover { background: linear-gradient(90deg, #ff00ff, #00ffff); transform: translateY(-2px); }
        .quantity-selector-display {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 35px;
            background-color: #1f2937;
            border: 1px solid #4a5568;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.2s;
            position: relative;
            user-select: none;
        }
        .quantity-selector-display:hover {
            border-color: #0ff;
            box-shadow: 0 0 5px rgba(0,255,255,0.5);
        }
        .quantity-popover {
            position: absolute;
            background-color: #2d3748;
            border: 1px solid #0ff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            padding: 10px;
            z-index: 2002;
            display: none; 
            flex-wrap: wrap; 
            gap: 5px;
            visibility: hidden; 
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .quantity-popover.active {
            display: flex; 
            visibility: visible; 
            opacity: 1; 
        }
        .quantity-popover-item {
            flex: 1 0 calc(33.33% - 10px);
            box-sizing: border-box;
            padding: 8px 12px;
            background-color: #1a202c;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.2s, color 0.2s;
            text-align: center;
            min-width: 40px;
        }
        .quantity-popover-item:hover {
            background-color: #0ff;
            color: #000;
        }
        .quantity-popover-item.selected {
            background-color: #3b82f6; 
            color: #fff;
            font-weight: bold;
        }

#about-us h2, #events h2, #newsletter h2, #instagram-feed h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #fff, 0 0 20px #0ff, 0 0 30px #f0f;
    animation: hero-title-neon-multi 6s infinite alternate ease-in-out !important;
}

/* Stil i vjetër i komentuar (mund ta fshini më vonë) */
.featured-events, .events-list-group-outer { display: none; }

@keyframes hero-title-neon-multi {
    0% { text-shadow:0 0 10px #fff,0 0 20px #0ff,0 0 30px #0ff; }
    25% { text-shadow:0 0 10px #fff,0 0 20px #f0f,0 0 30px #f0f; }
    50% { text-shadow:0 0 10px #fff,0 0 20px #ff0,0 0 30px #ff0; }
    75% { text-shadow:0 0 10px #fff,0 0 20px #0f0,0 0 30px #0f0; }
    100% { text-shadow:0 0 10px #fff,0 0 20px #0ff,0 0 30px #0ff; }
}


/* ======================== DISCO TUCHOLSKY EVENTS PAGE NEON ======================== */

/* ---- FEATURED EVENTS ---- */
.featured-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 38px 32px;
    margin: 0 auto 50px auto;
    max-width: 1100px;
    padding: 0 18px;
}


/* ---- EVENTS GROUPED BY WEEK (boxed neon section) ---- */
.events-list-group-outer {
    width: 100%;
    background: transparent;
    margin: 0 auto 56px auto;
    padding: 0;
}
.events-list-group-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 22px 10px 22px;
    border-radius: 24px;
    background: rgba(18,22,38,0.92);
    box-shadow: 0 0 34px 0 #0ff3, 0 2px 38px #f0f2;
}
.events-list-group-main-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: 2.2em;
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
    text-shadow: 0 0 14px #0ff, 0 0 28px #f0f, 0 0 36px #fff;
    letter-spacing: 1.2px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.events-week-group {
    margin-bottom: 36px;
}
.events-week-title {
    color: #0ff;
    font-size: 1.18em;
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px #0ff8, 0 0 16px #f0f4;
    margin: 22px 0 12px 0;
}
.events-list {
    width: 100%;
}
.event-row-neon {
    background: #1a1a2d;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 0 16px #0ff7, 0 2px 26px #f0f2;
    padding: 22px 18px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: 1.7px solid #0ff7;
    transition: box-shadow 0.19s, border 0.14s;
    position: relative;
}
.event-row-neon:hover {
    box-shadow: 0 0 40px #f0f9, 0 3px 42px #0ff8;
    border-color: #f0f;
    z-index: 2;
}
.event-row-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.event-title {
    font-size: 1.17em;
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: bold;
    color: #fff;
    margin-bottom: 3px;
    text-shadow: 0 0 8px #0ff8, 0 0 13px #f0f5;
}
.event-meta {
    display: flex;
    gap: 19px;
    font-size: 1em;
    color: #84e9fb;
    align-items: center;
    margin-bottom: 3px;
}
.event-meta i {
    color: #0ff;
    margin-right: 5px;
}
.event-desc {
    color: #d6e0f2;
    font-size: 1.02em;
    line-height: 1.55;
    word-break: break-word;
}
.event-row-actions {
    margin-left: 24px;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}
.event-row-actions .btn {
    padding: 11px 24px;
    font-size: 1em;
    border-radius: 40px;
    font-weight: 600;
    background: linear-gradient(90deg, #0ff 0%, #f0f 100%);
    color: #181828;
    box-shadow: 0 0 17px #0ff9, 0 2px 20px #f0f6;
    border: none;
    transition: background 0.24s, box-shadow 0.18s, color 0.15s;
}
.event-row-actions .btn:hover {
    background: linear-gradient(90deg, #f0f 0%, #0ff 100%);
    color: #fff;
    box-shadow: 0 0 32px #f0f8, 0 3px 38px #0ff8;
    cursor: pointer;
}

/* ---- MOBILE STYLES (max 900px) ---- */
@media (max-width: 900px) {
    .events-list-group-inner {
        max-width: 99vw;
        padding: 14px 5px 8px 5px;
        border-radius: 13px;
    }
    .events-list-group-main-title {
        font-size: 1.32em;
        margin-bottom: 9px;
        gap: 10px;
    }
    .events-week-title {
        margin: 13px 0 6px 0;
        font-size: 1em;
    }
    .event-row-neon {
        flex-direction: column;
        padding: 13px 7px;
        margin-bottom: 11px;
    }
    .event-row-actions {
        margin: 12px 0 0 0;
        justify-content: flex-start;
    }
    .event-title {
        font-size: 1.03em;
    }
}

/* ======= Featured EVENTS Responsive për MOBILE (max 700px) ======= */
@media (max-width: 700px) {
    .featured-events {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 97vw;
        padding: 0 5px;
    }
   

/* --------- SHARED BUTTONS (btn) --------- */
.btn {
    display: inline-block;
    border: none;
    outline: none;
    padding: 11px 26px;
    border-radius: 50px;
    background: linear-gradient(90deg,#0ff,#f0f);
    color: #181828;
    font-weight: bold;
    font-family: inherit;
    font-size: 1em;
    box-shadow: 0 0 12px #0ff9, 0 2px 16px #f0f6;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.15s, color 0.14s;
}
.btn:hover, .btn:focus {
    background: linear-gradient(90deg,#f0f,#0ff);
    color: #fff;
    box-shadow: 0 0 25px #f0f8, 0 3px 28px #0ff8;
}


    



/* ===== BLOG LAYOUT GENERAL ===== */
.blog-container {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: 3fr 1.1fr;
    gap: 42px;
    align-items: start;
}
@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .blog-sidebar {
        position: static !important;
        top: unset !important;
        margin-top: 20px;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .blog-container {
        padding: 0 7px 40px 7px;
        gap: 18px;
    }
}

/* ===== BLOG POSTS ===== */
.blog-posts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 38px;
}
@media (max-width: 700px) {
    .blog-posts-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}
.blog-post-card {
    background: var(--dark-bg-2, #191926);
    border-radius: 17px;
    box-shadow: 0 0 24px 0 rgba(0,255,255,0.13), 0 0 30px 0 rgba(255,0,255,0.06);
    overflow: hidden;
    transition: transform 0.22s cubic-bezier(.38,1.34,.77,1.01), box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    min-height: 390px;
}
.blog-post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 38px 0 #0ff9, 0 0 64px 0 #f0f6;
    z-index: 2;
}
.blog-post-card img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-bottom: 2.5px solid var(--dark-bg-3, #222);
    transition: transform 0.25s cubic-bezier(.38,1.34,.77,1.01);
}
.blog-post-card:hover img {
    transform: scale(1.08) rotate(-0.4deg);
}
.blog-post-card-content {
    padding: 27px 23px 22px 23px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 9px;
}
.blog-post-card-content h2 {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: 1.34em;
    margin: 0 0 7px 0;
    color: var(--neon-blue, #0ff);
    text-shadow: 0 0 12px #0ffb, 0 0 18px #f0fb;
    line-height: 1.13;
}
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.98em;
    color: var(--secondary-text, #a3b6c9);
    margin-bottom: 6px;
}
.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.blog-post-meta i {
    color: var(--neon-green, #39ff14);
    font-size: 1.05em;
}
.blog-post-excerpt {
    color: var(--primary-text, #eee);
    font-size: 1.07em;
    margin-bottom: 8px;
    line-height: 1.52;
}
.read-more-btn {
    align-self: flex-start;
    display: inline-block;
    margin-top: 13px;
    padding: 8px 24px;
    border-radius: 28px;
    background: linear-gradient(90deg, var(--neon-pink, #ff3cac), var(--neon-purple, #784ba0));
    color: #101020;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 1px;
    box-shadow: 0 0 12px #f0f8, 0 0 7px #0ff5;
    transition: transform 0.2s, box-shadow 0.2s;
}
.read-more-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 18px #f0fb, 0 0 18px #0ff9;
    color: #000;
}

/* ===== BLOG SIDEBAR ===== */
.blog-sidebar {
    background: var(--dark-bg-3, #181828);
    border-radius: 17px;
    padding: 28px 22px 27px 22px;
    box-shadow: 0 0 30px rgba(255,255,0,0.07), 0 0 20px rgba(0,255,255,0.06);
    position: sticky;
    top: 110px;
    min-width: 0;
    width: 98%;
    max-width: 340px;
    margin-left: auto;
}
.blog-sidebar h3 {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: 1.19em;
    color: var(--neon-yellow, #ffff39);
    margin-top: 0;
    margin-bottom: 18px;
    text-shadow: 0 0 7px #ff08, 0 0 8px #fff5;
    letter-spacing: 1px;
}

.blog-categories-list ul, .blog-recent-posts-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-categories-list li, .blog-recent-posts-list li {
    margin-bottom: 11px;
}
.blog-categories-list a, .blog-recent-posts-list a {
    color: var(--primary-text, #e3e3e3);
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 5px 0;
    border-left: 3px solid transparent;
    transition: color 0.2s, border-color 0.22s, padding-left 0.21s;
}
.blog-categories-list a:hover, .blog-recent-posts-list a:hover {
    color: var(--neon-green, #39ff14);
    border-left: 3px solid var(--neon-pink, #ff3cac);
    padding-left: 7px;
    background: rgba(0,255,255,0.04);
}
.neon-divider {
    margin: 60px 0;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff3cac, #784ba0, #ff3cac);
    background-size: 200% 100%;
    animation: neon-divider-flow 3s linear infinite;
    box-shadow: 
        0 0 15px rgba(255, 60, 172, 0.8), 
        0 0 25px rgba(120, 75, 160, 0.6),
        0 0 35px rgba(255, 60, 172, 0.4);
    opacity: 1;
}

@keyframes neon-divider-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
@media (max-width: 900px) {
    .blog-sidebar {
        max-width: 100%;
        margin-left: 0;
        padding: 20px 10px 20px 12px;
    }
}


/* ===== HERO BLOG SECTION (NEWS & BLOG) ===== */
.hero-blog-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 210px;
    max-height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #191927;
    border-radius: 0 0 36px 36px;
    box-shadow: 0 8px 32px 0 rgba(0,255,255,0.11), 0 2px 22px 0 rgba(255,0,255,0.10);
    margin-bottom: 0px;
    z-index: 10;
}
.hero-blog-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.48) blur(1.2px);
    z-index: 1;
    transition: filter 0.3s;
}
.hero-blog-section:after {
    content: "";
    position: absolute;
    top:0; left:0;width:100%;height:100%;
    background: linear-gradient(120deg,rgba(0,255,255,0.17) 0%,rgba(255,0,255,0.18) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero-blog-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 690px;
    padding: 46px 16px 44px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-blog-content h1 {
    font-size: 2.7em;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1.2px;
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    text-shadow: 0 0 15px #0ff,0 0 26px #f0f,0 0 18px #fff;
    animation: hero-title-neon-blog 7s infinite alternate cubic-bezier(.54,1.72,.86,.36);
}
.hero-blog-content p {
    font-size: 1.24em;
    color: #f3f3fa;
    text-shadow: 0 0 9px #0ffb, 0 0 11px #f0fa;
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}
.hero-blog-content .highlighted {
    color: #0ff;
    font-weight: 700;
    text-shadow: 0 0 14px #f0f, 0 0 22px #0ff;
}

@keyframes hero-title-neon-blog {
    0% { filter: brightness(1) drop-shadow(0 0 20px #0ff); }
    50% { filter: brightness(1.15) drop-shadow(0 0 32px #f0f); }
    100% { filter: brightness(1) drop-shadow(0 0 20px #0ff); }
}
@media (max-width: 700px) {
    .hero-blog-content h1 { font-size: 2em; }
    .hero-blog-content p { font-size: 1.01em; }
    .hero-blog-section { min-height: 135px; max-height: 180px; border-radius:0 0 19px 19px;}
}
.hero-blog-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('PUTH-KETU-LINKUN-E-FOTOS.jpg'); /* <<< ndrysho këtë! */
    background-size: cover;
    background-position: center;
    filter: brightness(0.48) blur(1.2px);
    z-index: 1;
    transition: filter 0.3s;
}



        /* ====== BLOG POST DETAIL - Neon Style ====== */
/* ===== BLOG POST DETAIL PAGE ===== */
.blog-post-detail-container {
    max-width: 1100px;
    margin: 0 auto 60px auto;
    background: rgba(15, 15, 40, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.15), 0 0 80px rgba(255, 0, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.25);
    padding: 60px 70px;
    position: relative;
    backdrop-filter: blur(15px);
}

.blog-post-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
    text-align: center;
}

.blog-post-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.5), 0 0 50px rgba(255, 0, 255, 0.3);
    line-height: 1.2;
}

.blog-post-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: rgba(176, 234, 255, 0.95);
    font-size: 1em;
    flex-wrap: wrap;
}

.blog-post-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.blog-post-detail-meta span i {
    color: #00ffff;
    font-size: 1.15em;
}

.blog-post-featured-image {
    text-align: center;
    margin-bottom: 45px;
}

.blog-post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3), 0 0 60px rgba(0, 255, 255, 0.2);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.blog-post-content {
    font-size: 1.25em;
    color: #ffffff;
    line-height: 2;
    margin-bottom: 50px;
    padding: 25px 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.blog-post-content p {
    margin-bottom: 25px;
}

.blog-post-tags {
    margin: 40px 0 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-post-tags span {
    font-weight: 700;
    color: #00ffff;
    font-size: 1.1em;
}

.blog-post-tags a {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25), rgba(255, 0, 255, 0.25));
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.blog-post-tags a:hover {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.6);
}

/* ===== COMMENTS SECTION ===== */
.comments-section {
    background: linear-gradient(135deg, rgba(25, 25, 50, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-radius: 18px;
    padding: 40px 30px;
    margin: 60px 0 40px 0;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2), 0 0 15px rgba(255, 0, 255, 0.15);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.comments-section h3 {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(10, 10, 30, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-left: 3px solid #00ffff;
}

.comment-meta {
    color: #ff00ff;
    font-size: 0.95em;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    font-weight: 600;
}

.comment-content {
    color: rgba(216, 249, 255, 0.95);
    line-height: 1.7;
    margin: 10px 0;
}

.admin-reply {
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid #ff00ff;
    margin: 15px 0 0 20px;
    padding: 15px 18px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

.admin-reply strong {
    color: #ff00ff;
}

/* ==== COMMENT FORM ==== */
.comment-form-section {
    background: linear-gradient(135deg, rgba(25, 25, 50, 0.9) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2), 0 0 15px rgba(0, 255, 255, 0.15);
    padding: 40px 30px;
    margin: 50px 0 0 0;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.comment-form-section h3 {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6em;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 1.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(16, 16, 32, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    font-family: 'Montserrat', sans-serif;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
    background: rgba(16, 16, 32, 0.95);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #000000;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 15px 45px;
    font-size: 1.1em;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.7), 0 5px 40px rgba(255, 0, 255, 0.5);
}

.success-message {
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.2), rgba(0, 255, 255, 0.2));
    color: #00ffff;
    border: 2px solid #00ffcc;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.3);
}

.error-message {
    background: linear-gradient(135deg, rgba(255, 50, 100, 0.2), rgba(255, 0, 100, 0.2));
    color: #ff3366;
    border: 2px solid #ff3366;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 50, 100, 0.3);
}

/* Responsive */
/* Desktop specific styles - ensure content is visible */
@media (min-width: 769px) {
    .blog-post-content {
        font-size: 1.25em !important;
        color: #ffffff !important;
        line-height: 2 !important;
        font-weight: 400 !important;
        letter-spacing: 0.3px !important;
    }
    
    .blog-post-content p {
        color: #ffffff !important;
        margin-bottom: 25px !important;
    }
}

@media (max-width: 768px) {
    .blog-post-detail-container {
        padding: 30px 25px;
    }
    
    .blog-post-header h1 {
        font-size: 2em;
    }
    
    .blog-post-detail-meta {
        gap: 15px;
    }
    
    .comments-section,
    .comment-form-section {
        padding: 25px 20px;
    }
}

/* ===== Comments Section Neon ===== */
.comments-section {
    background: linear-gradient(135deg, #191930 80%, #0ff2 120%);
    border-radius: 16px;
    padding: 34px 22px 18px 22px;
    margin: 48px 0 30px 0;
    box-shadow: 0 0 20px #0ff4, 0 0 8px #f0f3;
    border: 1.3px solid #0ff4;
}
.comments-section h3 {
    color: #fff;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-size: 1.2em;
    margin-bottom: 18px;
    text-shadow: 0 0 8px #0ff,0 0 18px #f0f;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}
.comment-item {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #23f3;
}
.comment-meta {
    color: #f0f;
    font-size: 0.95em;
    margin-bottom: 2px;
    display: flex;
    gap: 12px;
}
.comment-content {
    color: #d8f9ff;
    margin-bottom: 3px;
}
.admin-reply {
    background: #0ff2;
    color: #2c1842;
    margin: 13px 0 0 0;
    padding: 12px 14px;
    border-radius: 9px;
    box-shadow: 0 0 6px #f0f4;
    font-size: 0.96em;
}

/* ==== Comment Form Neon ==== */
.comment-form-section {
    background: linear-gradient(135deg, #191930 90%, #f0f1 110%);
    border-radius: 16px;
    box-shadow: 0 0 20px #f0f4, 0 0 12px #0ff2;
    padding: 36px 22px 22px 22px;
    margin: 38px 0 0 0;
    border: 1.3px solid #f0f4;
    width: 100%;
    box-sizing: border-box;
}
.comment-form-section h3 {
    color: #fff;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-size: 1.15em;
    margin-bottom: 17px;
    text-shadow: 0 0 10px #0ff,0 0 20px #f0f;
}
.comment-form-section .form-group {
    width: 100%;
    margin-bottom: 17px;
    display: flex;
    flex-direction: column;
}
.comment-form-section label {
    color: #0ff;
    font-weight: 500;
    margin-bottom: 5px;
}
.comment-form-section input[type="text"],
.comment-form-section input[type="email"],
.comment-form-section textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #101020;
    border: 1.5px solid #0ff4;
    color: #fff;
    padding: 14px 13px;
    border-radius: 11px;
    font-size: 1.07em;
    margin-bottom: 2px;
    outline: none;
    transition: border-color .22s, box-shadow .18s;
    box-shadow: 0 0 10px #0ff2;
    font-family: inherit;
}
.comment-form-section input[type="text"]:focus,
.comment-form-section input[type="email"]:focus,
.comment-form-section textarea:focus {
    border-color: #f0f;
    box-shadow: 0 0 16px #f0f7;
}
.comment-form-section textarea {
    min-height: 115px;
    resize: vertical;
}
.submit-btn {
    background: linear-gradient(90deg, #0ff, #f0f 95%);
    color: #181828;
    font-weight: bold;
    border: none;
    border-radius: 999px;
    padding: 12px 35px;
    font-size: 1.08em;
    margin-top: 7px;
    cursor: pointer;
    box-shadow: 0 0 10px #0ff3, 0 0 16px #f0f4;
    transition: background 0.22s, color 0.18s;
}
.submit-btn:hover {
    background: linear-gradient(90deg, #f0f, #0ff 90%);
    color: #fff;
}

.success-message {
    background: #16f7cc;
    color: #181828;
    border-radius: 9px;
    padding: 9px 13px;
    margin-bottom: 15px;
    font-weight: bold;
    box-shadow: 0 0 8px #0ff3;
}
.error-message {
    background: #f01265;
    color: #fff;
    border-radius: 9px;
    padding: 9px 13px;
    margin-bottom: 15px;
    font-weight: bold;
    box-shadow: 0 0 8px #f0f3;
}

/* ==== Responsive adjustments ==== */
@media (max-width: 800px) {
    .blog-post-detail-container {
        padding: 24px 7vw 18px 7vw;
    }
    .comment-form-section,
    .comments-section {
        padding: 17px 3vw 10px 3vw;
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 480px) {
    .blog-post-detail-container {
        padding: 8vw 2vw 8vw 2vw;
    }
    .comment-form-section,
    .comments-section {
        padding: 8vw 2vw 6vw 2vw;
    }
    .blog-post-featured-image img {
        max-height: 170px;
    }
}


   /* ===== Disco Tucholsky Event Gallery ===== */
.page-container {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 18px 50px 18px;
}
.page-header {
    text-align: center;
    margin-bottom: 44px;
}
.page-header h1 {
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-size: 2.2em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 16px #0ff, 0 0 28px #f0f, 0 0 20px #fff7;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.page-header p {
    color: #b0eaff;
    font-size: 1.17em;
    margin: 0 auto 0 auto;
    max-width: 560px;
    text-shadow: 0 0 8px #0ff2;
}
.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px 32px;
    margin: 0 auto 0 auto;
    max-width: 1080px;
}
.event-gallery-card {
    display: block;
    border-radius: 19px;
    box-shadow: 0 0 18px #00fff98c, 0 0 36px #f0f5, 0 2px 24px #0ff2;
    border: 1.4px solid #0ff6;
    background: #181828;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: transform 0.22s cubic-bezier(.25,.8,.25,1), box-shadow 0.33s cubic-bezier(.25,.8,.25,1);
}
.event-gallery-card:hover {
    transform: translateY(-10px) scale(1.037);
    box-shadow: 0 0 30px #f0f7, 0 0 40px #0ff5, 0 2px 32px #0ff5;
    z-index: 2;
    border-color: #f0f;
}
.card-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 19px 19px 0 0;
    transition: filter 0.22s;
    box-shadow: 0 2px 14px #0ff4;
}
.event-gallery-card:hover .card-image {
    filter: brightness(1.13) saturate(1.16) blur(1px);
}
.card-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(0deg, #181828ee 92%, #0ff2 100%, #f0f1 0%);
    padding: 32px 18px 18px 18px;
    color: #fff;
    width: 100%;
    border-radius: 0 0 19px 19px;
    box-shadow: 0 6px 26px #0ff5, 0 4px 20px #f0f2;
    text-align: left;
    z-index: 2;
    opacity: 0.97;
    pointer-events: none;
    transition: background .28s;
}
.card-hover-overlay h3 {
    margin: 0 0 4px 0;
    font-size: 1.25em;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    color: #0ff;
    text-shadow: 0 0 7px #0ffb,0 0 12px #fff7;
    font-weight: bold;
}
.card-hover-overlay p {
    margin: 0;
    font-size: 1em;
    color: #f0f;
    font-weight: 600;
    text-shadow: 0 0 8px #f0f6;
}

/* Instagram feed (already disco, but small touch) */
.instagram-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    margin-top: 32px;
}
.instagram-header i {
    font-size: 2.2em;
    color: #f0f;
    margin-bottom: 5px;
    text-shadow: 0 0 16px #0ff4, 0 0 16px #f0f6;
}
.instagram-header h2 {
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    color: #fff;
    font-size: 1.25em;
    margin-bottom: 2px;
}
.instagram-username {
    color: #0ff;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    margin-bottom: 10px;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 3fr));
    gap: 22px;
    max-width: 660px;
    margin: 0 auto 0 auto;
    margin-bottom: 25px;
}
.instagram-post {
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 0 8px #0ff2, 0 0 12px #f0f3;
    transition: transform 0.16s, box-shadow 0.19s;
}
.instagram-post img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    border-radius: 13px;
    transition: filter 0.18s;
}
.instagram-post:hover {
    transform: scale(1.06);
    box-shadow: 0 0 20px #f0f7, 0 0 24px #0ff8;
}
.instagram-post:hover img {
    filter: brightness(1.13) saturate(1.17);
}
.post-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, #0ff2 15%, #f0f2 95%);
    opacity: 0.18;
    pointer-events: none;
}
.instagram-post:hover .post-overlay {
    opacity: 0.3;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 900px) {
    .page-container {
        padding: 0 5vw 25px 5vw;
    }
    .event-gallery-grid {
        gap: 28px 16px;
    }
}
@media (max-width: 600px) {
    .event-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .page-container {
        padding: 0 2vw 13vw 2vw;
    }
    .page-header h1 {
        font-size: 1.16em;
    }
    .card-image {
        height: 140px;
        border-radius: 15px 15px 0 0;
    }
    .card-hover-overlay {
        padding: 15px 10px 10px 10px;
        border-radius: 0 0 15px 15px;
    }
}

/* ====== DISCO TUCHOLSKY NEON GALLERY ====== */
.gallery-grid-public {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 32px 22px;
    margin: 0 auto 45px auto;
    padding: 0 10px 60px 10px;
    max-width: 980px;
}

.gallery-item {
    border-radius: 16px;
    box-shadow: 0 0 18px #00fff980, 0 0 36px #f0f4, 0 2px 24px #0ff2;
    background: #181828;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .22s, box-shadow .33s;
    display: block;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    background: #0ff1;
    transition: filter 0.22s;
}

.gallery-item:hover {
    transform: translateY(-7px) scale(1.035);
    box-shadow: 0 0 34px #0ff, 0 0 64px #f0f7, 0 2px 30px #fff2;
    z-index: 3;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(120deg, rgba(0,255,255,0.10) 0%, rgba(255,0,255,0.12) 100%);
    opacity: 0;
    font-size: 2.1em;
    transition: opacity 0.19s;
    pointer-events: none;
    border-radius: 16px;
    text-shadow: 0 0 12px #0ff, 0 0 18px #f0f;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 900px) {
    .gallery-grid-public {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px 12px;
        padding-bottom: 36px;
        max-width: 99vw;
    }
    .gallery-item img, .gallery-item video {
        height: 120px;
    }
}
/* ===== HERO SWIPER – AUTO SLIDER NEON ===== */
.hero-swiper-container {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
    z-index: 2;
}
.hero-swiper {
    width: 100vw;
    height: 380px;
    position: relative;
    border-radius: 0 0 38px 38px;
    box-shadow: 0 12px 40px #0ff6, 0 8px 80px #f0f4, 0 2px 24px #0ff2;
}
.hero-swiper .swiper-slide {
    width: 100vw;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 38px 38px;
    transition: filter 0.25s;
    filter: brightness(0.7) blur(0.2px);
}
.hero-swiper-overlay {
    position: absolute; z-index: 3;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background: linear-gradient(120deg, rgba(0,255,255,0.18) 0%, rgba(255,0,255,0.15) 100%);
    pointer-events: none;
    border-radius: 0 0 38px 38px;
}
.hero-swiper-title {
    position: absolute;
    left: 0; right: 0; bottom: 34px; z-index: 5;
    width: 100vw; max-width: 100vw;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    pointer-events: none;
}
.hero-swiper-title h1 {
    color: #fff;
    font-size: 2.7em;
    text-shadow: 0 0 12px #0ff,0 0 32px #f0f,0 0 38px #fff;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 7px;
}
.hero-swiper-title p {
    color: #fff;
    font-size: 1.2em;
    max-width: 480px;
    margin: 0 auto;
    text-shadow: 0 0 7px #0ff6, 0 0 16px #f0f7;
    font-weight: 600;
}
.hero-swiper-title .neon {
    color: #0ff;
    text-shadow: 0 0 9px #f0f,0 0 22px #0ff9,0 0 20px #fff6;
}
.swiper-pagination-bullet {
    background: #0ff;
    box-shadow: 0 0 6px #f0f, 0 0 11px #0ff;
    opacity: 0.7;
}
.swiper-pagination-bullet-active {
    background: #f0f;
    opacity: 1;
}
@media (max-width: 700px) {
    .hero-swiper { height: 180px; border-radius: 0 0 18px 18px;}
    .hero-swiper .swiper-slide { height: 180px; border-radius: 0 0 18px 18px;}
    .hero-swiper-title { bottom: 16px; }
    .hero-swiper-title h1 { font-size: 1.18em; }
    .hero-swiper-title p { font-size: 0.98em; }
}

/* ==== ROOM SECTIONS ==== */
.location-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    background: #191929;
    border-radius: 26px;
    margin: 40px 0;
    box-shadow: 0 0 22px #0ff3, 0 0 50px #f0f1;
    padding: 32px 30px;
}
.location-info {
    flex: 1 1 320px;
    min-width: 220px;
}
.location-info h2 {
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    color: #0ff;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 12px #f0f7,0 0 24px #fff2;
}
.location-info p {
    color: #e0e0e0;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 0;
    text-shadow: 0 0 6px #0ff2;
}
.location-photos {
    flex: 1 1 370px;
    min-width: 210px;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 13px;
}
.photo-grid a {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px #0ff7, 0 0 15px #f0f5;
    border: 1.5px solid #0ff4;
    transition: transform 0.17s, box-shadow 0.18s;
    background: #22243c;
}
.photo-grid a:hover {
    transform: scale(1.04);
    box-shadow: 0 0 16px #f0f, 0 0 24px #0ff8;
    border-color: #f0f;
}
.photo-grid img {
    width: 100%; height: 120px; object-fit: cover; object-position: center;
    display: block;
    border-radius: 15px;
    background: #0ff1;
}
@media (max-width: 900px) {
    .location-section { flex-direction: column; padding: 20px 7px; gap: 15px;}
    .photo-grid img { height: 85px; }
}
@media (max-width: 600px) {
    .location-section { margin: 18px 0; border-radius: 13px; }
    .location-info h2 { font-size: 1.13em; }
    .photo-grid { gap: 7px; }
    .photo-grid img { height: 55px; border-radius: 8px; }
}

/* ==== PAGE LAYOUT ==== */
.page-container {
    max-width: 1150px;
    margin: 30px auto;
    padding: 0 20px;
}
.neon-divider {
    border: none;
    height: 3px;
    width: 100vw;
    background: linear-gradient(90deg,#0ff 0,#f0f 48%,#fff 100%);
    margin: 40px 0 0 0;
    box-shadow: 0 0 10px #0ff5,0 0 18px #f0f5;
}

/* Gallery – Fancybox thumb arrows are already styled by fancyapps, but you can tweak further if needed */

  /* Stilet bazë të trupit të faqes */
        body { margin: 0; font-family: 'Inter', sans-serif; background-color: #1a1a1a; color: #fff; overflow-x: hidden; }
        
        /* Keyframes për animacionet neon (të marra nga kodi juaj i mëparshëm) */
        @keyframes neon-glow { 0%{text-shadow:0 0 5px #fff,0 0 10px #fff,0 0 15px #0ff,0 0 20px #0ff,0 0 25px #0ff,0 0 30px #0ff,0 0 35px #0ff} 50%{text-shadow:0 0 10px #fff,0 0 20px #fff,0 0 30px #f0f,0 0 40px #f0f,0 0 50px #f0f,0 0 60px #f0f,0 0 70px #f0f} 100%{text-shadow:0 0 5px #fff,0 0 10px #fff,0 0 15px #0ff,0 0 20px #0ff,0 0 25px #0ff,0 0 30px #0ff,0 0 35px #0ff} }
        @keyframes hero-logo-color-change { 0%{filter:drop-shadow(0 0 5px rgba(255,255,255,0.7)) drop-shadow(0 0 10px rgba(255,255,255,0.5))} 50%{filter:drop-shadow(0 0 15px rgba(255,215,0,1)) drop-shadow(0 0 25px rgba(255,215,0,0.8))} 100%{filter:drop-shadow(0 0 5px rgba(255,255,255,0.7)) drop-shadow(0 0 10px rgba(255,255,255,0.5))} }
        @keyframes neon-text-pulse { 0%{text-shadow:0 0 5px #fff,0 0 10px #0ff,0 0 15px #f0f} 50%{text-shadow:0 0 8px #fff,0 0 15px #f0f,0 0 25px #0ff} 100%{text-shadow:0 0 5px #fff,0 0 10px #0ff,0 0 15px #f0f} }
        @keyframes button-water-neon-flow { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }
        @keyframes hero-title-neon-multi { 0%{text-shadow:0 0 10px #fff,0 0 20px #0ff,0 0 30px #0ff} 25%{text-shadow:0 0 10px #fff,0 0 20px #f0f,0 0 30px #f0f} 50%{text-shadow:0 0 10px #fff,0 0 20px #ff0,0 0 30px #ff0} 75%{text-shadow:0 0 10px #fff,0 0 20px #0f0,0 0 30px #0f0} 100%{text-shadow:0 0 10px #fff,0 0 20px #0ff,0 0 30px #0ff} }
        @keyframes animated-neon-border { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        
      
      
        /* Stilet për Carousel (Slider) */
        .swiper-container { width: 100%; height: 60vh; max-height: 550px; position: relative; }
        .swiper-slide { background-size: cover; background-position: center; }
        .swiper-slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
        .swiper-button-next, .swiper-button-prev { color: #fff; text-shadow: 0 0 8px #000; }
        .swiper-pagination-bullet-active { background: #0ff; }
        
        /* Stilet për faqen Job */
        .page-container { max-width: 1200px; margin: 0 auto; padding: 100px 20px; }
        .page-header { text-align: center; margin-bottom: 60px; }
        .page-header h1 { font-size: 4em; animation: hero-title-neon-multi 6s infinite alternate; }
        .page-header p { font-size: 1.2em; max-width: 800px; margin: 15px auto 0; color: #ccc; line-height: 1.7; }
        .job-category h2 { font-size: 2.5em; color: #0ff; border-bottom: 2px solid #0ff; padding-bottom: 10px; margin-top: 60px; margin-bottom: 30px; text-align: left; }
        .job-card { background-color: #000; border: 1px solid #222; border-radius: 15px; display: flex; flex-wrap: wrap; margin-bottom: 30px; overflow: hidden; transition: box-shadow 0.3s; }
        .job-card:hover { box-shadow: 0 0 25px rgba(0,255,255,0.2); }
        .job-card-image { 
            flex: 1 1 300px; 
            min-height: 300px; 
            background-size: cover; 
            background-position: center; 
            /* Vendos background-image si fallback nqs img s'punon */
            display: flex; /* Për të centruar imazhin brenda */
            align-items: center;
            justify-content: center;
        }
        .job-card-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            display: block; /* Siguron që img të shfaqet si bllok */
        } 
        .job-card-content { flex: 2 1 500px; padding: 30px; text-align: left; }
        .job-card-content h3 { font-size: 2em; margin: 0 0 15px; }
        .job-card-content p { font-size: 1.1em; line-height: 1.7; color: #ccc; }
        .job-card-content .hero-button { margin-top: 20px; }
        
        /* Stilet për Modalin e Aplikimit (të marra nga kodi juaj i mëparshëm) */
        .modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.85);backdrop-filter:blur(8px);display:none;justify-content:center;align-items:center;z-index:2000;opacity:0;transition:opacity .3s ease}.modal-overlay.active{display:flex;opacity:1}.modal-content{background-color:#000;padding:40px;border-radius:15px;border:1px solid #0ff;box-shadow:0 0 40px rgba(0,255,255,0.3);width:90%;max-width:600px;position:relative;transform:scale(.95);transition:transform .3s ease}.modal-overlay.active .modal-content{transform:scale(1)}.modal-close{position:absolute;top:15px;right:20px;background:0 0;border:none;color:#555;font-size:2.5rem;cursor:pointer;transition:color .3s ease}.modal-close:hover{color:#fff}.modal-content h3{font-size:2em;color:#0ff;text-shadow:0 0 8px rgba(0,255,255,0.5);margin:0 0 10px;text-align:center}.modal-content #modal-job-title{text-align:center;color:#ccc;margin:0 0 30px}#application-form .form-group{margin-bottom:20px}#application-form label{margin-bottom:8px;font-size:.9em;color:#aaa;text-align:left;display:block;}#application-form input, #application-form textarea{width:100%;background-color:#1a1a1a;border:1px solid #444;border-radius:8px;padding:12px;color:#fff;font-size:1em;}#application-form input[type="file"]{padding:8px}#application-form input:focus,#application-form textarea:focus{outline:0;border-color:#0ff;box-shadow:0 0 10px rgba(0,255,255,0.3)}#application-form button{width:100%;margin-top:10px}
        #success-container{text-align:center} #success-container h4{font-size:1.8em;color:#39ff14} #success-container p{color:#ccc}
        @media(max-width: 768px) { .job-card { flex-direction: column; } }

 
/* =================== CONTACT SECTION NEON =================== */
.contact-section {
    max-width: 1180px;
    margin: 40px auto 0 auto;
    padding: 0 12px;
}

.contact-section .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(28,10,40,0.97);
    border-radius: 18px;
    box-shadow: 0 0 32px 4px #5c05a755;
    padding: 36px 26px;
}

.contact-section .contact-info {
    flex: 1 1 330px;
    padding: 12px 10px;
}
.contact-section .contact-info h2 {
    color: #ff00ea;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3em;
    letter-spacing: 1px;
    text-shadow: 0 0 16px #ff00ea, 0 0 22px #00fff9;
    margin-bottom: 19px;
}
.contact-section .contact-info p {
    margin: 13px 0;
    font-size: 1.09em;
    color: #fff;
    letter-spacing: 0.1px;
    line-height: 1.7;
}
.contact-section .contact-info i { 
    color: #00fff9; 
    margin-right: 9px; 
    filter: drop-shadow(0 0 6px #00fff9); 
}

.contact-section .contact-form {
    flex: 1.4 1 420px;
    background: rgba(36,8,52,0.97);
    border-radius: 15px;
    box-shadow: 0 0 30px 2px #ffffff;
    padding: 30px 22px;
}
.contact-section .contact-form h2 {
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    color: #fff;
    font-size: 1.15em;
    margin-bottom: 17px;
    text-shadow: 0 0 16px #ffff, 0 0 20px #00fff9;
}
.contact-section .form-group { margin-bottom: 16px; }
.contact-section .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #00fff9;
    text-shadow: 0 0 6px #00fff9;
}
.contact-section .form-group input,
.contact-section .form-group textarea {
    width: 90%;
    padding: 11px 12px;
    border-radius: 8px;
    border: 2px solid #ff00ea;
    background: #1a1a2e;
    color: #fff;
    font-size: 1em;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-shadow: 0 0 8px #00fff955;
}
.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    border-color: #ffe600;
    box-shadow: 0 0 18px #ffe600aa;
}
.contact-section .form-group textarea { min-height: 98px; resize: vertical; }

.contact-section .submit-btn {
    background: linear-gradient(90deg, #00fff9, #ff00ea, #ffe600, #b100ff, #00fff9);
    background-size: 400% 400%;
    color: #fff;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.08em;
    padding: 13px 40px;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    letter-spacing: 1.2px;
    transition: box-shadow 0.3s, background-position 0.4s;
    box-shadow: 0 0 22px 2px #00fff9cc, 0 0 40px 0 #ff00ea66;
    animation: btn-neon 3s linear infinite;
    margin-top: 13px;
}
@keyframes btn-neon {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.contact-section .submit-btn:hover {
    background-position: 100% 0;
    box-shadow: 0 0 40px 8px #ffe60066, 0 0 50px 10px #ff00ea55;
}

.contact-section .success-message, 
.contact-section .error-message {
    padding: 10px 13px;
    border-radius: 7px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.01em;
}
.contact-section .success-message {
    background: #0ff4; color: #fff; border: 1.5px solid #10ffb9;
    text-shadow: 0 0 6px #0ff;
}
.contact-section .error-message {
    background: #ff005522; color: #fff; border: 1.5px solid #ff00ea;
    text-shadow: 0 0 6px #ff00ea;
}

/* Responsive për mobile */
@media (max-width: 900px) {
    .contact-section .contact-grid { flex-direction: column; gap: 28px; padding: 22px 7px;}
    .contact-section .contact-form, 
    .contact-section .contact-info { padding: 16px 2px; }
}
@media (max-width: 520px) {
    .contact-section .contact-form, 
    .contact-section .contact-info { padding: 9px 0; }
    .contact-section .contact-grid { padding: 10px 2px; }
    .contact-section .submit-btn { padding: 11px 18px; font-size: 0.97em;}
}

/* =================== MAP SECTION NEON =================== */
.map-section {
    max-width: 1180px;
    margin: 38px auto 0 auto;
    text-align: center;
    padding: 0 10px 34px 10px;
}
.map-section h2 {
    color: #00fff9;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-size: 1.23em;
    margin-bottom: 16px;
    letter-spacing: 1.2px;
    text-shadow: 0 0 14px #00fff9, 0 0 22px #ff00ea;
}
.map-section .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 26px 2px #00fff977, 0 0 14px 2px #ff00ea66;
    background: linear-gradient(90deg, #00fff9, #ff00ea, #ffe600, #b100ff, #00fff9);
    background-size: 220% 220%;
    animation: map-neon 7s linear infinite;
    margin: 0 auto;
    max-width: 100%;
    padding: 3px; /* për neon border efekt */
}
@keyframes map-neon {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.map-section .map-container iframe {
    width: 100%;
    height: 370px;
    border: none;
    border-radius: 13px;
    display: block;
    box-shadow: 0 0 16px 1px #00fff955, 0 0 7px #ff00ea55;
    background: #1a1a2e;
}

/* Responsive për mobile */
@media (max-width: 700px) {
    .map-section .map-container iframe { height: 200px; }
}


/* ========== HERO CONTACT NEON ========== */
.hero-contact {
    position: relative;
    width: 100vw;
    min-height: 340px;
    max-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 0 40px #0ff6, 0 0 90px #f0f4;
    margin-bottom: 0;
}
.hero-contact-bg {
    position: absolute; z-index: 1;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1600&q=80'); /* NDRYSHO sipas dëshirës */
    background-size: cover;
    background-position: center;
    filter: brightness(0.50) blur(2.2px);
}
.hero-contact-overlay {
    position: absolute; z-index: 2;
    width: 100%; height: 100%; top: 0; left: 0;
    background: linear-gradient(120deg,rgba(0,255,255,0.16) 0%,rgba(255,0,255,0.19) 100%);
    pointer-events: none;
}
.hero-contact-content {
    position: relative; z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 680px;
    padding: 66px 16px 54px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-contact-logo {
    height: 120px;
    width: auto;
    margin-bottom: 18px;
    animation: hero-logo-color-change 8s infinite alternate;
}
.hero-contact-content h1 {
    font-size: 3.2em;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    color: #fff;
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: 0 0 18px #0ff,0 0 32px #f0f,0 0 30px #fff;
    animation: hero-title-neon-multi 7s infinite alternate cubic-bezier(.54,1.72,.86,.36);
    margin-bottom: 9px;
}
.hero-contact-content p {
    font-size: 1.22em;
    color: #f3f3fa;
    text-shadow: 0 0 9px #0ffb, 0 0 11px #f0fa;
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 700px) {
    .hero-contact { min-height: 170px; max-height: 220px; border-radius: 0 0 19px 19px; }
    .hero-contact-logo { height: 60px; }
    .hero-contact-content h1 { font-size: 1.35em; }
    .hero-contact-content p { font-size: 1em; }
}


/* ============================
   TISCH CONTAINER - POPUP STYLE
   ============================ */

.tisch-container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 600px;
  background: #111;
  color: #fff;
  border: 2px solid #0ff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none; /* default hidden */
  animation: fadeInScale 0.4s ease-out;
}

.tisch-container.active {
  display: block;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.tisch-container h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
  animation: hero-title-neon-multi 2s infinite;
}

.tisch-container .popup-content {
  margin-top: 10px;
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
  text-align: center;
}

.tisch-container .popup-actions {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tisch-container .popup-actions button {
  background-color: #0ff;
  color: #111;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
}

.tisch-container .popup-actions button:hover {
  background-color: #00ffaa;
  transform: scale(1.05);
}

.tisch-container .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  color: #0ff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tisch-container .close-btn:hover {
  color: #fff;
}

@media screen and (max-width: 480px) {
  .tisch-container {
    padding: 20px;
    width: 95%;
  }

  .tisch-container h2 {
    font-size: 1.4em;
  }

  .tisch-container .popup-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===============================================
   EVENT CARDS STYLES - HOMEPAGE (6 EVENTS IN 2 ROWS)
   =============================================== */

/* Event Grid - 3 columns layout */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Disco Card - Event Card */
.disco-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.disco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #00ffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.disco-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3), 0 20px 50px rgba(255, 0, 255, 0.3);
}

.disco-card:hover::before {
    opacity: 1;
}

/* Card Image Wrapper */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9);
    background: #2a2a2a;
}

.disco-card:hover .card-image-wrapper img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

/* Overlay gradient on hover */
.card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.disco-card:hover .card-image-wrapper::after {
    opacity: 1;
}

/* Card Content */
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    height: 280px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    transition: background 0.4s ease;
    text-align: center;
    position: relative;
}

.disco-card:hover .card-content {
    background: linear-gradient(180deg, rgba(0, 50, 50, 0.4), rgba(50, 0, 50, 0.4));
}

/* Date Badge */
.card-date-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #00ffff, #0099cc);
    color: #000;
    font-weight: bold;
    font-size: 0.8em;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
    margin: 0;
}

.disco-card:hover .card-date-badge {
    background: linear-gradient(135deg, #ff00ff, #cc0099);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
    transform: scale(1.05);
}

/* Card Title */
.card-title {
    font-size: 1.3em;
    margin: 0 0 25px;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.6em;
    line-height: 2.3;
    text-align: center;
}

.disco-card:hover .card-title {
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
}

/* Card Time */
.card-time {
    display: inline-flex;
    align-items: center;
    color: #ccc;
    font-size: 0.9em;
    transition: color 0.3s ease;
    margin: 0;
}

.disco-card:hover .card-time {
    color: #fff;
}

/* Card Description */
.card-description {
    font-size: 0.85em;
    color: #aaa;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 80px;
    text-align: center;
}

.disco-card:hover .card-description {
    color: #ddd;
}

/* Hero Button in Card */
.card-content .hero-button {
    padding: 10px 22px;
    font-size: 0.9em;
    align-self: center;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .disco-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Keyframe Animations */
@keyframes card-glow-pulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3), 0 20px 50px rgba(255, 0, 255, 0.3);
    }
    50% {
        box-shadow: 0 20px 60px rgba(0, 255, 255, 0.5), 0 20px 60px rgba(255, 0, 255, 0.5);
    }
}

.disco-card:hover {
    animation: card-glow-pulse 2s infinite;
}

/* ===============================================
   ADVANCED HOVER ANIMATIONS FOR EVENT CARDS
   =============================================== */

/* Shimmer effect on image */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.card-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.disco-card:hover .card-image-wrapper::before {
    animation: shimmer 1.5s ease-in-out;
}

/* Neon border pulse animation */
@keyframes neon-border-pulse {
    0%, 100% {
        background: linear-gradient(135deg, #00ffff, #ff00ff, #00ffff);
    }
    33% {
        background: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff);
    }
    66% {
        background: linear-gradient(135deg, #00ffff, #ff00ff, #ffff00);
    }
}

.disco-card:hover::before {
    animation: neon-border-pulse 3s infinite;
}

/* Text glow animation */
@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 0, 255, 0.7), 0 0 30px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    }
}

.disco-card:hover .card-title {
    animation: text-glow 2s infinite;
}

/* Button slide-in effect */
.card-content .hero-button {
    position: relative;
    overflow: hidden;
}

.card-content .hero-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.disco-card:hover .card-content .hero-button::after {
    left: 100%;
}

/* Card entrance animation */
@keyframes card-entrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.disco-card {
    animation: card-entrance 0.6s ease-out backwards;
}

.disco-card:nth-child(1) { animation-delay: 0.1s; }
.disco-card:nth-child(2) { animation-delay: 0.2s; }
.disco-card:nth-child(3) { animation-delay: 0.3s; }
.disco-card:nth-child(4) { animation-delay: 0.4s; }
.disco-card:nth-child(5) { animation-delay: 0.5s; }
.disco-card:nth-child(6) { animation-delay: 0.6s; }

/* 3D tilt effect on hover */
.disco-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.disco-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(2deg);
}

/* Floating animation for date badge */
@keyframes float-badge {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.disco-card:hover .card-date-badge {
    animation: float-badge 2s ease-in-out infinite;
}

/* Gradient background shift */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.disco-card:hover .card-content {
    background: linear-gradient(270deg, rgba(0, 50, 50, 0.4), rgba(50, 0, 50, 0.4), rgba(0, 50, 50, 0.4));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Icon pulse animation */
.card-time i {
    transition: all 0.3s ease;
}

.disco-card:hover .card-time i {
    animation: icon-pulse 1s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        color: #00ffff;
    }
    50% {
        transform: scale(1.2);
        color: #ff00ff;
    }
}

/* Smooth reveal for description */
.card-description {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.disco-card:hover .card-description {
    max-height: 200px;
}

/* Particle effect overlay */
@keyframes particles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.disco-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.disco-card:hover::after {
    opacity: 1;
    animation: particles 10s linear infinite;
}

/* Date and Time Row Container */
.card-date-time-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Ensure date badge and time are inline */
.card-date-time-row .card-date-badge,
.card-date-time-row .card-time {
    margin: 0;
}

