:root {
    --color-primary: #000;
    --color-secondary: #111;
    --color-accent: darkcyan;
    --color-accent-light: #00b3b3;
    --color-text: #fff;
    --color-overlay: rgba(0, 0, 0, 0.5);
    --color-overlay-hover: rgba(0, 0, 0, 0.7);
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
    --ease-organic: cubic-bezier(0.18, 0.94, 0.24, 1.08);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --nav-blur: blur(10px);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    
    /* Glass morphism variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Theme: Outer Space (Default) */
[data-theme="outer-space"] {
    --color-primary: #000;
    --color-secondary: #111;
    --color-accent: darkcyan;
    --color-accent-light: #00b3b3;
    --color-text: #fff;
    --color-overlay: rgba(0, 0, 0, 0.5);
    --color-overlay-hover: rgba(0, 0, 0, 0.7);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

/* Theme: Dark Jungle */
[data-theme="dark-jungle"] {
    --color-primary: #0d1b0d;
    --color-secondary: #1a2e1a;
    --color-accent: #2d5016;
    --color-accent-light: #4a7c2c;
    --color-text: #d4e8d4;
    --color-overlay: rgba(13, 27, 13, 0.6);
    --color-overlay-hover: rgba(13, 27, 13, 0.8);
    --gradient-dark: linear-gradient(135deg, #0a1409 0%, #152615 50%, #1e3820 100%);
    --glass-bg: rgba(77, 124, 44, 0.08);
    --glass-bg-hover: rgba(77, 124, 44, 0.15);
    --glass-border: rgba(77, 124, 44, 0.2);
}

/* Theme: Campfire */
[data-theme="campfire"] {
    --color-primary: #1a0f0a;
    --color-secondary: #2d1810;
    --color-accent: #d35400;
    --color-accent-light: #ff6f20;
    --color-text: #ffe4d1;
    --color-overlay: rgba(26, 15, 10, 0.6);
    --color-overlay-hover: rgba(26, 15, 10, 0.8);
    --gradient-dark: linear-gradient(135deg, #1a0f0a 0%, #2d1810 50%, #4a2816 100%);
    --glass-bg: rgba(211, 84, 0, 0.08);
    --glass-bg-hover: rgba(211, 84, 0, 0.15);
    --glass-border: rgba(255, 111, 32, 0.2);
}

/* Theme: Supernatural */
[data-theme="supernatural"] {
    --color-primary: #0a0014;
    --color-secondary: #16001e;
    --color-accent: #8b00ff;
    --color-accent-light: #b24dff;
    --color-text: #e8d4ff;
    --color-overlay: rgba(10, 0, 20, 0.6);
    --color-overlay-hover: rgba(10, 0, 20, 0.8);
    --gradient-dark: linear-gradient(135deg, #0a0014 0%, #1a0028 50%, #2d0040 100%);
    --glass-bg: rgba(139, 0, 255, 0.08);
    --glass-bg-hover: rgba(139, 0, 255, 0.15);
    --glass-border: rgba(178, 77, 255, 0.2);
}

/* Theme: Cave Paintings */
[data-theme="cave-paintings"] {
    --color-primary: #1a1410;
    --color-secondary: #2d2418;
    --color-accent: #c77c3a;
    --color-accent-light: #e59b5f;
    --color-text: #f5e6d3;
    --color-overlay: rgba(26, 20, 16, 0.6);
    --color-overlay-hover: rgba(26, 20, 16, 0.8);
    --gradient-dark: linear-gradient(135deg, #1a1410 0%, #2d2418 50%, #4a3825 100%);
    --glass-bg: rgba(199, 124, 58, 0.08);
    --glass-bg-hover: rgba(199, 124, 58, 0.15);
    --glass-border: rgba(229, 155, 95, 0.2);
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-size: 1.1em;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Theme Selector Dropdown */
.theme-selector {
    position: absolute;
    top: 100%;
    right: 20px;
    margin-top: 10px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 15px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-smooth);
}

.theme-selector.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    color: var(--color-text);
}

.theme-option:hover {
    background: var(--glass-bg-hover);
}

.theme-preview {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.outer-space-preview {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.dark-jungle-preview {
    background: linear-gradient(135deg, #0a1409 0%, #152615 50%, #1e3820 100%);
}

.campfire-preview {
    background: linear-gradient(135deg, #1a0f0a 0%, #d35400 50%, #ff6f20 100%);
}

.supernatural-preview {
    background: linear-gradient(135deg, #0a0014 0%, #8b00ff 50%, #b24dff 100%);
}

.cave-paintings-preview {
    background: linear-gradient(135deg, #1a1410 0%, #c77c3a 50%, #e59b5f 100%);
}

html {
    scroll-behavior: smooth;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: oskar, sans-serif;
    line-height: 1.6;
    font-weight: 100;
    color: var(--color-text);
    background: var(--gradient-dark);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
}

/* Parallax Background */
.parallax-hero {
    position: fixed;
    top: -8vh;
    left: 0;
    width: 100%;
    height: 110vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    will-change: transform;
}

.parallax-layer picture,
.parallax-layer img {
    width: 115%;
    height: 115%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.parallax-layer-back {
    opacity: 0.9;
}

.parallax-layer-mid {
    opacity: 0.92;
}

.parallax-layer-fore {
    opacity: 0.95;
    filter: saturate(1.08) contrast(1.08);
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(0, 139, 139, 0.35), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
}

.hero-logo-wrap {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}

.breathing-logo {
    width: clamp(90px, 10vw, 140px);
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.08), 0 0 0 0 rgba(0, 139, 139, 0.12);
    animation: logoBreathe 8s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.18));
}

@keyframes logoBreathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.08), 0 0 0 0 rgba(0, 139, 139, 0.12);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.16), 0 0 20px 8px rgba(0, 139, 139, 0.24);
    }
}

/* Glass Card Base */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
}

.glass:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-text);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    z-index: 1000;
    transition: top var(--transition-smooth);
    text-decoration: none;
    font-weight: bold;
}

.skip-link:focus {
    top: var(--spacing-sm);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    width: 0%;
    z-index: 1001;
    transition: width 0.1s linear;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    color: var(--color-text);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    z-index: 99;
    
    /* Glass morphism */
    background: rgba(0, 139, 139, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 139, 139, 0.4);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

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

.scroll-top:hover {
    background: var(--color-accent-light);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.6);
}

.scroll-top:focus {
    outline: 2px solid var(--color-text);
    outline-offset: 4px;
}

.container {
    display: flex;
    justify-content: center;
}

section {
    position: relative;
    isolation: isolate;
}

section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Media/Parallax/paper-texture.png');
    background-size: 560px 560px;
    background-repeat: repeat;
    opacity: 0.07;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}

section > * {
    position: relative;
    z-index: 1;
}

main {
    flex: 1;
}

header h1,
header h2,
section h2 {
    text-align: center;
}

footer {
    color: var(--color-text);
    padding: var(--spacing-lg) 0;
    text-align: center;
    margin-top: auto;
    
    /* Glass morphism */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
}

footer p {
    margin: 0;
}

/* Navbar styles */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: var(--nav-blur);
    -webkit-backdrop-filter: var(--nav-blur);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* animation removed */
}

