/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-accent: #d8fe00;
    --color-accent-hover: #c4e600;
    --color-bg-primary: #050505;
    --color-bg-secondary: #080808;
    --color-bg-tertiary: #111;
    --color-bg-card: #222;
    --color-border: #333333;
    --color-text-primary: #ffffff;
    --color-text-secondary: #cccccc;
    --color-text-muted: #888888;
    --color-text-dark: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.page-container {
    min-height: 100vh;
    background: var(--color-bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-accent {
    color: var(--color-accent);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    height: 80px;
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.logo-link:active {
    transform: scale(0.95);
}

.logo {
    height: 2rem;
    object-fit: contain;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-button {
    display: none;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid #333;
    background: transparent;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-button:hover {
    color: var(--color-text-primary);
    border-color: var(--color-accent);
}

.user-avatar {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--color-accent);
    border-radius: 9999px;
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.3s;
    white-space: nowrap;
}

.user-avatar:hover {
    background: var(--color-accent-hover);
    transform: scale(1.05);
}

.mobile-menu-button {
    display: block;
    padding: 0.5rem;
    color: var(--color-text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #050505;
    border-bottom: 1px solid #333333;
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 99;
}

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

.mobile-menu-link {
    padding: 0.75rem 1rem;
    color: #cccccc;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: #111;
    color: var(--color-accent);
}

.header-spacer {
    height: 80px;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.6), transparent, var(--color-bg-primary));
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 80rem;
    margin: 4rem auto 0;
}

.hero-title {
    color: var(--color-text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-size: clamp(3rem, 7vw, 6rem);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(216, 254, 0, 0.4);
}

.hero-button:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 0 35px rgba(216, 254, 0, 0.6);
    transform: translateY(-2px);
}

.hero-button:active {
    transform: scale(0.95);
}

/* Events Section */
.events-section {
    padding: 5rem 1.5rem;
    background: #050505;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #888;
    font-size: 1rem;
}

.view-all-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.view-all-link:hover {
    gap: 0.75rem;
}

.events-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #333333 transparent;
}

.events-carousel::-webkit-scrollbar {
    height: 8px;
}

.events-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.events-carousel::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

.event-card {
    min-width: 280px;
    max-width: 300px;
    height: 420px;
    background: #111;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    flex-shrink: 0;
    border: 2px solid var(--color-accent);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(216, 254, 0, 0.15);
}

.event-card .event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.event-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.event-date {
    font-size: 0.7rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.event-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-location {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-location svg {
    color: #888;
    flex-shrink: 0;
}

.event-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
    width: fit-content;
}

.event-details-btn:hover {
    background: var(--color-accent-hover);
    transform: scale(1.05);
}

.event-card.skeleton {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #050505;
    overflow: hidden;
    position: relative;
}

.services-header {
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    text-align: center;
}

.services-carousel-wrapper {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-accent);
}

.carousel-arrow.prev {
    left: 1rem;
}

.carousel-arrow.next {
    right: 1rem;
}

.services-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px;
    padding: 0 1rem;
    position: relative;
}

.service-card {
    position: absolute;
    width: 90%;
    max-width: 700px;
    height: 550px;
    border-radius: 3rem;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    background: #111;
    box-shadow: 0 40px 100px rgba(216, 254, 0, 0.1);
    cursor: grab;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.service-card:active {
    cursor: grabbing;
}

.service-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.4), transparent);
}

.service-content {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(216, 254, 0, 0.4);
}

.service-badge {
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 0.75rem;
    display: block;
}

.service-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 0.9;
}

.service-description {
    color: #aaa;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 28rem;
    font-weight: 300;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-accent);
    color: #000;
    font-weight: 900;
    font-size: 0.875rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    width: fit-content;
    transition: background 0.3s;
}

.service-button:hover {
    background: var(--color-text-primary);
}

.carousel-progress {
    max-width: 28rem;
    margin: 4rem auto 0;
    padding: 0 1.5rem;
}

.progress-bar {
    height: 4px;
    width: 100%;
    background: #111;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-accent);
    width: 20%;
    box-shadow: 0 0 15px rgba(216, 254, 0, 0.8);
    transition: width 0.3s;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #444;
}

.progress-label-center {
    color: var(--color-accent);
}

/* Featured Artists Section */
.featured-artists-section {
    padding: 5rem 1.5rem;
    background: #050505;
}

.artists-grid-home {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.artist-card-home {
    background: #111;
    border: 1px solid #333333;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    flex-shrink: 0;
}

.artist-card-home:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(216, 254, 0, 0.1);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #222;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.artist-avatar svg {
    width: 36px;
    height: 36px;
    color: #666;
}

.artist-avatar .live-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--color-accent);
    color: #000;
    font-size: 0.5rem;
    font-weight: 900;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
}

.artist-card-home h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-primary);
    font-weight: 700;
}

.artist-genres {
    color: var(--color-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.artist-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(216, 254, 0, 0.1);
    border: 1px solid rgba(216, 254, 0, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.view-all-card {
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.view-all-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.view-all-circle svg {
    color: var(--color-text-secondary);
}

.view-all-card:hover .view-all-circle {
    border-color: var(--color-accent);
}

.view-all-card:hover .view-all-circle svg {
    color: var(--color-accent);
}

/* Merchandise Section */
.merch-section {
    padding: 5rem 1.5rem;
    background: #050505;
}

.merch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.merch-card {
    background: #111;
    border: 1px solid #333333;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.merch-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(216, 254, 0, 0.1);
}

.merch-image-wrapper {
    width: 100%;
    height: 200px;
    background: #222;
    position: relative;
    overflow: hidden;
}

.merch-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merch-info {
    padding: 1.5rem;
}

.merch-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.merch-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* CTA Section */
.cta-section-home {
    padding: 6rem 1.5rem;
    background: #080808;
    border-top: 1px solid #222;
}

.cta-content-home {
    text-align: center;
}

.cta-title-home {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
}

.cta-button-home {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button-home:hover {
    background: var(--color-accent-hover);
}

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid #333333;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    height: 2rem;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888;
    font-size: 0.875rem;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #333333;
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

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

/* Responsive Design */
@media (min-width: 640px) {
    .lang-button {
        display: flex;
    }
    
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .logo {
        height: 2.5rem;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .user-avatar {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .view-all-link {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .service-card {
        height: 620px;
    }
    
    .service-content {
        padding: 4rem;
    }
    
    .merch-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .merch-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
