/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--btn-primary-bg);
    background-size: 200% 200%;
    color: var(--btn-primary-text);
    border: 1px solid var(--btn-primary-border);
    box-shadow: var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3);
    background-position: 100% 50%;
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    border: 1px solid var(--btn-secondary-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--btn-secondary-bg);
    /* Keep background same as default */
    color: var(--btn-secondary-text);
    border-color: var(--btn-secondary-border);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3);
}

/* ========== MUSIC PLAYER CARDS ========== */
.music-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.music-item {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.music-item.visible {
    display: block;
    animation: musicFadeIn 0.5s ease forwards;
}

@keyframes musicFadeIn {
    from {
        opacity: 0;
        margin-top: 15px;
    }

    to {
        opacity: 1;
        margin-top: 0;
    }
}

.music-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(8px);
}

.music-player {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    gap: 1rem;
}

@media (max-width: 640px) {
    .music-player {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* Cover Image */
.music-cover {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.music-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1) 100%);
}

.music-item:nth-child(3n+1) .music-cover:not([style*="background-image"]) {
    background: linear-gradient(135deg, var(--color-pink), var(--color-orange));
}

.music-item:nth-child(3n+2) .music-cover:not([style*="background-image"]) {
    background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
}

/* Audio Visualizer */
.audio-visualizer {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: flex-end;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-item.playing .audio-visualizer {
    opacity: 1;
}

.audio-visualizer span {
    width: 3px;
    background: white;
    border-radius: 2px;
    animation: visualize 0.8s ease-in-out infinite;
}

.audio-visualizer span:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.audio-visualizer span:nth-child(2) {
    height: 100%;
    animation-delay: 0.2s;
}

.audio-visualizer span:nth-child(3) {
    height: 60%;
    animation-delay: 0.3s;
}

.audio-visualizer span:nth-child(4) {
    height: 80%;
    animation-delay: 0.4s;
}

@keyframes visualize {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

/* Song Info */
.music-info {
    flex: 1;
    min-width: 0;
}

.music-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-meta {
    font-size: 0.85rem;
    color: var(--text-muted-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Play Button */
.music-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-btn-music-play);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.music-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.music-play-btn:active {
    transform: scale(0.95);
}

.music-play-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--color-btn-music-play-text, white);
    margin-left: 2px;
}

.music-play-btn.playing svg {
    margin-left: 0;
}

/* Progress Section */
.music-progress-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1.5;
    min-width: 200px;
}

@media (max-width: 640px) {
    .music-progress-section {
        width: 100%;
        order: 3;
    }
}

.music-time {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-variant-numeric: tabular-nums;
    min-width: 38px;
    text-align: center;
}

.music-progress {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.music-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.music-progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-purple);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.music-progress:hover .music-progress-bar::after {
    opacity: 1;
}

/* Volume Control */
.music-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.music-volume-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--color-text-light);
    transition: color 0.2s;
}

.music-volume-btn:hover {
    color: var(--color-purple);
}

.music-volume-btn svg {
    width: 20px;
    height: 20px;
}

.music-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    cursor: pointer;
}

.music-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--color-purple);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
    .music-volume {
        display: none;
    }
}

/* External Links */
.music-links {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.music-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.music-link:hover {
    transform: scale(1.1);
}

.music-link.spotify:hover {
    background: #1DB954;
    color: white;
}

.music-link.youtube:hover {
    background: #FF0000;
    color: white;
}

.music-link svg {
    width: 18px;
    height: 18px;
}

/* Toggle Button */
.music-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.music-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid var(--color-btn-music-play);
    color: var(--color-btn-music-play);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-toggle-btn:hover {
    background: var(--color-btn-music-play);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.music-toggle-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.music-toggle-btn.expanded svg {
    transform: rotate(180deg);
}

.music-toggle-btn:not(.visible) {
    display: none;
}

/* ========== STREAMING LINKS ========== */
.streaming-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.spotify-embed-container {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    overflow: hidden;
}

.spotify-embed-container iframe {
    display: block;
    box-shadow: var(--shadow-sm);
}

.streaming-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.streaming-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--color-text);
    color: white;
    border-color: transparent;
}

.streaming-link svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.streaming-link:hover svg {
    transform: scale(1.1);
}

