:root {
    --color-primary: #d269e6;
    --color-secondary: #ff3131;
    --color-accent: #ffd700;
    --color-accent-blue: #52bdfb;
    --color-accent-teal: #4ddde0;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-darkest: #000;
    --bg-card: #1a1a1a;
    --bg-header: rgba(0, 0, 0, 0.9);
    --text-light: #ffffff;
    --text-medium: #ddd;
    --text-muted: #ccc;
    --text-dim: #aaa;
    --text-dimmer: #888;
    --gradient-primary: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    --gradient-primary-reverse: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    --gradient-text: linear-gradient(90deg, var(--color-accent-teal), var(--color-accent-blue), var(--color-primary), var(--color-secondary), var(--color-accent));
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-xxl: 50px;
    --radius-sm: 5px;
    --radius-md: 12px;
    --radius-lg: 15px;
    --radius-full: 50px;
    --radius-round: 50%;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-xs: 0.8rem;
    --font-sm: 0.9rem;
    --font-md: 1rem;
    --font-lg: 1.2rem;
    --font-xl: 1.5rem;
    --font-xxl: 2rem;
    --font-hero: 3.5rem;
    --font-primary: 'Montserrat', sans-serif;
    --container-width: 1400px;
    --header-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

body:not(.auth-loaded) .logged-in-only,
body:not(.auth-loaded) .logged-out-only {
    visibility: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

header {
    background-color: var(--bg-header);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: var(--spacing-md) 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: var(--spacing-sm) 0;
}

.logo-container:hover {
    transform: scale(1.05);
}

.svg-logo {
    width: 60px;
    height: 60px;
    transition: var(--transition-fast);
}

.logo-text {
    font-weight: 900;
    font-size: var(--font-xl);
    margin-left: var(--spacing-md);
    color: var(--color-accent);
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.logo-container:hover .logo-text {
    color: var(--color-primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--font-md);
    letter-spacing: 0.5px;
}

nav a:hover {
    background: linear-gradient(45deg, rgba(210, 105, 230, 0.2), rgba(255, 49, 49, 0.2));
    color: var(--color-accent);
    transform: translateY(-2px);
}

h1 {
    font-size: var(--font-hero);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-text);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.hero-text {
    font-size: var(--font-lg);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section--dark {
    background-color: var(--bg-darkest);
}

.section--darker {
    background-color: var(--bg-darker);
}

.section-title {
    font-size: var(--font-xxl);
    color: var(--text-light);
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-xl);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    border-radius: var(--radius-sm);
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-lg);
}

.see-all {
    color: var(--color-accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.see-all:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Events Carousel Section */
.carousel-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    position: relative;
}

.section-title-wrapper {
    flex: 1;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-all-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    padding: 20px 0;
}

/* Event Card */
.event-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 420px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}
/* Image Container */
.event-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.event-card:hover .event-image {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.event-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-info {
    flex: 1; /* Takes up remaining space */
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.event-genre {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.event-actions {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    margin-top: auto; /* Pushes the actions to the bottom */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.join-btn {
    flex: 1;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px; /* Fixed height for buttons */
}

.join-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.info-btn {
    width: 42px;
    height: 42px; /* Same height as join button */
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .event-card {
        height: 380px; /* Slightly smaller on mobile */
    }

    .event-image-container {
        height: 180px;
    }

    .event-content {
        min-height: 180px;
    }
}

/* Clean overlay without overlapping badges */
.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 24px 20px 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-quick-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-date i,
.event-location i {
    width: 16px;
    opacity: 0.8;
}

/* Event Badges - Positioned clearly without overlap */
.event-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.event-type {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.event-rating {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #2d3436;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.event-rating i {
    color: #fdcb6e;
}

/* Event Content */
.event-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.event-info {
    flex: 1;
    margin-bottom: 20px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-genre {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
}

/* Event Actions */
.event-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.join-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-btn::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: left 0.5s;
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.join-btn i {
    transition: transform 0.3s ease;
}

.join-btn:hover i {
    transform: rotate(90deg);
}

/* Error and No Events Messages */
.no-events-message,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.no-events-message i,
.error-message i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.no-events-message h3,
.error-message h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.no-events-message p,
.error-message p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-section {
        padding: 60px 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .event-card {
        height: auto;
        min-height: 380px;
    }
    
    .event-image-container {
        height: 200px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .view-all-link {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-badges {
        top: 12px;
        left: 12px;
        right: 12px;
    }
    
    .event-type,
    .event-rating {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

.experience-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: var(--spacing-xxl);
    align-items: center;
}

.experience-image {
    flex: 1 1 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.experience-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    will-change: transform;
}

.experience-image:hover .experience-img {
    transform: scale(1.05);
}

.experience-content {
    flex: 1 1 500px;
}

.experience-item {
    margin-bottom: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
}

.experience-item-icon {
    min-width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--font-lg);
}

.experience-item-title {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.experience-item-description {
    color: var(--text-muted);
    font-size: var(--font-sm);
    line-height: 1.7;
}

/* Base styles remain the same */
.banner-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-darkest);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.banner-content-centered {
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
    padding: 2rem;
}

.banner-gradient-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, 
        #4ddde0 0%,
        #9b6bff 35%,
        #ff6b6b 70%,
        #ffd700 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: capitalize;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .banner-section {
        padding: 4rem 1rem;
        min-height: 50vh;
        flex-direction: column;
        justify-content: center;
    }

    .banner-content-centered {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }

    .banner-gradient-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
}


.get-in-btn {
    display: inline-block;
    background: #d269e6;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(210, 105, 230, 0.4);
}

.get-in-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 105, 230, 0.6);
    background: #e056fd;
}

@media (max-width: 768px) {
    .banner-gradient-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .get-in-btn {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 480px) {
    .banner-gradient-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, var(--color-primary), transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-text-content {
    max-width: 600px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.banner-feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.banner-feature i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.banner-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.banner-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.banner-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.banner-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(210, 105, 230, 0.2),
        rgba(255, 49, 49, 0.2)
    );
    mix-blend-mode: overlay;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--text-light);
}

.btn--outline:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .banner-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .banner-text-content {
        max-width: 100%;
        text-align: center;
    }

    .banner-features {
        justify-content: center;
    }

    .banner-cta {
        justify-content: center;
    }

    .banner-image {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-description {
        font-size: 1.1rem;
    }

    .banner-features {
        grid-template-columns: 1fr;
    }

    .banner-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn--large {
        width: 100%;
        text-align: center;
    }
}

.event-carousel {
    display: flex;
    gap: 1.2rem;
    margin: 0 -1.2rem;
    padding: 1rem 1.2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.event-carousel::-webkit-scrollbar {
    display: none;
}

.event-card {
    min-width: 280px;
    background: rgba(20, 20, 20, 0.4);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e056fd;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.event-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 1;
}

.event-rating i {
    color: #ffd700;
    font-size: 0.8rem;
}

.event-content {
    padding: 1.2rem;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.event-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.event-detail i {
    color: #00b8ff;
    font-size: 0.9rem;
    width: 16px;
}

.event-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-join {
    flex: 1;
    background: #e056fd;
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-more {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background: #d147ee;
}

.btn-more:hover {
    background: rgba(255, 255, 255, 0.15);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .event-card {
        min-width: 260px;
    }
    
    .event-image {
        height: 160px;
    }
    
    .event-content {
        padding: 1rem;
    }
}

.event-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e056fd;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.event-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 1;
}

.event-rating i {
    color: #ffd700;
    font-size: 0.8rem;
}

.event-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-genre {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.event-detail i {
    min-width: 16px;
    color: var(--color-primary);
}

.event-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.btn-join {
    background: var(--color-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-join:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-more {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-more:hover {
    background: rgba(255, 255, 255, 0.1);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .banner {
        padding: 1rem 0;
    }

    .event-card {
        min-width: 280px;
    }

    .event-image-wrapper {
        height: 180px;
    }
}

.testimonial-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    margin-top: 40px;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    padding: var(--spacing-lg);
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    object-fit: cover;
    margin-right: var(--spacing-md);
    border: 3px solid var(--color-primary);
}

.testimonial-user {
    flex-grow: 1;
}

.testimonial-name {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.testimonial-location {
    font-size: var(--font-sm);
    color: var(--text-dim);
}

.testimonial-rating {
    display: flex;
    margin-bottom: var(--spacing-md);
    color: var(--color-accent);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: var(--font-md);
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(210, 105, 230, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

footer {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xxl);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.footer-logo-text {
    font-weight: 900;
    font-size: var(--font-lg);
    color: var(--color-accent);
    margin-left: var(--spacing-sm);
}

.footer-about {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-size: var(--font-lg);
    font-weight: bold;
    margin-bottom: var(--spacing-lg);
    color: var(--color-accent);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-teal), var(--color-primary));
    border-radius: var(--radius-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 20px;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: var(--text-dimmer);
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-sm);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: fadeInUp 0.5s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    color: var(--text-dim);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-modal:hover {
    color: var(--color-primary);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

.modal-section {
    margin-bottom: var(--spacing-lg);
}

.modal-section-title {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.modal-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.modal-text {
    color: var(--text-medium);
    font-size: var(--font-md);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.modal-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.modal-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.modal-list li::before {
    content: '•';
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.benefits-highlight {
    font-weight: 700;
    color: var(--color-accent-blue);
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background: var(--bg-darkest);
}

.featured-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.featured-slide {
    position: absolute;
    padding: 1rem;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

video.slide-background {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

video:not([playsinline]) .fallback-image {
    display: block;
}

.gradient-overlay {
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.8) 100%
    );
    mix-blend-mode: multiply;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.8) 100%
    );
    z-index: 2;
}

.featured-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.featured-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 90%;
    height: auto;
    min-height: 400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    gap: 2rem;
}

.featured-slide-content-one {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 90%;
    height: auto;
    min-height: 400px;
    max-height: 500px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    gap: 2rem;
}

.featured-slide-image {
    flex: 0 0 50%;
    position: relative;
    transform: translateX(-100px);
    opacity: 0;
    transition: all 1s ease 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.featured-slide-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 0 3px rgba(210, 105, 230, 0.2),
                0 0 0 6px rgba(255, 49, 49, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    padding: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(0deg);
}

.featured-slide-image img:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.15),
                0 0 0 3px rgba(210, 105, 230, 0.3),
                0 0 0 6px rgba(255, 49, 49, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.active .featured-slide-image {
    transform: translateX(0);
    opacity: 1;
}

.featured-slide-text {
    flex: 0 0 45%;
    transform: translateX(100px);
    opacity: 0;
    transition: all 1s ease 0.5s;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

.active .featured-slide-text {
    transform: translateX(0);
    opacity: 1;
}

.featured-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-align: left;
    background: linear-gradient(45deg, var(--color-accent), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.featured-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: left;
}

.slide-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
    width: 100%;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.slide-actions {
    display: flex;
    gap: 15px;
    margin-top: 0.5rem;
    width: 100%;
}

.slide-btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: white;
    background: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .featured-slide-content {
        width: 95%;
        padding: 2rem 3rem;
        gap: 2.5rem;
        min-height: 400px;
    }
}

@media (max-width: 1024px) {
    .featured-slide-content {
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 1.5rem;
        min-height: auto;
    }

    .featured-slide-text {
        padding: 0.5rem 0;
        gap: 0.8rem;
    }

    .slide-meta {
        gap: 15px;
        margin-bottom: 0.8rem;
    }

    .slide-actions {
        gap: 12px;
        margin-top: 0.3rem;
    }

    .featured-slide-image {
        padding: 1rem;
    }

    .featured-slide-image img {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .featured-slide-content {
        padding: 1rem;
        width: 98%;
    }

    .featured-slide-image {
        padding: 0.5rem;
    }

    .featured-slide-image img {
        max-height: 300px;
    }

    .featured-title {
        font-size: 2.5rem;
    }

    .featured-subtitle {
        font-size: 1.2rem;
    }

    .slide-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    video.slide-background {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }
}

.merch-section {
    padding: 4rem 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.merch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.see-all {
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.see-all:hover {
    text-decoration: underline;
}

.merch-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.merch-carousel::-webkit-scrollbar {
    display: none;
}

.merch-card {
    min-width: 250px;
    background: #1e1e1e;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.merch-card:hover {
    transform: translateY(-10px);
}

.merch-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.merch-details {
    padding: 1.2rem;
}

.merch-category {
    display: inline-block;
    background: rgba(210, 105, 230, 0.2);
    color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.merch-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.merch-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.old-price {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    color: white;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.buy-btn:hover {
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
}

.benefits-visual {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 8px 12px;
    border-radius: 6px;
}

.benefit-icon {
    font-size: 1.3em;
    color: #ffd700;
}

.visual-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.visual-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.visual-icon {
    background: linear-gradient(135deg, #4ddde0, #d269e6, #ff3131);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visual-content {
    flex: 1;
}

.modal-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 400px;
    height: auto;
    flex-shrink: 0;
}

/* Alternate the layout for visual sections */
.visual-section:nth-child(even) {
    flex-direction: row-reverse;
}

.merch-showcase {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.merch-item {
    background: rgba(0,0,0,0.7);
    padding: 10px;
    border-radius: 8px;
    width: 180px;
}

.merch-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.merch-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.merch-price {
    color: #ffd700;
    font-weight: bold;
}

#logout-btn {
    cursor: pointer;
}

.logout-confirm {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: fadeOut 3s forwards;
    display: none;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

#logout-confirmation {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}

/* Add these classes if you don't have them already */
.logged-in-only, .logged-out-only {
    transition: display 0.3s ease;
}

/* Service Mode Overlay Styles */
.service-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    text-align: center;
}

.service-mode-content {
    max-width: 600px;
}

.service-mode-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.service-mode-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4ddde0, #d269e6, #ff3131);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.service-mode-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-mode-timer {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-info {
    margin-top: 30px;
    font-size: 1rem;
}

.pulse-btn {
    animation: pulse 1.5s infinite;
    background-color: #ff3366 !important;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid white !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.mandatory-modal {
    display: flex !important; /* Always displayed */
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.5s ease-out;
    overflow: hidden;
}

@keyframes modalFadeIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.pulse-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    animation: pulseBorder 2s infinite;
    pointer-events: none;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.vip-btn {
    animation: pulseBtn 1.5s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
}

.vip-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

@keyframes pulseBtn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(255, 71, 87, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

/* Countdown timer styling */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.timer-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
    min-width: 70px;
    text-align: center;
}

.timer-block span {
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.timer-label {
    font-size: 12px !important;
    opacity: 0.8;
    margin-top: 5px;
}

.centered-slide-content {
    margin: 0 auto;
    background: rgba(30, 20, 50, 0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    max-width: 540px;
    width: 90%;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.featured-slide-text {
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (max-width: 700px) {
    .centered-slide-content {
        max-width: 98vw;
        padding: 1.2rem 0.5rem;
    }
}

.hero-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 10;
    pointer-events: none;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    opacity: 0.7;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hero-arrow.left {
    left: 20px;
}

.hero-arrow.right {
    right: 20px;
}

.hero-arrow:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow.left {
        left: 10px;
    }

    .hero-arrow.right {
        right: 10px;
    }
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-indicator {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-indicator.active {
    width: 50px;
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-arrows {
        padding: 0 1rem;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-indicators {
        bottom: 20px;
        padding: 8px 12px;
    }
    
    .hero-indicator {
        width: 25px;
        height: 3px;
    }
    
    .hero-indicator.active {
        width: 40px;
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.centered-slide-content {
    background: rgba(13, 12, 34, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.centered-slide-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(210, 105, 230, 0.2);
}

.slide-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.featured-title.gradient-text {
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: none;
}

.benefits-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item.animate-hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item.animate-hover:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(210, 105, 230, 0.3);
}

.benefit-icon.glow-effect {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.benefit-icon.glow-effect i {
    font-size: 24px;
    color: white;
    z-index: 2;
}

.glow-lines {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, transparent 40%, var(--color-accent));
    animation: rotate 4s linear infinite;
}

.benefit-item span {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}

.pulse-effect {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.pulse-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(210, 105, 230, 0.3);
}

.pulse-effect i {
    transition: transform 0.3s ease;
}

.pulse-effect:hover i {
    transform: translateX(5px);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .centered-slide-content {
        padding: 2rem 1.5rem;
    }

    .featured-title.gradient-text {
        font-size: 2.5rem;
    }

    .benefits-visual {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .benefit-item.animate-hover {
        padding: 1rem;
    }

    .benefit-icon.glow-effect {
        width: 50px;
        height: 50px;
    }

    .benefit-item span {
        font-size: 1rem;
    }
}

.experience-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-darkest);
    position: relative;
    overflow: hidden;
}
.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, var(--color-primary), transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.experience-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.experience-block:hover {
    transform: translateY(-10px);
    border-color: rgba(210, 105, 230, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.experience-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.experience-block:hover .experience-image {
    transform: scale(1.1);
}
.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
}
.experience-block:hover .experience-overlay {
    opacity: 1;
}
.experience-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}
.experience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.experience-description {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.experience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
.experience-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}
.experience-feature i {
    color: var(--color-primary);
}
.experience-feature:hover {
    background: rgba(210, 105, 230, 0.1);
    transform: translateY(-2px);
}
.experience-cta {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}
.experience-block:hover .experience-cta {
    opacity: 1;
    transform: translateY(0);
}
.experience-cta i {
    transition: transform 0.3s ease;
}
.experience-block:hover .experience-cta:hover i {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 1.5rem;
    }
    .experience-image-wrapper {
        height: 200px;
    }
    .experience-content {
        padding: 1.5rem;
    }
    .experience-title {
        font-size: 1.3rem;
    }
}
@media (max-width: 480px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .experience-content {
        padding: 1.25rem;
    }
}
.communities-section {
    padding: 80px 0;
    background: var(--bg-darkest);
    position: relative;
    overflow: hidden;
}

.communities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, var(--color-primary), transparent 70%);
    opacity: 0.05;
    pointer-events: none;
}

.communities-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.communities-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.communities-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
}
.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.community-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    height: 320px;
}

.community-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(210, 105, 230, 0.2);
}

.community-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.community-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.community-card:hover .community-image {
    transform: scale(1.1);
}

.community-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.4s ease;
}

.community-card:hover .community-overlay {
    background: linear-gradient(
        to top,
        rgba(210, 105, 230, 0.95) 0%,
        rgba(210, 105, 230, 0.7) 50%,
        rgba(210, 105, 230, 0.4) 100%
    );
}

.community-content {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.community-card:hover .community-content {
    transform: translateY(0);
    opacity: 1;
}

.community-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.community-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.stat i {
    color: var(--color-accent);
}

.join-community-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--color-primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.join-community-btn:hover {
    transform: translateX(5px);
    background: var(--color-accent);
    color: white;
}

.community-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    z-index: 2;
}

.community-badge i {
    color: var(--color-accent);
}

.no-communities-message,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-communities-message i,
.error-message i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.no-communities-message h3,
.error-message h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.no-communities-message p,
.error-message p {
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .communities-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .community-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .communities-header .section-title {
        font-size: 2.5rem;
    }

    .communities-header .section-subtitle {
        font-size: 1.1rem;
    }

    .communities-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .community-card {
        height: 250px;
    }

    .community-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .communities-grid {
        grid-template-columns: 1fr;
    }

    .community-card {
        height: 220px;
    }

    .community-overlay {
        padding: 20px;
    }
}


   /* Pop-up Styles */
        .community-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .community-popup.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 40px 30px;
            max-width: 450px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.8) translateY(50px);
            transition: all 0.3s ease;
        }

        .community-popup.show .popup-content {
            transform: scale(1) translateY(0);
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 20px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .popup-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 35px;
            color: white;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .popup-title {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }

        .popup-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .popup-features {
            display: flex;
            justify-content: space-around;
            margin: 25px 0;
            flex-wrap: wrap;
            gap: 15px;
        }

        .popup-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
            font-size: 12px;
        }

        .popup-feature i {
            font-size: 20px;
            margin-bottom: 5px;
            color: #ffd700;
        }

        .popup-cta-btn {
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            margin-bottom: 15px;
        }

        .popup-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
        }

        .popup-timer {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 15px;
        }

        .timer-bar {
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            margin-top: 10px;
            overflow: hidden;
        }

        .timer-progress {
            height: 100%;
            background: linear-gradient(90deg, #ffd700, #ff6b6b);
            width: 100%;
            transition: width 0.1s linear;
            border-radius: 2px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .popup-content {
                padding: 30px 20px;
                margin: 20px;
            }

            .popup-title {
                font-size: 24px;
            }

            .popup-subtitle {
                font-size: 14px;
            }

            .popup-features {
                gap: 10px;
            }

            .popup-feature {
                font-size: 11px;
            }

            .popup-cta-btn {
                padding: 12px 25px;
                font-size: 14px;
            }
        }
        
          .concert-journey-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 25%, #16213e 50%, #0f0f0f 100%);
            position: relative;
            overflow: hidden;
            margin: 40px 0;
        }

        .concert-journey-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(77, 221, 224, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(210, 105, 230, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(255, 49, 49, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .journey-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .journey-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .journey-main-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #4ddde0, #52bdfb, #d269e6, #ff3131, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .journey-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4ddde0, #52bdfb, #d269e6, #ff3131, #ffd700);
            border-radius: 2px;
        }

        .journey-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            font-weight: 400;
        }

     /* Enhanced Service Fee Notice Styles - Mobile Perfect */
.service-notice {
    width: 95%;
    max-width: 1200px;
    margin: 3rem auto;
    background: linear-gradient(135deg, 
        rgba(77, 221, 224, 0.15) 0%, 
        rgba(210, 105, 230, 0.15) 25%, 
        rgba(255, 49, 49, 0.15) 50%, 
        rgba(255, 215, 0, 0.15) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notice-background-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(77, 221, 224, 0.3), 
        rgba(210, 105, 230, 0.3), 
        transparent);
    animation: shimmerWave 4s ease-in-out infinite;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.notice-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.notice-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #4ddde0, #d269e6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 15px rgba(77, 221, 224, 0.6));
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.notice-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notice-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.5px;
}

.notice-main {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.4;
}

.notice-right {
    flex-shrink: 0;
}

/* Keyframe Animations */
@keyframes shimmerWave {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(77, 221, 224, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(77, 221, 224, 0.8));
    }
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    .service-notice {
        width: 92%;
        margin: 2rem auto;
        padding: 1.8rem 1.5rem;
        border-radius: 20px;
        backdrop-filter: blur(20px);
    }
    
    .notice-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        text-align: left;
    }
    
    .notice-left {
        width: 100%;
        gap: 1.2rem;
        align-items: flex-start;
    }
    
    .notice-icon {
        font-size: 2.5rem;
        margin-top: 0.2rem;
    }
    
    .notice-text {
        flex: 1;
        gap: 0.7rem;
    }
    
    .notice-highlight {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .notice-main {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .notice-right {
        width: 100%;
        margin-top: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .service-notice {
        width: 90%;
        margin: 1.5rem auto;
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
    }
    
    .notice-content {
        gap: 1.2rem;
    }
    
    .notice-left {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .notice-icon {
        font-size: 2.2rem;
        margin-top: 0;
        align-self: center;
    }
    
    .notice-text {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .notice-highlight {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .notice-main {
        font-size: 0.95rem;
        text-align: center;
        max-width: 100%;
    }
    
    .notice-right {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 0.3rem;
    }
    
    /* Optimize shimmer effect for mobile */
    .notice-background-effect {
        animation-duration: 5s;
    }
}

@media screen and (max-width: 360px) {
    .service-notice {
        width: 88%;
        margin: 1.2rem auto;
        padding: 1.3rem 1rem;
        border-radius: 15px;
    }
    
    .notice-icon {
        font-size: 2rem;
    }
    
    .notice-highlight {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    .notice-main {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .notice-content {
        gap: 1rem;
    }
    
    .notice-left {
        gap: 0.8rem;
    }
    
    .notice-text {
        gap: 0.6rem;
    }
}

/* Landscape mobile optimization */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .service-notice {
        margin: 1rem auto;
        padding: 1.2rem 1.5rem;
    }
    
    .notice-content {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
    
    .notice-left {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .notice-text {
        text-align: left;
        align-items: flex-start;
    }
    
    .notice-icon {
        font-size: 2rem;
    }
    
    .notice-highlight {
        font-size: 1rem;
    }
    
    .notice-main {
        font-size: 0.9rem;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .service-notice {
        transition: transform 0.2s ease;
    }
    
    .service-notice:active {
        transform: scale(0.98);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .notice-icon {
        filter: drop-shadow(0 0 10px rgba(77, 221, 224, 0.4));
    }
    
    .notice-highlight {
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .service-notice {
        transition: none;
    }
    
    .notice-background-effect {
        animation: none;
    }
    
    .notice-icon {
        animation: none;
    }
}

/* Dark mode optimization */
@media (prefers-color-scheme: dark) {
    .service-notice {
        background: linear-gradient(135deg, 
            rgba(77, 221, 224, 0.2) 0%, 
            rgba(210, 105, 230, 0.2) 25%, 
            rgba(255, 49, 49, 0.2) 50%, 
            rgba(255, 215, 0, 0.2) 100%);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}
            .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff3131, #ffd700);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow:
    0 10px 25px rgba(255, 49, 49, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 90vw;
  text-align: center;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow:
    0 15px 35px rgba(255, 49, 49, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:active {
  transform: scale(0.96);
  box-shadow:
    0 8px 20px rgba(255, 49, 49, 0.2);
}

.button-icon {
  font-size: 1.3rem;
}

.button-glow {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
  z-index: -1;
  transition: opacity 0.4s ease;
}

.cta-button:hover .button-glow {
  opacity: 0.3;
}

.notice-right {
  text-align: center;
  margin-top: 2rem;
}

/* ✅ Mobile-Optimized Styling */
@media screen and (max-width: 600px) {
  .cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }

  .button-icon {
    font-size: 1.1rem;
  }

  .button-text {
    font-size: 1rem;
  }
}


        .service-notice:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 35px 70px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border-color: rgba(77, 221, 224, 0.4);
        }

        /* Horizontal Timeline container */
        .timeline-container {
            width: 95%;
            max-width: 1400px;
            margin: 4rem auto;
            position: relative;
            padding: 3rem 0;
            overflow-x: auto;
            overflow-y: visible;
        }

        .timeline-wrapper {
            display: flex;
            align-items: center;
            position: relative;
            min-width: 1200px;
            padding: 2rem 0;
        }

        /* Horizontal Timeline line */
      .timeline-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 60px 40px;
            position: relative;
            min-height: 600px;
        }

        .timeline-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .timeline-line {
            position: absolute;
            bottom: 80px;
            left: 10%;
            right: 10%;
            height: 6px;
            background: linear-gradient(90deg, #4ddde0, #d269e6, #ff3131);
            border-radius: 3px;
            box-shadow: 0 0 20px rgba(77, 221, 224, 0.5);
            z-index: 1;
        }

        .timeline-items-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            width: 100%;
            position: relative;
            z-index: 2;
            gap: 2rem;
            padding: 0 2rem;
            height: 100%;
        }

        .timeline-item {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            position: relative;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            width: 320px;
            height: 400px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            margin-bottom: 120px;
            overflow: hidden;
        }

        .timeline-item:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 30px 60px rgba(77, 221, 224, 0.3);
            border-color: #4ddde0;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            bottom: -75px;
            left: 50%;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #4ddde0, #d269e6);
            border: 4px solid #ffffff;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 3;
            box-shadow: 0 0 25px rgba(77, 221, 224, 0.8);
            transition: all 0.3s ease;
        }

        .timeline-item:hover::after {
            transform: translateX(-50%) scale(1.3) rotate(180deg);
            box-shadow: 0 0 35px rgba(77, 221, 224, 1);
        }

        .step-number {
            position: absolute;
            top: -15px;
            right: 15px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #ff3131, #ffd700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            color: white;
            box-shadow: 0 12px 25px rgba(255, 49, 49, 0.5);
            transition: all 0.3s ease;
            z-index: 4;
        }

        .timeline-item:hover .step-number {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 20px 40px rgba(255, 49, 49, 0.7);
        }

        .timeline-title {
            font-size: 1.3rem;
            color: #ffd700;
            margin-bottom: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            line-height: 1.3;
        }

        .timeline-title .emoji {
            font-size: 1.8rem;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
            flex-shrink: 0;
        }

        .timeline-content {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            font-weight: 400;
            flex-grow: 1;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 8;
            -webkit-box-orient: vertical;
        }

        .timeline-content strong {
            color: #ffd700;
            font-weight: 700;
        }

        .cta-button {
            background: linear-gradient(45deg, #4ddde0, #d269e6);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
            box-shadow: 0 8px 20px rgba(77, 221, 224, 0.3);
            flex-shrink: 0;
            align-self: flex-start;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(77, 221, 224, 0.5);
        }

        @media screen and (max-width: 1024px) {
            .timeline-container {
                overflow-x: auto;
                padding: 40px 20px;
            }

            .timeline-wrapper {
                min-width: 1000px;
            }

            .timeline-line {
                left: 5%;
                right: 5%;
            }

            .timeline-items-container {
                padding: 0 1rem;
            }

            .timeline-item {
                width: 280px;
                height: 320px;
                padding: 1.5rem;
            }

            .timeline-title {
                font-size: 1.4rem;
            }

            .timeline-content {
                font-size: 0.9rem;
            }
        }

        @media screen and (max-width: 768px) {
            .timeline-wrapper {
                min-width: 900px;
            }

            .timeline-item {
                width: 260px;
                height: 360px;
                margin-bottom: 80px;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .timeline-item,
            .timeline-item::before,
            .step-number,
            .cta-button {
                transition: none !important;
            }
        }
         /* Custom Scrollbar Styles */
        .timeline-container::-webkit-scrollbar {
            height: 12px;
        }

        .timeline-container::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
        }

        .timeline-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #4ddde0, #d269e6, #ff3131);
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(77, 221, 224, 0.5);
            transition: all 0.3s ease;
        }

        .timeline-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, #5ee5e8, #da75ec, #ff4444);
            box-shadow: 0 0 20px rgba(77, 221, 224, 0.8);
        }

        .timeline-container::-webkit-scrollbar-corner {
            background: rgba(0, 0, 0, 0.3);
        }

        /* Firefox scrollbar */
        .timeline-container {
            scrollbar-width: thin;
            scrollbar-color: #4ddde0 rgba(0, 0, 0, 0.3);
        }

        
    .concierge-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    background: #111; /* fallback in case background image/video isn't there */
    padding: 2rem;
  }

  .concierge-glass-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 4rem;
    box-shadow: 0 0 60px rgba(77, 221, 224, 0.1);
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
  }

  .blurred-heading {
    font-size: 2.8rem;
    font-weight: 900;
    color: #4ddde0;
    
    text-shadow: 0 0 20px #4ddde099, 0 0 40px #4ddde055;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .clear-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    z-index: 2;
    position: relative;
  }

  @media screen and (max-width: 600px) {
    .blurred-heading {
      font-size: 2rem;
    }

    .clear-subtitle {
      font-size: 1rem;
    }

    .concierge-glass-card {
      padding: 2rem;
    }
  }