/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-orange: #ff6b35;
    --accent-gold: #ffd700;
    --hover-bg: #2a2a2a;
    --border-color: #333333;
}

body {
    font-family: 'Space Mono', 'Inter', monospace;
    color: var(--text-primary);
    /* background: var(--primary-bg); */
    overflow-x: hidden;
    line-height: 1.6;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    transform: none !important;
    will-change: auto;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    position: absolute;
    top: 0;
    left: 0;
    transform: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.85) 50%,
        rgba(10, 10, 10, 0.95) 100%
    ); */
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 80px;
    width: 100%;
}

/* Profile Card */
.profile-card {
    /* background: var(--card-bg); */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-banner {
    position: relative;
    height: 120px;
    overflow: hidden;
}

/* Holographic Banner Effect */
.holographic-banner {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #FF6B35 0%,
        #FF8C42 8%,
        #FFD700 16%,
        #FFE135 24%,
        #FF6B35 32%,
        #DC143C 40%,
        #8B0000 48%,
        #9370DB 56%,
        #BA55D3 64%,
        #DDA0DD 72%,
        #FF6B35 80%,
        #FFA07A 88%,
        #FFD700 96%,
        #FF6B35 100%
    );
    background-size: 400% 400%;
    animation: holographic 8s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holographic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 75%
    );
    animation: shimmer 3s infinite;
}

.holographic-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 215, 0, 0.2) 0%,
        rgba(255, 107, 53, 0.15) 30%,
        rgba(186, 85, 211, 0.1) 60%,
        transparent 100%
    );
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes holographic {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

.banner-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 1;
    position: relative;
    letter-spacing: 1px;
}

.profile-content {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding-top: 30px;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-top: -60px;
    margin-left: 0;
    flex-shrink: 0;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--card-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.verification-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.profile-info {
    margin-top: -30px;
    margin-left: 0;
    padding-left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 8px; */
}

.profile-name h1 {
    font-family: 'Space Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.star-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.profile-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.profile-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
}

.action-button {
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-primary);
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    opacity: 0.6;
}

.action-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.action-button:hover::after {
    opacity: 1;
}

.action-button:hover {
    background: rgba(26, 26, 26, 0.6);
    border-color: rgba(255, 107, 53, 0.5);
    color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.action-button:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

.action-button svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.action-button:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.4));
}

.action-button span {
    flex: 1;
    text-align: left;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* Page Sections */
.page-section {
    margin-bottom: 60px;
    width: 100%;
}

.section-title {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: left;
    opacity: 0.8;
}

/* Events Section */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.4);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.event-month {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    font-family: 'Space Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-top: 4px;
}

.event-details {
    flex: 1;
    min-width: 0;
}

