/* ================================================
   THE GALLY MUSIC - COMPLETE STYLESHEET
   Merged and optimized for best performance
   ================================================ */

/* =================================
   1. BASE STYLES & VARIABLES
   ================================= */

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =================================
   2. HERO SECTION
   ================================= */

.hero {
    min-height: 100vh; /* Always fill viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    touch-action: none;
    pointer-events: all;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1.2s ease;
    max-width: 100%;
    padding: 0 0.1rem;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* =================================
   3. HERO NAVIGATION
   ================================= */

.hero-nav {
    display: flex;
    justify-content: center;
    gap: clamp(0.6rem, 2vw, 1.5rem); /* Fluid gap: 0.6rem â 1.5rem */
    margin-top: clamp(1.5rem, 4vw, 3rem); /* Fluid margin: 1.5rem â 3rem */
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
    max-width: 100%;
}

.hero-nav::-webkit-scrollbar {
    display: none;
}

.hero-nav-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.2rem, 3vw, 2.5rem); /* Fluid padding */
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1.2rem); /* Fluid font: 0.8rem â 1.2rem */
    letter-spacing: clamp(1.5px, 0.4vw, 3px); /* Fluid spacing: 1.5px â 3px */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex-shrink: 0;
    white-space: nowrap;
}

.hero-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-nav-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    
}

.hero-nav-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-nav-btn span {
    position: relative;
    z-index: 1;
}

/* Desktop Default: Hide More, Show About/Contact */
.hero-nav-mobile-only {
    display: none;
}

.hero-nav-desktop-only {
    display: flex;
}

/* Old Hero Menu (if still used) */
.hero-menu {
    display: flex;
    justify-content: center;
    gap: clamp(0.8rem, 2.5vw, 2rem); /* Fluid gap: 0.8rem â 2rem */
    list-style: none;
    flex-wrap: wrap;
}

.hero-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: clamp(1px, 0.3vw, 2px); /* Fluid spacing: 1px â 2px */
    text-transform: uppercase;
    font-size: clamp(0.85rem, 1.3vw, 1rem); /* Fluid font: 0.85rem â 1rem */
    padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(1.2rem, 2vw, 1.5rem); /* Fluid padding */
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-menu a:hover,
.hero-menu a.active {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* =================================
   4. SECTIONS
   ================================= */

section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: none;
    overflow-x: hidden;
}

section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    letter-spacing: 4px;
}

/* =================================
   5. CONTENT FILTERS (ARTISTS)
   ================================= */

.content-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    padding: 0 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.content-filters::-webkit-scrollbar {
    display: none;
}

.content-filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1.2rem, 3vw, 2rem);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 0;
}

.content-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.content-filter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.content-filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.content-filter-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.content-filter-btn span {
    position: relative;
    z-index: 1;
}

/* =================================
   ADAPTIVE ARTIST FILTERS
   Mobile-First Design
   ================================= */

/* Filter wrapper - controls mobile vs desktop display */
.artist-filters-wrapper {
    margin-bottom: 3rem;
}

/* Mobile: Single trigger button */
.mobile-filter-trigger {
    display: flex;
    justify-content: center;
}

.mobile-filter-trigger .content-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.filter-chevron {
    transition: transform 0.3s ease;
}

.mobile-filter-trigger .content-filter-btn[aria-expanded="true"] .filter-chevron {
    transform: rotate(180deg);
}

/* Desktop: Horizontal chips (hidden on mobile) */
.desktop-filter-chips {
    display: none;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    padding: 0 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
}

.desktop-filter-chips::-webkit-scrollbar {
    display: none;
}

/* =================================
   MOBILE BOTTOM SHEET
   ================================= */

.category-bottom-sheet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-bottom-sheet.active {
    pointer-events: all;
    opacity: 1;
}

/* Backdrop */
.bottom-sheet-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-bottom-sheet.active .bottom-sheet-backdrop {
    opacity: 1;
}

/* Bottom sheet content */
.bottom-sheet-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-dark);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    max-height: 70vh;
    overflow: hidden; /* Prevent content overflow */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.category-bottom-sheet.active .bottom-sheet-content {
    transform: translateY(0);
}

