@import url('https://fonts.googleapis.com/css2?family=Rye&family=Oswald:wght@400;700&display=swap');

body {
    background-color: #0c0a09;
    color: #d6d3d1;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.font-rock {
    font-family: 'Rye', serif;
}

.font-header {
    font-family: 'Oswald', sans-serif;
}

.clip-path-slant {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.text-shadow-lg {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav {
    background: rgba(12, 10, 9, 0.3);
    backdrop-filter: blur(16px);
    border-bottom: solid 1px rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.scrolling-container:hover .animate-marquee {
    animation-play-state: paused;
}

/* Hide Scrollbar */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* View Management */
.view-section {
    display: none;
    opacity: 0;
}

.view-section.active {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* FAQ Markers */
summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style: none;
}

/* Tab Styles */
.genre-tab.active {
    background-color: rgba(31, 41, 55, 0.8) !important;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Accessibility Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Fullscreen Gallery */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fullscreen-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.fullscreen-overlay.active img {
    transform: scale(1);
}