.event-venue {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.event-location {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.event-btn {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: scale(1.05);
}

/* Music Section */
.music-player {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.music-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.music-artwork {
    flex-shrink: 0;
}

.music-art-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.music-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.music-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.music-info {
    flex: 1;
}

.music-title {
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.music-artist {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.music-note-icon {
    width: 32px;
    height: 32px;
    background: #FF4444;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
}

.music-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

.time-current,
.time-remaining {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    width: 3%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: width 0.1s ease;
}

.progress-dot {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.music-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.playback-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.control-btn.play-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

.control-btn.play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Merchandise Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.merch-item {
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.merch-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4);
}

.merch-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.merch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.merch-item:hover .merch-img {
    transform: scale(1.05);
}

.merch-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.8;
}

.merch-name {
    font-family: 'Space Mono', monospace;
    padding: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.merch-price {
    font-family: 'Space Mono', monospace;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.merch-btn {
    margin: 0 15px 15px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--accent-orange);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.merch-btn:hover {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.05);
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link:hover::after {
    width: 100%;
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.section-title {
    font-family: 'Space Mono', monospace;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.view-all {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.view-all:hover {
    color: var(--accent-orange);
}

/* Featured Card */
.featured-card {
    background: var(--accent-orange);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.featured-content {
    position: relative;
    z-index: 1;
}

.featured-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.featured-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-button {
    background: var(--primary-bg);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gallery-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    opacity: 0.5;
    width: 100%;
    height: 100%;
}

.gallery-image-placeholder img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Menu Section */
.menu-list {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.menu-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.menu-art {
    flex-shrink: 0;
}

.menu-art-placeholder {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.menu-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.menu-tracks {
    flex: 1;
}

.track-item {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 400;
    line-height: 1.5;
}

.track-item:last-child {
    margin-bottom: 0;
}

.menu-actions {
    display: flex;
    gap: 10px;
}

.menu-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-player {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 20px;
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.player-track {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.preview-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.glass-music.dark {
    max-width: 660px;
    margin: auto;
    padding: 16px;
    border-radius: 20px;
  
    /* Dark glass */
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  
    /* Depth */
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  }
  
  .glass-music.dark iframe {
    width: 100%;
    border-radius: 14px;
  }
  

.player-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.player-btn.play-btn {
    width: 44px;
    height: 44px;
    background: var(--accent-orange);
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.player-btn.play-btn:hover {
    background: #ff8555;
}

/* Events Section */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.event-item:last-child {
    margin-bottom: 0;
}

.event-item:hover {
    transform: translateY(-2px);
}

.event-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-orange);
    min-width: 70px;
    text-align: left;
    flex-shrink: 0;
}

.event-details {
    flex: 1;
    min-width: 0;
}

.event-venue {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.event-location {
    font-size: 14px;
    color: var(--text-secondary);
}

.event-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    white-space: nowrap;
    flex-shrink: 0;
}

.event-btn:hover {
    background: var(--hover-bg);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Merch Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.merch-item {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
}

.merch-image {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.merch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.merch-item:hover .merch-img {
    transform: scale(1.05);
}

.merch-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.8;
}

.merch-name {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.merch-price {
    padding: 0 15px 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-orange);
}

/* Mailing List */
.mailing-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mailing-form {
    display: flex;
    gap: 10px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    align-items: center;
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Space Mono', monospace;
    outline: none;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.subscribe-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--hover-bg);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 12px;
    font-family: 'Space Mono', monospace;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.footer p {
    margin: 0;
    padding: 0;
}

/* Past Event Glimpses Carousel */
.glimpses-carousel-wrapper {
    position: relative;
    margin: 20px 0;
    padding: 0 50px;
}

.glimpses-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    cursor: grab;
}

.glimpses-carousel::-webkit-scrollbar {
    display: none;
}

.glimpses-carousel:active {
    cursor: grabbing;
}

.glimpse-item {
    flex: 0 0 auto;
    width: 280px;
    height: 200px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glimpse-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.glimpse-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.glimpse-item:hover img {
    transform: scale(1.05);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.3);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn.prev-btn {
    left: 0;
}

.carousel-nav-btn.next-btn {
    right: 0;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 24px;
    }

    .profile-name h1 {
        font-size: 24px;
    }

    .banner-text {
        font-size: 20px;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .profile-image-wrapper {
        margin-top: -50px;
    }
    
    .profile-content {
        gap: 15px;
    }
    
    .profile-info {
        margin-top: -25px;
    }

    .main-nav {
        gap: 20px;
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .featured-card {
        padding: 30px 20px;
    }

    .featured-card h3 {
        font-size: 24px;
    }

    .gallery-carousel {
        padding: 30px 50px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    .mailing-form {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }

    .event-item {
        flex-wrap: wrap;
        gap: 15px;
    }

    .event-btn {
        width: 100%;
        margin-top: 0;
    }
    
    .event-date {
        min-width: auto;
    }
    
    .footer {
        padding: 14px 16px;
        font-size: 11px;
        z-index: 9999;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        background: rgba(10, 10, 10, 0.98);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    .container {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .profile-actions {
        top: 15px;
        right: 15px;
    }

    .action-btn {
        width: 32px;
        height: 32px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-details {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .menu-actions {
        align-self: flex-end;
    }
    
    .profile-content {
        flex-direction: row;
        align-items: flex-start;
        padding-top: 30px;
        gap: 15px;
    }
    
    .profile-image-wrapper {
        margin-left: 0;
        margin-top: -60px;
        flex-shrink: 0;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-info {
        margin-top: -20px;
        margin-left: 0;
        flex: 1;
    }
    
    .profile-name h1 {
        font-size: 22px;
    }
    
    .profile-title {
        font-size: 13px;
    }
    
    .action-buttons {
        gap: 12px;
    }
    
    .action-button {
        padding: 20px 20px;
        font-size: 16px;
        gap: 14px;
        border-radius: 14px;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    .action-button svg {
        width: 20px;
        height: 20px;
    }
    
    .page-section {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .event-item {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }
    
    .event-date {
        min-width: 50px;
        padding: 10px;
    }
    
    .event-day {
        font-size: 20px;
    }
    
    .event-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .music-player {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .music-art-placeholder {
        width: 100%;
        max-width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .music-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .music-note-icon {
        align-self: flex-end;
    }
    
    .music-progress {
        gap: 8px;
    }
    
    .time-current,
    .time-remaining {
        font-size: 11px;
        min-width: 35px;
    }
    
    .music-controls {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .playback-controls {
        gap: 12px;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .control-btn.play-btn {
        width: 44px;
        height: 44px;
    }
    
    .merch-grid {
        grid-template-columns: 1fr;
    }
    
    .event-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    .glimpses-carousel-wrapper {
        padding: 0;
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
    }
    
    .glimpses-carousel {
        padding: 20px 24px;
    }
    
    .glimpse-item {
        width: 240px;
        height: 180px;
    }
    
    .glimpse-item:first-child {
        margin-left: 0;
    }
    
    .glimpse-item:last-child {
        margin-right: 0;
    }
    
    .footer {
        padding: 14px 16px;
        font-size: 11px;
        z-index: 9999;
        position: fixed;
        bottom: -3px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
    }
    
    .container {
        padding-bottom: 70px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeIn 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--card-bg);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hover-bg);
}