/* Bottom sheet header */
.bottom-sheet-header {
    position: relative;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-sheet-handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.bottom-sheet-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

.bottom-sheet-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.bottom-sheet-close:hover {
    color: var(--text-primary);
}

.bottom-sheet-close svg {
    display: block;
}

/* Bottom sheet body */
.bottom-sheet-body {
    padding: 1.5rem 1.5rem 2.5rem; /* Increased top and bottom padding */
    max-height: calc(70vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on IE/Edge */
}

/* Hide scrollbar on webkit browsers */
.bottom-sheet-body::-webkit-scrollbar {
    display: none;
}

/* Category option (matches pill button style) */
.category-option {
    display: block; /* Ensure proper block layout */
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem; /* Increased spacing */
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-sizing: border-box; /* Ensure border is included in width */
}

.category-option::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.category-option:active::before {
    width: 300px;
    height: 300px;
}

.category-option span {
    position: relative;
    z-index: 1;
    display: block;
}

.category-option:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
}

.category-option.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.category-option:last-child {
    margin-bottom: 0;
}

/* Desktop breakpoint */
@media (min-width: 768px) {
    /* Hide mobile trigger */
    .mobile-filter-trigger {
        display: none;
    }
    
    /* Show desktop chips */
    .desktop-filter-chips {
        display: flex;
    }
    
    /* Hide bottom sheet on desktop */
    .category-bottom-sheet {
        display: none;
    }
}

/* =================================
   RESPONSIVE CHIP SIZING BY SCREEN WIDTH
   Desktop kademeli küçülme breakpoint'leri
   ================================= */

/* Extra large screens (1440px+) - Maximum size */
@media (min-width: 1440px) {
    .desktop-filter-chips .content-filter-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Large screens (1200px-1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .desktop-filter-chips .content-filter-btn {
        padding: 0.75rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Medium-large screens (1024px-1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .desktop-filter-chips .content-filter-btn {
        padding: 0.7rem 1.6rem;
        font-size: 0.92rem;
    }
    
    .desktop-filter-chips {
        gap: 1.2rem;
    }
}

/* CRITICAL RANGE (768px-1023px) - Chip'lerin kaybolduğu aralık */
@media (min-width: 768px) and (max-width: 1023px) {
    .desktop-filter-chips .content-filter-btn {
        padding: 0.65rem 1.4rem;
        font-size: 0.88rem;
        letter-spacing: 1.5px;
    }
    
    .desktop-filter-chips {
        gap: 1rem;
        overflow-x: auto;
        justify-content: center;
        padding: 0 1.5rem;
    }
}

/* Narrow tablets/landscape phones (768px-900px) */
@media (min-width: 768px) and (max-width: 900px) {
    .desktop-filter-chips .content-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .desktop-filter-chips {
        gap: 0.8rem;
    }
}

/* Old Filter Section (if still used) */
.filter-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
}

.filter-section::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-radius: 50px;
    flex-shrink: 0;
    white-space: nowrap;
}

.filter-btn:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* =================================
   6. SEARCH BAR
   ================================= */

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 1rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: #a0a0a0;
}

/* =================================
   7. ARTIST CARDS
   ================================= */

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover img {
    transform: scale(1.05);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.artist-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0;
}

/* =================================
   8. EVENT FILTERS (ADVANCED)
   ================================= */

/* =================================
   8. EVENTS FILTERS
   ================================= */

/* =================================
   8. EVENTS FILTERS (NEW DESIGN)
   Desktop: Side by side layout
   Mobile: Bottom sheet
   ================================= */

.events-filters-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-filter-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

/* Search - Full Width, matches artist search-input */
.event-filter-search {
    width: 100%;
}

.event-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 1rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.event-search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.event-search-input::placeholder {
    color: #a0a0a0;
}

/* Filter Pairs - Side by Side */
.event-filter-pair {
    display: flex;
    gap: 1rem;
}

.event-filter-pair > * {
    flex: 1;
}

/* Select Buttons - matches content-filter-btn */
.event-filter-select {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 2rem 0.8rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    white-space: nowrap;
    appearance: none;
    text-align: center;
    
    /* Dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' opacity='0.7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
}

.event-filter-select::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit; /* Match button's border-radius */
    transition: opacity 0.3s ease-out;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}

.event-filter-select:hover::before,
.event-filter-select:active::before {
    opacity: 1;
}

/* Reset animation on touch end (mobile fix) */
.event-filter-select:not(:hover):not(:active)::before {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.event-filter-select:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.event-filter-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.event-filter-select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.8rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* Toggle Button - matches content-filter-btn */
.event-filter-toggle {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.event-filter-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit; /* Match button's border-radius */
    transition: opacity 0.3s ease-out;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}

.event-filter-toggle:hover::before,
.event-filter-toggle:active::before {
    opacity: 1;
}

/* Reset animation on touch end (mobile fix) */
.event-filter-toggle:not(:hover):not(:active)::before {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.event-filter-toggle:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.event-filter-toggle.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.event-filter-toggle span {
    position: relative;
    z-index: 1;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toggle-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* When not active (showing past events), reduce opacity */
.event-filter-toggle:not(.active) .toggle-icon {
    opacity: 0.5;
}

/* Hover effect on icon */
.event-filter-toggle:hover .toggle-icon {
    transform: scale(1.1);
}

/* =================================
   9. EVENTS - TOUR DATES INSPIRED
   ================================= */

/* =================================
   9. EVENTS - TOUR DATES INSPIRED
   ================================= */

.events-section {
    background: var(--primary-dark);
}

.events-list {
    max-width: 1100px;
    margin: 0 auto;
}

/* Event Card - Tour Dates Style */
.event-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Event Card Content (Left Side) */
.event-card-content {
    flex: 1;
}

.event-card-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.event-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.event-card-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 0.4rem;
}

.event-card-artists {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #6b9eff;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* Venue Link */
.venue-link {
    color: #aaa;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.venue-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Artist Links */
.artist-link {
    color: #6b9eff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.artist-link:hover {
    color: #8fb3ff;
    border-bottom-color: #8fb3ff;
}

.event-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Event Card Actions (Right Side) */
.event-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-end;
}

/* Event Buttons */
.event-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%; /* Equal width for all buttons */
    max-width: 160px; /* Consistent max width */
    display: inline-block;
    box-sizing: border-box; /* Include padding and border in width */
}

.event-btn-primary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff; /* Add border to match secondary */
}

.event-btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.event-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3); /* Consistent border width */
}