/* Streaming Wrapper for Music Section */
.streaming-wrapper {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.streaming-wrapper .streaming-title {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

/* Colored Streaming Link Buttons */
.streaming-link.streaming-spotify {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
}

.streaming-link.streaming-spotify:hover {
    background: #1ed760;
    border-color: #1ed760;
    color: white;
}

.streaming-link.streaming-apple-music {
    background: linear-gradient(135deg, #FA243C, #FF6B6B);
    color: white;
    border-color: transparent;
}

.streaming-link.streaming-apple-music:hover {
    background: linear-gradient(135deg, #FF3B4E, #FF8080);
    color: white;
}

.streaming-link.streaming-youtube-music {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.streaming-link.streaming-youtube-music:hover {
    background: #FF3333;
    border-color: #FF3333;
    color: white;
}

.streaming-link.streaming-deezer {
    background: #FEAA2D;
    color: #000;
    border-color: #FEAA2D;
}

.streaming-link.streaming-deezer:hover {
    background: #FFB84D;
    border-color: #FFB84D;
    color: #000;
}

.streaming-link.streaming-tidal {
    background: #000000;
    color: white;
    border-color: rgba(0, 0, 0, 0.3);
}

.streaming-link.streaming-tidal:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

/* ========== VIDEO CARDS ========== */
.video-grid {
    display: flex;
    justify-content: center;
}

.video-item {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    display: none;
}

.video-item.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: videoFadeIn 0.5s ease forwards;
}

@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.25rem 1.5rem;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Toggle Button */
.video-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.video-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid var(--color-btn-music-play);
    color: var(--color-btn-music-play);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-toggle-btn:hover {
    background: var(--color-btn-music-play);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.video-toggle-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.video-toggle-btn.expanded svg {
    transform: rotate(180deg);
}

.video-toggle-btn:not(.visible) {
    display: none;
}

/* Legacy video card styles (for backward compatibility) */
.video-card {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

.video-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.video-card:hover::before {
    opacity: 0.25;
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video-card:hover .video-play-btn {
    transform: scale(1.1);
}

.video-play-btn::before {
    content: '';
    border-left: 20px solid var(--color-text);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-card-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
    font-weight: 500;
}

/* ========== FEATURED VIDEO ========== */
.featured-video {
    width: 100%;
    max-width: 850px;
    position: relative;
}

/* Decorative glow behind video */
.featured-video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-primary);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.featured-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a14;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.featured-video-thumbnail {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.featured-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.featured-video-thumbnail:hover .featured-video-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.featured-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.featured-video-thumbnail:hover .featured-play-btn {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.featured-play-btn svg {
    width: 28px;
    height: 28px;
    color: var(--color-text);
    margin-left: 3px;
}

.featured-video-iframe {
    position: absolute;
    inset: 0;
}

.featured-video-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video-info {
    text-align: center;
    padding: 1.25rem 1rem 0;
}

.featured-video-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

.featured-video-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0.5rem auto 0;
    max-width: 500px;
}

@media (max-width: 768px) {
    .featured-video {
        max-width: 100%;
    }

    .featured-video::before {
        display: none;
    }

    .featured-video-container {
        border-radius: 12px;
    }

    .featured-play-btn {
        width: 60px;
        height: 60px;
    }

    .featured-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .featured-video-title {
        font-size: 1rem;
    }
}

/* ========== GALLERY HEADER ========== */
.gallery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.gallery-header .section-title {
    margin: 0;
}

.gallery-header .section-title span {
    color: var(--color-purple);
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    left: 0;
}

/* ========== ALBUMS GRID ========== */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.album-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.album-cover {
    aspect-ratio: 16/10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-photo-count {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.album-info {
    padding: 1.25rem 1.5rem;
}

.album-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    margin: 0 0 0.35rem;
    color: var(--color-text);
}

.album-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== GALLERY GRID (Photos) ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    /* Square grid */
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0;
}

.gallery-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* ========== LIGHTBOX ========== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    padding: 0 0.5rem;
    color: white;
}

.lightbox-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox-counter {
    font-size: 0.9rem;
    opacity: 0.7;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev.hidden,
.lightbox-next.hidden {
    opacity: 0;
    pointer-events: none;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 22px;
        height: 22px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: center;
    }

    .gallery-header .btn-back {
        position: static;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CONCERTS ========== */
.concerts-list {
    max-width: 800px;
    margin: 0 auto;
}

.concert-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 16px;
    gap: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.concert-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.concert-date {
    text-align: center;
    min-width: 80px;
    padding: 0.75rem;
    background: var(--color-btn-concert-date);
    border-radius: 12px;
    color: var(--color-btn-concert-date-text, white);
}

.concert-day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-btn-concert-date-text, white);
}

.concert-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-btn-concert-date-text, rgba(255, 255, 255, 0.9));
    margin-top: 0.25rem;
}

.concert-info {
    flex: 1;
}

.concert-title {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.concert-venue {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.concert-action .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

.no-concerts,
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-light);
    font-style: italic;
    width: 100%;
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

/* Left Column: Info */
.contact-info {
    padding-top: 1rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateX(8px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: white;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(232, 93, 140, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--color-icon-phone, var(--color-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--color-icon-phone, var(--gradient-primary));
    color: white;
    transform: rotate(-10deg);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--text-muted-color);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-value a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-value a {
    color: var(--color-icon-phone, var(--color-purple));
}

/* Dark Glass Special Style (Reusable) */
.contact-item.glass-dark,
.contact-item.booking-highlight {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: none;
    /* remove default border if present and use the one above */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Ensure border is applied */
}

.contact-item.glass-dark:hover,
.contact-item.booking-highlight:hover {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-item.glass-dark .contact-icon,
.contact-item.booking-highlight .contact-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-item.glass-dark:hover .contact-icon,
.contact-item.booking-highlight:hover .contact-icon {
    background: var(--gradient-primary);
    color: white;
}

.contact-item.glass-dark .contact-label,
.contact-item.booking-highlight .contact-label {
    color: rgba(255, 255, 255, 0.4);
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.8), 1px 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-item.glass-dark .contact-value a,
.contact-item.booking-highlight .contact-value a {
    color: var(--color-icon-booking, rgba(255, 255, 255, 0.55));
    text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.9), 1px 1px 0 rgba(255, 255, 255, 0.1);
}

/* Light Glass Style (Reusable) */
.contact-item.glass-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
}

.contact-item.glass-light:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Glass light link hover */
.contact-item.glass-light:hover .contact-value a {
    color: var(--text-link-color, var(--color-purple));
}

/* Glass light icon hover */
.contact-item.glass-light:hover .contact-icon {
    background: var(--text-link-color, var(--gradient-primary));
    color: white;
    transform: rotate(-10deg);
}




/* Right Column: Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.85);
    /* Match glass-light */
    backdrop-filter: blur(12px);
    /* Match glass-light */
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* Match glass-light */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    /* Match glass-light but keep position relative */
    position: relative;
    overflow: hidden;
}



.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: var(--color-text);
}

/* Responsive adjustment for contact grid */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-card {
        padding: 2rem;
        order: 1;
    }
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: white;
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-message-success {
    background: rgba(76, 175, 125, 0.15);
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.form-message-error {
    background: rgba(232, 93, 140, 0.15);
    color: var(--color-pink);
    border: 1px solid var(--color-pink);
}

/* Form Success State */
.contact-form-card.form-success-active {
    padding: 0;
    overflow: hidden;
}

.form-success-state {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.form-success-image {
    width: 100%;
    height: 100%;
}

.form-success-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ========== POP-UPS ========== */

/* Standard Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Container */
.popup-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    text-align: center;
}

.popup-message {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(22, 33, 62, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    animation: slideUpBanner 0.5s ease-out;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

.cookie-banner-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-privacy-link {
    color: var(--color-pink);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}

.cookie-privacy-link:hover {
    color: var(--color-purple);
    text-decoration: underline;
}

/* ========== PRIVACY POLICY MODAL ========== */
.privacy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.privacy-modal {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0;
}

.privacy-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-modal-close:hover {
    background: var(--color-pink);
}

.privacy-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.privacy-modal-content h3 {
    font-family: var(--font-display);
    color: var(--color-white);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.privacy-modal-content h3:first-child {
    margin-top: 0;
}

.privacy-modal-content p {
    margin-bottom: 1rem;
}

.privacy-modal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-modal-content li {
    margin-bottom: 0.5rem;
}

.privacy-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.privacy-modal-footer span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    opacity: 0.7;
}

/* ========== STREAMING PLATFORMS SECTION ========== */
.streaming-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.95), rgba(26, 26, 46, 0.95));
    text-align: center;
}

.streaming-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.streaming-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.streaming-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.streaming-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.streaming-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.streaming-btn.spotify {
    background: #1DB954;
}

.streaming-btn.spotify:hover {
    background: #1ed760;
}

.streaming-btn.apple-music {
    background: linear-gradient(135deg, #FA243C, #FF6B6B);
}

.streaming-btn.apple-music:hover {
    background: linear-gradient(135deg, #FF3B4E, #FF8080);
}

.streaming-btn.youtube-music {
    background: #FF0000;
}

.streaming-btn.youtube-music:hover {
    background: #FF3333;
}

.streaming-btn.deezer {
    background: #FEAA2D;
    color: #000;
}

.streaming-btn.deezer:hover {
    background: #FFB84D;
}

.streaming-btn.tidal {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.streaming-btn.tidal:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.4);
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-btn-scroll-top);
    border: none;
    color: var(--color-btn-scroll-top-text, white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

/* ========== COOKIE SETTINGS BUTTON ========== */
.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-orange);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(232, 141, 76, 0.3);
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-settings-btn:hover {
    transform: translateY(-5px) rotate(45deg);
    box-shadow: 0 8px 25px rgba(232, 141, 76, 0.5);
}

.cookie-settings-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .cookie-settings-btn {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 44px;
        height: 44px;
    }

    .cookie-settings-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========== COOKIE SETTINGS MODAL ========== */
.cookie-settings-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.cookie-settings-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.cookie-settings-panel {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fefcf8 100%);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUpScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-settings-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    color: var(--color-text);
    margin: 0;
}

.cookie-settings-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-settings-close:hover {
    background: var(--color-pink);
    color: white;
    transform: rotate(90deg);
}

.cookie-settings-close svg {
    width: 20px;
    height: 20px;
}

.cookie-settings-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cookie-settings-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-left: 3px solid var(--color-purple);
    border-radius: 8px;
}

/* Cookie Category */
.cookie-category {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-category-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
}

.cookie-category-info p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.cookie-category-details {
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cookie-category-details strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.cookie-category-details ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.cookie-category-details li {
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 28px;
    transition: all 0.3s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(28px);
}

.cookie-toggle.disabled .cookie-toggle-slider {
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
}

.cookie-settings-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}

.cookie-settings-footer .btn {
    flex: 1;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-settings-panel {
        max-height: 95vh;
    }

    .cookie-settings-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .cookie-settings-header h2 {
        font-size: 1.4rem;
    }

    .cookie-settings-content {
        padding: 1.5rem;
    }

    .cookie-category {
        padding: 1rem;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-toggle {
        align-self: flex-end;
    }

    .cookie-settings-footer {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }
}

/* ========== BACKGROUND VISUALIZER (NEON GLOW) ========== */
#hudba {
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

#hudba.music-active {
    background-color: #0f0f1a;
    /* Dark background for Lights Out */
}

#hudba::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 93, 140, 0.4), rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    background-size: 200% 200%;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
    filter: blur(80px);
    pointer-events: none;
}

#hudba.music-active::before {
    opacity: 0.8;
    /* Higher opacity against dark background */
    animation: neonPulse 3s ease-in-out infinite alternate;
}

/* Lights Out Text Color Overrides */
#hudba.music-active .section-title,
#hudba.music-active .section-subtitle,
#hudba.music-active .music-title {
    color: #ffffff;
    transition: color 0.5s ease;
}

#hudba.music-active .music-meta,
#hudba.music-active .music-time {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.5s ease;
}

#hudba.music-active .music-item {
    background: rgba(255, 255, 255, 0.05);
    /* Glass morphism */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes neonPulse {
    0% {
        opacity: 0.5;
        background-position: 0% 50%;
        filter: blur(80px);
    }

    100% {
        opacity: 0.9;
        background-position: 100% 50%;
        filter: blur(100px) brightness(1.2);
    }
}

#hudba .container {
    position: relative;
    z-index: 10;
}

/* Countdown Banner */
.countdown-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-pink-glow);
    padding: 0.75rem 0;
    animation: slideDown 0.5s ease-out;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    padding: 0 3rem;
}

.countdown-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--color-pink);
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.5rem;
}

.timer-segment span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-white);
    text-shadow: 0 0 10px var(--color-blue-glow);
}

.timer-segment small {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

.countdown-close {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.countdown-close:hover {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .countdown-banner {
        padding: 1rem 0;
    }

    .countdown-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .countdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .timer-segment {
        min-width: 3rem;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Adjust nav for fixed banner */
body.has-countdown .nav {
    top: 60px;
}

@media (max-width: 768px) {
    body.has-countdown .nav {
        top: 130px;
    }
}