.adaptive-nav {
    margin: 3%;
    padding: var(--spacing-sm) 0;
}
.navbar-logo {
    width: 50%;
    position: relative;
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.navbar-menu {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.navbar-menu li {
    padding: 0;
}

.navbar-menu li a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    position: relative;
    display: inline-block;
    --nav-shift: 0px;
    --nav-tilt: 0deg;
    transform: translateY(var(--nav-shift)) rotate(var(--nav-tilt));
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: all var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-menu li a:hover {
    color: var(--color-accent);
}

.navbar-menu li a:hover::after {
    width: 80%;
}

.navbar-menu li a:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 3px;
    transition: all var(--transition-smooth);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-container {
    position: relative;
}

/* About Section */

.about-section {
    background: linear-gradient(120deg, #101c2c 60%, #1d293b 100%);
    color: var(--color-text);
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

/* Parallax background effect */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 139, 139, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 41, 59, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-container {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
    
    /* Glass morphism */
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
}

.about-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.about-section h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-section p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.about-section p.animate {
    opacity: 1;
    transform: translateY(0);
}
/* Carousel styles */

.music-section {
    padding: var(--spacing-lg) 0;
}

.carousel-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    touch-action: pan-y pinch-zoom;
}

.carousel {
    display: flex;
    flex-wrap: nowrap;
    transition: transform var(--transition-slow);
    will-change: transform;
    cursor: grab;
}

.carousel.grabbing {
    cursor: grabbing;
    transition: none;
}

.carousel-image {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow), filter var(--transition-smooth);
}

.carousel .carousel-item {
    flex: 0 0 33.33%;
    height: 0; 
    padding-top: 33.33%;
    position: relative;
    overflow: hidden;
}

.carousel .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.carousel .carousel-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* Main: Center the .carousel-item-text div, but left-align its contents */
.carousel-item-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 85%; 
    text-align: left;   
    color: var(--color-text);
    display: none;
    padding: 1.5em;
    animation: fadeInUp 0.4s ease-out;
    
    /* Glass morphism */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.carousel-item:hover .carousel-item-text {
    display: block;
}

.carousel-item:hover::before,
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
    z-index: 1;
    transition: background-color var(--transition-smooth);
}

.carousel-item:hover::before {
    background-color: var(--color-overlay-hover);
}

.carousel-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.6));
    color: var(--color-text);
    z-index: 3;
    display: grid;
    place-items: center;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow var(--transition-smooth), background-color var(--transition-smooth), border-color var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.carousel-nav:hover {
    background: radial-gradient(circle at 40% 40%, rgba(0, 139, 139, 0.35), rgba(0, 0, 0, 0.75));
    border-color: rgba(0, 139, 139, 0.6);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 139, 139, 0.35);
}