.event-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.event-btn-disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
    border: 2px solid #444; /* Consistent border */
}

.event-btn-disabled:hover {
    background: #444;
    transform: none;
    box-shadow: none;
}

/* Load More Button */
.load-more-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Events Filters - Mobile Bottom Sheet Style */
    .events-filters-container {
        background: rgba(26, 26, 26, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 1.5rem;
        margin: 0 1rem 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .event-filter-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .event-filter-pair {
        flex-direction: column;
    }
    
    .event-search-input {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }
    
    .event-filter-select {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem 0.7rem 1.2rem;
        text-align: left;
    }
    
    .event-filter-toggle {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .event-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .event-card-content {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .event-card-title {
        font-size: 1.5rem;
    }
    
    .event-card-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem; /* Consistent spacing */
    }
    
    .event-btn {
        width: 100%;
        max-width: 100%; /* Override desktop max-width on mobile */
        padding: 0.8rem 1.5rem; /* Slightly larger padding for mobile */
    }
    
    .load-more-btn {
        padding: 0.9rem 2rem;
    }
    
    /* Admin panel location fields - stack vertically on mobile */
    .location-fields-desktop {
        grid-template-columns: 1fr !important;
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   10. ABOUT & CONTACT
   ================================= */

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    white-space: pre-line; /* Preserve line breaks */
}

/* Logo & Contact Wrapper */
.logo-contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mascot-logo {
    flex-shrink: 0;
}

.mascot-logo img {
    width: 200px;
    height: auto;
    display: block;
}

.contact-section {
    flex-shrink: 0;
    text-align: left;
}

.contact-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.contact-info {
    display: grid;
    gap: 1rem;
    text-align: left;
}

.contact-item {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-item strong {
    color: #ffffff;
    margin-right: 0.5rem;
}

/* =================================
   11. NEWS SECTION
   ================================= */

.news-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: none;
}

.news-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.news-content {
    max-width: 900px;
    margin: 0 auto;
}

/* =================================
   12. ADMIN PANEL
   ================================= */

.tabs {
    display: flex;
    background: var(--secondary-dark);
    padding: 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-family: inherit;
    flex-shrink: 0;
    white-space: nowrap;
}

.header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.content {
    padding: 2rem;
}

.item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.drag-handle {
    cursor: move;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    padding: 0 0.5rem;
    user-select: none;
    flex-shrink: 0;
}

.item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.item > div:nth-child(3) {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.item h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item small {
    display: block;
    color: #666;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* =================================
   13. FOOTER
   ================================= */

footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Footer Navigation Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Media Icons */
.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-media a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-media a svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-media a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.social-media a:hover::before {
    opacity: 1;
}

.social-media a:hover svg {
    stroke: #0a0a0a;
    fill: #0a0a0a;
    transform: scale(1.1);
}

/* Individual Platform Colors (Optional - on hover) */
.social-media a:nth-child(1):hover::before {
    /* Instagram */
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
}

.social-media a:nth-child(2):hover::before {
    /* YouTube */
    background: #FF0000;
}

.social-media a:nth-child(3):hover::before {
    /* Spotify */
    background: #1DB954;
}

.social-media a:nth-child(4):hover::before {
    /* SoundCloud */
    background: #FF5500;
}

/* Footer Copyright */
.footer-copyright {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Legacy support for old .social-links class */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* =================================
   NEWS LINK CARDS SECTION
   ================================= */

.news-links-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.news-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s;
}

.news-link-card:hover::before {
    left: 100%;
}

.news-link-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.news-link-card:active {
    transform: translateX(3px) scale(0.98);
}

.news-link-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.news-link-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 50px;
    max-height: 50px;
}

.news-link-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.news-link-text {
    flex: 1;
    min-width: 0;
}

.news-link-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #ffffff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-link-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.news-link-card:hover .news-link-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.news-link-arrow svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.load-more-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.load-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.load-more-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn span {
    position: relative;
    z-index: 1;
}

/* =================================
   14. MOBILE RESPONSIVE (max-width: 768px)
   ================================= */

@media (max-width: 768px) {
    /* Hero */
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-logo {
        width: 250px;
    }

    /* Hero Nav - Mobile Scrollable */
    /* Mobile: Hide About and Contact, Show More */
    .hero-nav-desktop-only {
        display: none !important;
    }
    
    .hero-nav-mobile-only {
        display: flex !important;
    }
    
    .hero-nav-btn:hover {
        transform: none;
    }

    /* Hero Menu - Mobile Scrollable */
    .hero-menu {
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-scrolling: none;
        padding: 0 1rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero-menu::-webkit-scrollbar {
        display: none;
    }
    
    .hero-menu a {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Content Filters - Mobile Scrollable */
    .content-filters {
        gap: 0.8rem;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .content-filters::-webkit-scrollbar {
        display: none;
    }
    
    .content-filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* Mobile Artist Filter Trigger - Enhanced Visual Weight */
    .mobile-filter-trigger {
        padding: 0 1rem; /* Match search container padding */
        max-width: 600px; /* Match search container max-width */
        margin: 0 auto; /* Center like search container */
    }
    
    .mobile-filter-trigger .content-filter-btn {
        width: 100%; /* Full width like search input */
        padding: 1rem 1.5rem; /* Balanced padding for prominence */
        font-size: 1rem; /* Slightly larger than search (0.9rem) */
        letter-spacing: 2.5px; /* Maintain premium feel */
        gap: 0.7rem; /* More space between text and chevron */
    }
    
    .mobile-filter-trigger .filter-chevron {
        width: 14px; /* Larger chevron */
        height: 9px; /* Proportional increase */
    }

    /* Filter Section */
    .filter-section {
        justify-content: flex-start;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    /* Section */
    section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    /* Search */
    .search-input {
        font-size: 0.9rem;
        padding: 0.9rem 1.3rem;
    }

    /* Artists Grid */
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .artist-card {
        height: 350px;
    }

    .artist-name {
        font-size: 2rem;
    }

    /* Event Filters */
    .events-filters-new {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 0.8rem;
    }
    
    .event-input,
    .event-select {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }
    
    .toggle-label {
        padding: 0.8rem 1rem;
    }

    .events-filters {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .events-filters input,
    .events-filters select {
        width: 100%;
        min-width: auto;
    }

    /* Admin Tabs */
    .tabs {
        justify-content: flex-start;
    }
    
    .tab {
        padding: 1rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Admin Header */
    .header {
        padding: 1.5rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-logo {
        font-size: 1.2rem;
    }

    /* Admin Content */
    .content {
        padding: 2rem 1rem;
    }

    /* Admin Items */
    .item {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .item > div:nth-child(1) {
        position: relative;

    }
    
    .item img {
        width: 100%;
        height: 200px;
        border-radius: 8px;
        margin-left: 0;
    }
    
    .item > div:nth-child(3) {
        width: 100%;
    }
    
    .item h3 {
        font-size: 1.2rem;
        white-space: normal;
    }
    
    .item p,
    .item small {
        white-space: normal;
    }
    
    .item-actions {
        width: 100%;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .item-actions button {
        flex: 1;
    }

    /* Footer - Mobile */
    .footer-links {
        gap: 1rem;
        font-size: 1rem;
    }

    .social-media {
        gap: 1rem;
    }

    .social-media a {
        width: 44px;
        height: 44px;
    }
}

/* =================================
   15. EXTRA SMALL (max-width: 480px)
   ================================= */

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-logo {
        width: 180px;
    }
    
    .content-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .artist-card {
        height: 300px;
    }

    .artist-name {
        font-size: 1.8rem;
    }
}

/* =================================
   16. TABLET (769px - 1024px)
   ================================= */

@media (min-width: 769px) and (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-filters-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .item {
        flex-wrap: wrap;
    }
    
    .item img {
        width: 100px;
        height: 100px;
    }
}

/* =================================
   17. DESKTOP (1025px+)
   ================================= */

@media (min-width: 1025px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
    }
}

/* =================================
   18. FOOTER MOBILE RESPONSIVE
   ================================= */

@media (max-width: 480px) {
    .footer-links {
        flex-direction: row;  /* Yan yana kalsÄ±n */
        gap: 1rem;
        flex-wrap: wrap;  /* SÄ±Ämazsa alt satÄ±ra geÃ§sin */
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.95rem;  /* Biraz kÃ¼Ã§Ã¼lt */
    }

    .social-media a {
        width: 40px;
        height: 40px;
    }

    .social-media a svg {
        width: 20px;
        height: 20px;
    }

    /* News Link Cards - Mobile */
    .news-links-container {
        padding: 0 0.5rem;
        gap: 0.4rem;
    }

    .news-link-card {
        padding: 0.9rem 1.2rem;
        gap: 0.8rem;
    }

    .news-link-icon {
        width: 36px;
        height: 36px;
    }

    .news-link-icon svg {
        width: 18px;
        height: 18px;
    }

    .news-link-title {
        font-size: 0.9rem;
    }

    .news-link-arrow {
        width: 20px;
        height: 20px;
    }

    .news-link-arrow svg {
        width: 18px;
        height: 18px;
    }

    .load-more-btn {
        padding: 0.8rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    /* Logo & Contact - Mobile */
    .logo-contact-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .mascot-logo img {
        width: 150px;
    }

    .contact-section {
        text-align: center;
        width: 100%;
    }

    .contact-section h3 {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }
}

/* =================================
   OPTIMIZED STARS BACKGROUND
   ================================= */

/**
 * Stars Container
 * - Behind all header content
 * - Never blocks interactions
 * - Full coverage of hero section
 */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Behind everything */
    pointer-events: none; /* CRITICAL: Never block clicks/touches */
}

/**
 * Stars Canvas
 * - Crisp rendering
 * - No interaction blocking
 */
#headerStars {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none; /* CRITICAL: Never block clicks/touches */
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

/* =================================
   16. VERY SMALL (max-width: 370px)
   Hero-content must always fit within viewport
   ================================= */

@media (max-width: 370px) {
    .hero-content {
        padding: 0 0.75rem; /* Increased horizontal padding */
        max-width: 100%;
    }
    
    .hero-logo {
        width: clamp(140px, 40vw, 160px); /* Further scale down logo */
        margin-bottom: 1rem; /* Reduced margin */
    }
    
    .hero h1 {
        font-size: clamp(1.5rem, 5vw, 1.8rem); /* Scale with viewport */
        letter-spacing: 1px; /* Tighter spacing */
        margin-bottom: 0.75rem; /* Reduced margin */
    }
    
    .hero p {
        font-size: clamp(0.8rem, 3vw, 0.9rem); /* Smaller text */
        letter-spacing: 1px; /* Tighter spacing */
        margin-bottom: 2rem; /* Reduced margin */
    }
}

/**
 * Hero section positioning
 * Required for absolute positioning of stars
 */
.hero {
    position: relative;
    z-index: 1;
}

/**
 * Ensure all hero content is above stars
 */
.hero-content,
.hero-logo,
.hero-nav,
.hero-menu,
.hero h1,
.hero p {
    position: relative;
    z-index: 10;
}

/**
 * GPU acceleration hints
 * Improves performance on both mobile and desktop
 */
.stars-container {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

#headerStars {
    transform: translateZ(0);
}

/**
 * Accessibility - Reduced Motion Support
 * Respects user preference for reduced animations
 */
@media (prefers-reduced-motion: reduce) {
    .stars-container {
        animation: none !important;
        transition: none !important;
    }
}

/**
 * Mobile Optimizations
 * Reduce GPU hints on mobile for battery savings
 */
@media (max-width: 768px) {
    .stars-container {
        will-change: auto;
    }
}
/* iOS Safari + general focus cleanup*/
*:focus {
  outline: none;
}

*:focus-visible {
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}