:root {
    --primary-color: #ff0000;
    --secondary-color: #000000;
    --accent-color: #ff3333;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --background-dark: #0a0a0a;
    --background-light: #1a1a1a;
    --transition: all 0.3s ease;
    --neon-glow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    --gradient: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    --background-color: #000000;
    --border-color: #ff0000;
    --hover-color: #ff3333;
    --shadow-color: rgba(255, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.logo-subtext {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.logo-img {
    width: 14vw;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-links a:hover i {
    transform: scale(1.2);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: -5px;
}

.cart-icon a {
    position: relative;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.cart-icon a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 24px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
        position: relative;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
    }
    
    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }
    
    .logo-img {
        width: 22vw;
    }
    
    .nav-right {
        order: -1; /* Move to the left */
        margin-left: -25px; /* Move more to the left */
        margin-right: auto;
        display: flex;
        align-items: center;
    }
    
    .hamburger {
        order: 1; /* Move to the right */
        margin-left: auto;
        margin-right: 0;
    }
    
    .language-toggle {
        padding: 8px 12px;
        margin-left: -5px; /* Move more to the left */
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        font-size: 1rem;
    }
    
    .language-text {
        font-size: 0.9rem;
        display: block !important;
        color: white;
    }
    
    .language-toggle i {
        color: white;
        font-size: 1.1rem;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.427);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        opacity: 0;
        transform: translateX(100%);
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links a {
        margin: 0.5rem 0;
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 0.7rem;
    }
    
    .nav-links a::after {
        bottom: 5px;
    }
    
    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    
    .nav-links a i {
        font-size: 1.5rem;
        margin-right: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .nav-links a:hover i {
        transform: scale(1.2) rotate(360deg);
    }
    
    .social-icons.mobile {
        display: flex;
        position: absolute;
        bottom: 4rem;
        left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem;
        gap: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active .social-icons.mobile {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }
    
    .social-icons.mobile a {
        color: var(--text-color);
        font-size: 1.8rem;
        transition: all 0.3s ease;
        opacity: 0;
        transform: scale(0.5);
    }
    
    .nav-links.active .social-icons.mobile a {
        opacity: 1;
        transform: scale(1);
    }
    
    .social-icons.mobile a:nth-child(1) { transition-delay: 0.5s; }
    .social-icons.mobile a:nth-child(2) { transition-delay: 0.6s; }
    .social-icons.mobile a:nth-child(3) { transition-delay: 0.7s; }
    .social-icons.mobile a:nth-child(4) { transition-delay: 0.8s; }
    
    .social-icons.mobile a:hover {
        color: var(--accent-color);
        transform: scale(1.2) rotate(360deg);
    }
    
    .event-hero {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .event-hero-content {
        padding: 0 1rem;
    }
    
    .event-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .event-hero {
        background-image: url('imagini/ANbgtel.jpeg');
    }
    
    /* Index page hero section for mobile */
    .event-hero[style*="background-image: url('/imagini/bgimg.jpg')"] {
        background-image: url('/imagini/bgtel.jpg') !important;
    }
    
    .shop-closed {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(
            -45deg,
            #000000,
            #1a0000,
            #0a0a0a,
            #000000
        );
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
        padding: 2rem;
        position: relative;
        overflow: hidden;
    }
    
    .shop-closed::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
            circle at center,
            rgba(255, 0, 0, 0.1) 0%,
            transparent 20%,
            rgba(255, 0, 0, 0.05) 30%,
            transparent 40%,
            rgba(255, 0, 0, 0.02) 50%,
            transparent 60%
        );
        transform: translate(-50%, -50%) rotate(0deg);
        animation: rotateGradient 30s linear infinite;
        pointer-events: none;
    }
    
    .shop-closed::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.03) 50%, transparent 100%),
            linear-gradient(180deg, transparent 0%, rgba(255, 0, 0, 0.02) 50%, transparent 100%);
        background-size: 200% 200%, 200% 200%;
        animation: glowingGrid 20s ease infinite;
        pointer-events: none;
    }
    
    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    @keyframes rotateGradient {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        100% {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    
    @keyframes glowingGrid {
        0% {
            background-position: 0% 0%, 0% 0%;
        }
        50% {
            background-position: 100% 100%, 100% 0%;
        }
        100% {
            background-position: 0% 0%, 0% 0%;
        }
    }
    
    .closed-content {
        padding: 2rem 1rem;
    }
    
    .closed-icon {
        font-size: 4rem;
    }
    
    .closed-message {
        font-size: 1.5rem;
    }
    
    .closed-submessage {
        font-size: 1rem;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .gallery-item {
        position: relative;
        aspect-ratio: 1;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        width: 100%;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.05);
    }
    
    .gallery-item.hidden {
        display: none !important;
    }
    
    @media (max-width: 1024px) {
        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            width: 100%;
            max-width: 600px;
        }
        
        .gallery {
            padding: 3rem 1rem;
        display: flex;
            flex-direction: column;
            align-items: center;
        }
    }
    
    @media (max-width: 480px) {
        .gallery-grid {
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
            padding: 0;
            width: 100%;
            max-width: 350px;
        }
        
        .gallery {
            padding: 2rem 1rem;
        }
        
        .gallery-item {
            aspect-ratio: 16/9;
        }
    }
    
    .popup-content {
        width: 95%;
        height: auto;
        max-height: 80vh;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
        width: 100%;
    }
    
    .contact-form {
        order: 1;
        width: 100%;
    }
    
    .contact-form h3 {
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .contact-form button {
        width: 100%;
        padding: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .event-hero-content h1 {
        font-size: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        width: 45%;
        margin: 0.5rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .popup-content {
        width: 95%;
        height: auto;
        max-height: 80vh;
    }
    
    .event-card .btn-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .event-card .btn {
        width: 100%;
    }
}

/* Medium Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .event-hero-content h1 {
        font-size: 3rem;
    }
    
    .events-container {
        flex-wrap: wrap;
    }
    
    .event-card {
        width: calc(50% - 1rem);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info, .contact-form {
        width: 48%;
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .event-hero {
        height: auto;
        min-height: 100vh;
    }
    
    .event-hero-content {
        padding: 5rem 2rem;
    }
    
    .nav-links {
        overflow-y: auto;
    }
    
    .nav-links a {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    .navbar, .hamburger, .social-icons, .hero-buttons, .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .event-hero {
        height: auto;
        background: none;
    }
    
    .event-hero-content {
        position: static;
        padding: 2rem;
    }
    
    .event-hero-content h1 {
        color: black;
        text-shadow: none;
    }
    
    .event-card {
        break-inside: avoid;
        border: 1px solid #ddd;
    }
    
    .gallery-item {
        break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
    }
}

.login-btn {
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.login-btn:hover {
    background-color: var(--accent-color);
    box-shadow: var(--neon-glow);
}

/* Event Hero Section */
.event-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 0 0 20px rgb(255, 255, 255) !important;
    padding: 0;
}

.countdown-label {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgb(255, 255, 255);
}


@media (max-width: 768px) {
    .countdown-timer {
        gap: 0.2rem;
        flex-wrap: nowrap;
        justify-content: center;
        margin: 1rem 0;
        width: 100%;
        padding: 0 3px;
    }

    .countdown-item {
        flex: 1;
        min-width: auto;
        padding: 0;
    }

    .countdown-number {
        font-size: 1.1rem;
        padding: 0;
    }

    .countdown-label {
        font-size: 0.5rem;
        margin-top: 0.1rem;
    }

    .event-hero-content {
        padding: 0 1rem;
    }

    .event-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.1rem;
    }

    .countdown-item {
        padding: 0;
    }

    .countdown-number {
        font-size: 0.9rem;
    }

    .countdown-label {
        font-size: 0.4rem;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 25rem;
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: transform 0.4s ease;
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-buttons .btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.hero-buttons .btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

@media (max-width: 768px) {
    .event-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn:hover {
    background-color: var(--hover-color);
    text-shadow: 0 0 10px var(--shadow-color);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.skill {
    padding: 2rem;
    background-color: var(--background-dark);
    border-radius: 10px;
    transition: var(--transition);
}

.skill:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

.skill i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Music Section */
.music {
    padding: 5rem 2rem;
    background-color: #111;
}

.music h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.spotify-embed {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.spotify-embed iframe {
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.player-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.play-pause {
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-pause:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.play-pause i {
    color: white;
    font-size: 1.2rem;
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.playlist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #222;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track:hover {
    background: #333;
}

.track.active {
    background: #444;
    border-left: 4px solid var(--primary-color);
}

.track img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.track-info {
    flex: 1;
}

.track-info h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.track-info p {
    color: #888;
    font-size: 0.9rem;
}

.play-track {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.play-track:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .music {
        padding: 3rem 1rem;
    }

    .music h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .player-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .track {
        padding: 0.8rem;
    }

    .track img {
        width: 50px;
        height: 50px;
    }
}

/* Events Section */
.events {
    padding: 5rem 2rem;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-card-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.event-card:hover::before {
    transform: translateX(100%);
}

.event-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.event-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.event-card:hover h3::after {
    width: 100px;
}

.event-date, .event-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.event-card:hover .event-date,
.event-card:hover .event-location {
    color: #ffffff;
}

.event-date i, .event-location i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.event-card:hover .event-date i,
.event-card:hover .event-location i {
    transform: scale(1.2);
}

.event-description {
    color: #cccccc;
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.event-card:hover .event-description {
    color: #ffffff;
}

.event-card .btn-container {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0;
}

.event-card .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.event-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: transform 0.4s ease;
    z-index: -1;
}

.event-card .btn.details {
    background: transparent;
}

.event-card .btn.tickets {
    background: var(--primary-color);
}

.event-card .btn.no-tickets {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.event-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.event-card .btn.details:hover::before {
    transform: translateX(100%);
}

.event-card .btn.tickets:hover {
    background: transparent;
}

.event-card .btn.no-tickets:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .event-card-content {
        padding: 1.5rem;
    }

    .event-card h3 {
        font-size: 1.5rem;
    }

    .event-card .btn-container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .event-card .btn {
        width: 100%;
        text-align: center;
    }
}

/* Gallery Section */
.gallery {
    padding: 5rem 2rem;
    background-color: var(--background-dark);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    justify-content: center;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item.hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    width: 100%;
        max-width: 600px;
    }
    
    .gallery {
        padding: 3rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding: 0;
        width: 100%;
        max-width: 350px;
    }
    
    .gallery {
        padding: 2rem 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
}

.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.popup-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    height: auto;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Contact Section */
.contact-section {
    background: var(--background-dark);
    padding: 60px 0;
    color: #fff;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.contact-info p span {
    margin-right: 0;
}

.contact-info p span::after {
    content: ':';
    margin-right: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 20px;
}

.contact-info .social-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.contact-info .social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.contact-info .social-icon:nth-child(1) { /* Facebook */
    color: #1877f2 !important;
}

.contact-info .social-icon:nth-child(2) { /* Instagram */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.contact-info .social-icon:nth-child(2):hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #dc2743);
}

.contact-info .social-icon:nth-child(3) { /* YouTube */
    color: #ff0000 !important;
}

.contact-info .social-icon:nth-child(4) { /* Spotify */
    color: #1db954 !important;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.contact-form button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.contact-form button:hover::before {
    left: 100%;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff4444;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #00ff00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }

    .contact-form button {
        padding: 12px;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-social {
    margin-left: 1rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a:hover::after {
    width: 100%;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Footer Social Icons */
.footer-section .social-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-section .social-icon {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-section .social-icon i {
    width: auto;
    height: auto;
}

.footer-section .social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Remove any footer-social specific styling */
.footer-social {
    color: white !important;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section .social-links {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .footer-section .social-icon {
        font-size: 1.8rem;
    }
}

/* Fix Auth Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.auth-modal.active {
    display: flex;
}

.auth-content {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    transition: var(--transition);
}

.auth-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.auth-tab-btn.active {
    color: var(--accent-color);
}

.auth-tab-btn.active::after {
    width: 100%;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Admin Panel Styles */
.admin-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    padding: 2rem;
    overflow-y: auto;
}

.admin-panel.active {
    display: block;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-tab-btn {
    padding: 0.8rem 1.5rem;
    background: var(--dark-bg);
    border: 1px solid var(--accent-color);
    color: var(--light-text);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.admin-tab-btn.active {
    background: var(--accent-color);
    color: var(--dark-bg);
}

.admin-content {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form label {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 5px;
    color: var(--light-text);
    transition: var(--transition);
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: var(--accent-color);
    outline: none;
}

.admin-form button {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    margin-top: 1rem;
}

.admin-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

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

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

@keyframes slideIn {
    from { width: 0; }
    to { width: 100%; }
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Gallery Animations */
.gallery-item {
    transform: scale(1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* Enhanced Music Player Animations */
.play-pause {
    animation: pulse 2s infinite;
}

.track:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* Enhanced Event Card Animations */
.event-card {
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* Enhanced Contact Form Animations */
.contact-form input:focus,
.contact-form textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

/* Loading Animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        transition: var(--transition);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Admin Button Styles */
.admin-btn {
    background: var(--accent-color);
    color: var(--dark-bg);
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
}

.admin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition);
}

.admin-btn:hover::before {
    transform: translateX(0);
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

/* Admin Modal Styles */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.admin-modal.active {
    display: flex;
}

.admin-content {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
    animation: slideUp 0.3s ease;
}

.admin-content h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    transition: var(--transition);
}

.admin-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.admin-tab-btn.active {
    color: var(--accent-color);
}

.admin-tab-btn.active::after {
    width: 100%;
}

.admin-form {
    display: none;
}

.admin-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.admin-form h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--light-text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.2);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.admin-form button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    margin-top: 1rem;
}

.admin-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Event Page Styles */
.event-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.event-content {
    max-width: 800px;
    padding: 2rem;
}

.event-date, .event-location {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--shadow-color);
}

.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

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

.ticket-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-10px);
}

.ticket-card.vip {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px var(--shadow-color);
}

.ticket-card .price {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.ticket-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.ticket-card li {
    margin: 0.5rem 0;
}

/* Shop Page Styles */
.shop-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: #000;
}

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

.product-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px var(--shadow-color);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    margin: 1rem;
    color: var(--primary-color);
}

.product-card .price {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1rem;
}

/* Cart and Checkout Styles */
.cart-icon {
    position: relative;
    margin-left: 2rem;
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    background: var(--secondary-color);
    margin: 5% auto;
    padding: 2rem;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    color: #fff;
    border: 2px solid var(--border-color);
}

.close {
    color: #fff;
    float: right;
    font-size: 2rem;
    cursor: pointer;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-actions {
    display: flex;
    gap: 0.5rem;
}

.cart-item-actions button {
    padding: 0.2rem 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 5px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-features,
    .ticket-options,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Registration Form Styles */
.registration-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--shadow-color);
}

.registration-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.registration-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.registration-info ul {
    list-style: none;
    padding: 0;
}

.registration-info li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.registration-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--shadow-color);
    }
    50% {
        box-shadow: 0 0 20px var(--shadow-color);
    }
    100% {
        box-shadow: 0 0 5px var(--shadow-color);
    }
}

.glow-text {
    animation: glow 2s infinite;
}

/* Hover Effects */
.btn, .product-card, .feature {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover, .product-card:hover, .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Shop Closed Page Styles */
.shop-closed {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        -45deg,
        #000000,
        #1a0000,
        #0a0a0a,
        #000000
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.shop-closed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 0, 0, 0.1) 0%,
        transparent 20%,
        rgba(255, 0, 0, 0.05) 30%,
        transparent 40%,
        rgba(255, 0, 0, 0.02) 50%,
        transparent 60%
    );
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateGradient 30s linear infinite;
    pointer-events: none;
}

.shop-closed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.03) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(255, 0, 0, 0.02) 50%, transparent 100%);
    background-size: 200% 200%, 200% 200%;
    animation: glowingGrid 20s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotateGradient {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes glowingGrid {
    0% {
        background-position: 0% 0%, 0% 0%;
    }
    50% {
        background-position: 100% 100%, 100% 0%;
    }
    100% {
        background-position: 0% 0%, 0% 0%;
    }
}

.closed-content {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.closed-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.closed-message {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    animation: slideUp 0.5s ease-out;
}

.closed-submessage {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: slideUp 0.5s ease-out 0.2s backwards;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideUp 0.5s ease-out 0.4s backwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    animation: pulse 2s infinite;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: -5px;
}

.social-icons.mobile {
    display: none;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 10px currentColor;
}

.social-icon:nth-child(1) { /* Facebook */
    color: #1877f2;
}

.social-icon:nth-child(2) { /* Instagram */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.social-icon:nth-child(2):hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #dc2743);
}

.social-icon:nth-child(3) { /* YouTube */
    color: #ff0000;
}

.social-icon:nth-child(4) { /* Spotify */
    color: #1db954;
}

@media (max-width: 768px) {
    .nav-right .social-icons {
        display: none;
    }
    
    .social-icons.mobile {
        display: flex;
        position: absolute;
        bottom: 4rem;
        left: 0;
        width: 100%;
        justify-content: center;
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .social-icons.mobile a {
        color: var(--text-color);
        font-size: 1.8rem;
        transition: color 0.3s ease;
    }
    
    .social-icons.mobile a:hover {
        color: var(--accent-color);
    }
    .logo-img {
        width: 35vw;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: -5px;
}

/* Event Details Section */
.event-details {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.event-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-details-content {
    max-width: 600px;
}

.event-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.event-description {
    margin-bottom: 3rem;
}

.event-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.event-form-container {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #333333;
    height: 100%;
    min-height: 600px;
}

.event-form-container iframe {
    border-radius: 5px;
    background: transparent;
}

@media (max-width: 768px) {
    .event-details-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-form-container {
        min-height: 400px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0.5rem;
    }

    .event-form-container iframe {
        width: 100%;
        height: 100%;
        min-height: 500px;
    }
}

/* Shop Closed Button Animation */
.shop-closed .btn.primary {
    position: relative;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    animation: glow 2s infinite;
}

.shop-closed .btn.primary:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
}

/* Language Toggle */
.language-toggle {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-left: 15px;
    font-size: 1.1rem;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-toggle i {
    font-size: 1.2rem;
}

.language-text {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .language-toggle {
        padding: 8px 12px;
        margin-left: 10px;
    }
    
    .language-text {
        font-size: 0.9rem;
    }
}

/* Section Separator Line */
.about, .music, .events, .gallery, .contact-section {
    position: relative;
}

.about::before, .music::before, .events::before, .gallery::before, .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.8;
}

/* Add bottom line for sections except the last one */
.about::after, .music::after, .events::after, .gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.8;
}

.event-gallery {
    padding: 5rem 2rem;
    background-color: var(--background-dark);
}

.event-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.event-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
}

.event-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .event-gallery {
        padding: 3rem 1rem;
    }

    .event-gallery h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .event-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .event-gallery-item {
        aspect-ratio: 4/3;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .event-gallery-grid {
        gap: 8px;
        max-width: 350px;
    }

    .event-gallery-item img {
        height: 200px;
    }
}

.load-more-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.load-more-container .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.load-more-container .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.load-more-container .btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.load-more-container .btn:hover::before {
    width: 100%;
}

@media (max-width: 768px) {
    .load-more-container {
        flex-direction: column;
        align-items: center;
    }
    
    .load-more-container .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 0.5rem;
        margin: 0.5rem;
        width: auto;
    }

    .nav-links a span {
        position: relative;
    }

    .nav-links a span::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    .nav-links a:hover span::after,
    .nav-links a.active span::after {
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }
}

/* Section Title Styles */
.about h2, .music h2, .events h2, .gallery h2, .contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.about h2::after, .music h2::after, .events h2::after, .gallery h2::after, .contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .about h2, .music h2, .events h2, .gallery h2, .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 0.3rem;
    }

    .about h2::after, .music h2::after, .events h2::after, .gallery h2::after, .contact-section h2::after {
        width: 40px;
        height: 2px;
    }
}

/* Custom Popup Styles */
.custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    z-index: 9999;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.popup-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success .popup-icon {
    background: rgba(40, 167, 69, 0.2);
}

.success .popup-icon::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 12px;
    border-left: 3px solid #28a745;
    border-bottom: 3px solid #28a745;
    transform: rotate(-45deg);
    opacity: 1;
    animation: none;
}

.custom-popup-content {
    color: white;
    margin: 1rem 0;
    font-size: 1rem;
}

.custom-popup .close-popup {
    background: #ff0000;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .custom-popup {
        width: 90%;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .popup-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 12px;
    }
    
    .success .popup-icon::before {
        width: 20px;
        height: 10px;
        border-left: 3px solid #28a745;
        border-bottom: 3px solid #28a745;
    }
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9998;
}

.custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    z-index: 9999;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.popup-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success .popup-icon {
    background: rgba(40, 167, 69, 0.2);
}

.success .popup-icon::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 12px;
    border-left: 3px solid #28a745;
    border-bottom: 3px solid #28a745;
    transform: rotate(-45deg);
    opacity: 1;
    animation: none;
}

.custom-popup-content {
    color: white;
    margin: 1rem 0;
    font-size: 1rem;
}

.custom-popup .close-popup {
    background: #ff0000;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .custom-popup {
        width: 90%;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .popup-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 12px;
    }
    
    .success .popup-icon::before {
        width: 20px;
        height: 10px;
        border-left: 3px solid #28a745;
        border-bottom: 3px solid #28a745;
    }
}

.error .popup-icon {
    background: rgba(220, 53, 69, 0.2);
}

.error .popup-icon::before,
.error .popup-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 25px;
    background-color: #dc3545;
    top: 12px;
}

.error .popup-icon::before {
    transform: rotate(45deg);
    left: 23px;
}

.error .popup-icon::after {
    transform: rotate(-45deg);
    left: 23px;
}

@media (max-width: 768px) {
    .error .popup-icon::before,
    .error .popup-icon::after {
        height: 22px;
        width: 3px;
        top: 11px;
        left: 21px;
    }
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Message Styles */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    animation: slideIn 0.3s ease-out forwards;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.message.success {
    background-color: #4CAF50;
    color: white;
}

.message.error {
    background-color: #f44336;
    color: white;
}

.message i {
    font-size: 1.2em;
}

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

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

@media (max-width: 768px) {
    .message {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 20px;
    }
} 