.carousel-nav:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.vine-arrow {
    width: 28px;
    height: 28px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover .vine-arrow { transform: translateX(-4px) rotate(-4deg); filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.35)); }
.next:hover .vine-arrow { transform: translateX(4px) rotate(4deg); filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.35)); }

.social-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.social-icon i {
    font-size: 2em;
    color: var(--color-text);
    transition: all var(--transition-smooth);
}

.social-icon a:hover i {
    color: var(--color-accent);
    transform: scale(1.2) rotate(5deg);
}

.social-icon a:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 50%;
}

/* Responsive breakpoints */
@media screen and (max-width: 1280px) {
    .carousel .carousel-item {
        flex: 0 0 50%;
        padding-top: 50%;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@media screen and (max-width: 786px) {
    /* Mobile hamburger menu */
    .hamburger {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
        transition: right var(--transition-smooth);
        z-index: 100;
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-menu li a {
        font-size: 1.5em;
    }
    
    .carousel .carousel-item {
        flex: 0 0 100%;
        padding-top: 100%;
    }

    .carousel-nav {
        width: 48px;
        height: 48px;
    }
    
    .carousel-item-text {
        display: block;
    }
    
    .navbar-logo {
        width: 80%;
    }

    .hero-logo-wrap {
        top: 96px;
    }

    .breathing-logo {
        width: clamp(72px, 18vw, 110px);
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .about-section h2 {
        font-size: 2em;
    }
    
    .about-section p {
        font-size: 1em;
    }
}

/* Mobile menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 99;
}

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

/* Carousel auto-play indicator */
.carousel-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ========================================
   NEW PAGES STYLES
   ======================================== */

/* Page Hero */
.page-hero {
    padding: 100px 20px 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.page-hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeIn 0.8s ease-out;
}

.page-hero-content p {
    font-size: 1.3em;
    opacity: 0.8;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Container Wide */
.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    opacity: 0.7;
    margin-top: -30px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: transform 280ms var(--ease-organic), box-shadow 280ms var(--ease-organic), background-color var(--transition-smooth), color var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1em;
    transform: scale(1);
}

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

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: scale(1.05);
    box-shadow: 0 8px 26px rgba(0, 139, 139, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    transform: scale(1.05);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85em;
}

/* Ripple-enabled links */
a.ripple-link {
    position: relative;
    background-image: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(0, 200, 200, 0.28), transparent var(--ripple-size, 0%));
    background-repeat: no-repeat;
    background-size: 140% 140%;
    transition: color var(--transition-smooth);
    will-change: background-size;
}

/* Active nav link */
.navbar-menu li a.active {
    color: var(--color-accent);
}

.navbar-menu li a.active::after {
    width: 80%;
}

/* ========================================
   ARTISTS PAGE
   ======================================== */

.artists-grid {
    padding: 60px 20px;
}

.artists-grid .container-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.artist-card {
    display: flex;
    overflow: hidden;
    transition: transform var(--transition-smooth);
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-image {
    flex: 0 0 200px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.artist-info h2 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.artist-genre {
    color: var(--color-accent);
    font-size: 0.9em;
    margin-bottom: 15px;
}

.artist-info p {
    flex: 1;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.artist-links {
    display: flex;
    gap: 15px;
}

.artist-links a {
    color: var(--color-text);
    font-size: 1.5em;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.artist-links a:hover {
    color: var(--color-accent);
    transform: scale(1.2);
}

/* Artist Spotify Embed */
.artist-embed {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
}

.artist-embed iframe {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
}

.cta-container h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.cta-container p {
    opacity: 0.8;
    margin-bottom: 25px;
}

/* ========================================
   RELEASES PAGE
   ======================================== */

.releases-section {
    padding: 60px 20px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.release-card {
    overflow: hidden;
    transition: transform var(--transition-smooth);
}

.release-card:hover {
    transform: translateY(-10px);
}

.release-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.release-card:hover .release-image img {
    transform: scale(1.1);
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 1.5em;
    transition: all var(--transition-smooth);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--color-accent-light);
}

.release-info {
    padding: 20px;
}

.release-type {
    font-size: 0.75em;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.release-info h3 {
    font-size: 1.2em;
    margin: 8px 0 5px;
}

.release-artist {
    opacity: 0.7;
    margin-bottom: 5px;
}

.release-year {
    font-size: 0.85em;
    opacity: 0.5;
}

.release-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.release-links a {
    color: var(--color-text);
    font-size: 1.3em;
    transition: color var(--transition-smooth), transform var(--transition-smooth);
}

.release-links a:hover {
    color: var(--color-accent);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-container {
    padding: 40px;
}

.contact-form-container h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1em;
    transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255,255,255,0.1);
}

.form-group select option {
    background: #111;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 25px;
    text-align: center;
}

.contact-icon {
    font-size: 2em;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-links-contact a {
    font-size: 1.5em;
    color: var(--color-text);
    transition: all var(--transition-smooth);
}

.social-links-contact a:hover {
    color: var(--color-accent);
    transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: rgba(0,0,0,0.3);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1em;
    text-align: left;
}

.faq-question i {
    transition: transform var(--transition-smooth);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    opacity: 0.8;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--color-accent);
}

/* ========================================
   NEWS PAGE
   ======================================== */

.news-section {
    padding: 60px 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    overflow: hidden;
    transition: transform var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-card:not(.featured) .news-image {
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75em;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-content time {
    font-size: 0.85em;
    opacity: 0.6;
}

.news-content h2,
.news-content h3 {
    margin: 10px 0 15px;
}

.news-content p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--color-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
}

.read-more:hover {
    gap: 12px;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 20px;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
}

.newsletter-container h2 {
    margin-bottom: 15px;
}

.newsletter-container p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    max-width: 300px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-size: 1em;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* ========================================
   EVENTS PAGE
   ======================================== */

.events-section {
    padding: 60px 20px;
}

.events-container {
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: 30px;
    padding: 30px;
    margin-bottom: 20px;
    align-items: center;
}

.event-card.past-event {
    opacity: 0.6;
}

.event-date {
    flex: 0 0 80px;
    text-align: center;
    padding: 15px;
    background: var(--color-accent);
    border-radius: var(--border-radius);
}

.event-month {
    display: block;
    font-size: 0.85em;
    text-transform: uppercase;
}

.event-day {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1;
}

.event-year {
    display: block;
    font-size: 0.85em;
    opacity: 0.8;
}

.event-details {
    flex: 1;
}

.event-type {
    font-size: 0.8em;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.event-details h3 {
    margin: 8px 0 10px;
    font-size: 1.4em;
}

.event-description {
    opacity: 0.8;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 25px;
    font-size: 0.9em;
    opacity: 0.7;
}

.event-meta i {
    margin-right: 8px;
}

.event-action {
    flex: 0 0 auto;
}

/* Booking CTA */
.booking-cta {
    padding: 60px 20px;
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
}

.booking-container h2 {
    margin-bottom: 15px;
}

.booking-container p {
    opacity: 0.8;
    margin-bottom: 25px;
}

/* ========================================
   PRESS KIT PAGE
   ======================================== */

.press-section {
    padding: 60px 20px;
}

.press-container {
    max-width: 900px;
    margin: 0 auto;
}

.press-block {
    padding: 40px;
    margin-bottom: 30px;
}

.press-block h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.5em;
}

.press-block h2 i {
    color: var(--color-accent);
}

.press-content p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 15px;
}

.press-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    opacity: 0.7;
}

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.download-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.download-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.download-preview.dark-bg {
    background: #111;
}

.download-preview.light-bg {
    background: #eee;
}

.download-preview img {
    max-height: 80px;
    max-width: 100%;
}

.download-info {
    padding: 20px;
}

.download-info h4 {
    margin-bottom: 5px;
}

.download-info p {
    font-size: 0.85em;
    opacity: 0.7;
    margin-bottom: 15px;
}

.download-info .btn {
    margin-right: 10px;
}

/* Color Palette */
.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.color-swatch {
    padding: 40px 20px 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.color-name {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.color-hex {
    font-size: 0.85em;
    opacity: 0.7;
}

.press-email a {
    font-size: 1.3em;
    color: var(--color-accent);
}

/* ========================================
   LICENSING PAGE
   ======================================== */

.licensing-section {
    padding: 60px 20px;
}

.licensing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.licensing-intro {
    text-align: center;
    padding: 50px;
    margin-bottom: 60px;
}

.licensing-intro h2 {
    margin-bottom: 15px;
}

.licensing-intro p {
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.license-card {
    padding: 30px;
    text-align: center;
}

.license-icon {
    font-size: 2.5em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.license-card h3 {
    margin-bottom: 15px;
}

.license-card p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.license-card ul {
    list-style: none;
    text-align: left;
}

.license-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9em;
    opacity: 0.8;
}

.license-card li:last-child {
    border-bottom: none;
}

/* Sync Tracks */
.sync-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.sync-track {
    display: flex;
    gap: 15px;
    padding: 15px;
    align-items: center;
}

.sync-track img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.sync-info h4 {
    margin-bottom: 3px;
}

.sync-info p {
    font-size: 0.85em;
    opacity: 0.7;
    margin-bottom: 5px;
}

.sync-mood {
    font-size: 0.75em;
    color: var(--color-accent);
}

/* Licensing Process */
.licensing-process {
    padding: 50px;
    margin-bottom: 40px;
}

.licensing-process h2 {
    text-align: center;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step h4 {
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9em;
    opacity: 0.7;
}

.licensing-cta {
    text-align: center;
    padding: 50px;
}

.licensing-cta h2 {
    margin-bottom: 15px;
}

.licensing-cta p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.85em;
    opacity: 0.6;
}

/* ========================================
   SHOP PAGE
   ======================================== */

.shop-section {
    padding: 60px 20px;
}

.shop-container {
    max-width: 1000px;
    margin: 0 auto;
}

.shop-banner {
    text-align: center;
    padding: 80px 40px;
    margin-bottom: 60px;
}

.banner-icon {
    font-size: 4em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.shop-banner h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.shop-banner p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.notify-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.notify-form input {
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-size: 1em;
    width: 280px;
}

.notify-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Streaming Grid */
.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.streaming-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    text-decoration: none;
    color: var(--color-text);
    transition: all var(--transition-smooth);
}

.streaming-card:hover {
    transform: translateY(-5px);
    background: var(--glass-bg-hover);
}

.streaming-card i {
    font-size: 2.5em;
    color: var(--color-accent);
}

/* Shop Albums */
.shop-albums {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.shop-album {
    overflow: hidden;
    transition: transform var(--transition-smooth);
}

.shop-album:hover {
    transform: translateY(-5px);
}

.shop-album img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.album-info {
    padding: 20px;
    text-align: center;
}

.album-info h3 {
    margin-bottom: 5px;
}

.album-info p {
    opacity: 0.7;
    margin-bottom: 15px;
}

.album-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* ========================================
   FOOTER UPDATES
   ======================================== */

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    opacity: 0.7;
    transition: all var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-social a {
    color: var(--color-text);
    font-size: 1.5em;
    opacity: 0.7;
    transition: all var(--transition-smooth);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--color-accent);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE - NEW PAGES
   ======================================== */

@media screen and (max-width: 900px) {
    .artists-grid .container-wide {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        flex-direction: column;
    }
    
    .artist-image {
        flex: 0 0 250px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-meta {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .page-hero-content h1 {
        font-size: 2.5em;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input {
        width: 100%;
    }
    
    .press-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
