:root {
    --transition: 0.3s ease;
}

/* Light Theme (Default) */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --border: #e8e8e8;
    --accent: #000000;
    --overlay: rgba(0, 0, 0, 0.9);
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #666666;
    --border: #222222;
    --accent: #ffffff;
    --overlay: rgba(255, 255, 255, 0.9);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.6;
    cursor: none;
    transition: background-color var(--transition), color var(--transition);
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background-color var(--transition);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

/* Fixed Controls */
.fixed-controls {
    position: fixed;
    top: 5rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.music-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.theme-toggle,
.music-toggle,
.music-btn {
    background: var(--bg-primary);
    border: 1px solid var(--accent);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all var(--transition);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.music-btn .pause-icon {
    display: none;
}

.music-btn.playing .play-icon {
    display: none;
}

.music-btn.playing .pause-icon {
    display: block;
}

.music-btn.pulse {
    animation: pulse 2s infinite;
}

.volume-slider {
    writing-mode: bt-lr; /* IE */
    -webkit-appearance: slider-vertical; /* WebKit */
    width: 8px;
    height: 100px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: all var(--transition);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    transition: all var(--transition);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.volume-slider:hover::-webkit-slider-thumb {
    transform: scale(1.2);
}

.volume-slider:hover::-moz-range-thumb {
    transform: scale(1.2);
}

.theme-toggle:hover,
.music-toggle:hover,
.music-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.05);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    z-index: 999;
    background: var(--bg-primary);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.main-nav.scrolled {
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    background: var(--bg-primary);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color var(--transition);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    color: var(--text-primary);
    transition: opacity var(--transition);
}

.logo:hover .logo-image {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: color var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 4rem 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 0.8;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.hero-title .line {
    display: block;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Primary Social Links */
.primary-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-primary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.social-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    transition: left 0.5s ease;
}

.social-primary:hover::before {
    left: 0;
}

.social-primary:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

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

.social-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.social-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 0.25rem;
}

.social-handle {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

.social-arrow {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.social-primary:hover .social-arrow {
    opacity: 1;
    transform: translateX(0);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Image - Modern Design */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    animation: heroImageFadeIn 1.5s ease-out 0.3s forwards;
}

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

.image-frame {
    position: relative;
    width: 100%;
    max-width: clamp(400px, 50vw, 700px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-out;
}

/* Animated Glow Effect */
.frame-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        var(--accent),
        transparent,
        var(--accent)
    );
    border-radius: 2px;
    opacity: 0.3;
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Portrait Image */
.hero-portrait {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.image-frame:hover .hero-portrait {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.image-frame:hover .frame-glow {
    opacity: 0.8;
    filter: blur(30px);
}

/* Twitch Preview */
/* Twitch Preview Backdrop */
.twitch-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.twitch-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

/* Twitch Preview */
.twitch-preview {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 900px;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    padding: 2rem;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.twitch-preview.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.twitch-embed-container {
    width: 100%;
    aspect-ratio: 16/9;
}

.twitch-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-preview {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 1px solid var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
    transition: all var(--transition);
}

.close-preview:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Sections */
.about,
.gallery,
.videos,
.collaborators,
.connect {
    padding: 8rem 4rem;
}

.about {
    background: var(--bg-secondary);
}

.section-header {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.section-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-tertiary);
    font-style: italic;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
}

/* About Section */
.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 4rem;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.about-point h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.about-point p {
    line-height: 1.8;
}

.aesthetic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.aesthetic-tags span {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.aesthetic-tags span:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.gallery-item {
    grid-column: span 4;
}

.gallery-item.large {
    grid-column: span 8;
}

.gallery-item.wide {
    grid-column: span 12;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.gallery-item.wide .gallery-image {
    aspect-ratio: 16/9;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border);
}

.placeholder-content {
    text-align: center;
    color: var(--text-secondary);
}

.plus {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* Videos Section */
.videos {
    background: var(--bg-secondary);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    overflow: hidden;
}

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

.tiktok-wrapper {
    padding-bottom: 177%;
}

.video-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Schedule Section */
.schedule {
    padding: 8rem 4rem;
}

.schedule-container {
    max-width: 1400px;
    margin: 0 auto;
}

.schedule-note {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.schedule-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.schedule-day {
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    transition: all var(--transition);
}

.schedule-day.today {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}

.schedule-day:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.day-header {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-tertiary);
}

.day-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.day-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
}

.schedule-slots {
    padding: 1.5rem 1rem;
}

.schedule-slot {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
}

.schedule-slot.off {
    opacity: 0.5;
    border-left-color: var(--text-tertiary);
}

.schedule-slot.special {
    border-left-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
}

.slot-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
}

.slot-content {
    font-size: 0.95rem;
    font-weight: 500;
}

.slot-platform {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
}

.schedule-cta {
    text-align: center;
    padding: 3rem 0;
}

.schedule-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.schedule-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--accent);
    transition: all var(--transition);
}

.schedule-button:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
}

/* Collaborators */
.collab-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

/* Carousel Section */
.carousel-section {
    padding: 0;
    overflow: hidden;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    animation: scroll 60s linear infinite;
    will-change: transform;
}

.carousel-item {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    margin: 2rem 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.carousel-item:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    z-index: 10;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Discord Widget */
/* Latest Video */
.latest-video {
    padding: 8rem 4rem;
    background: var(--bg-secondary);
}

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

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.video-link:hover {
    color: var(--accent);
}

/* Discord Separator */
.discord-separator {
    padding: 4rem 4rem;
    background: var(--bg-secondary);
    text-align: center;
}

.discord-content {
    max-width: 600px;
    margin: 0 auto;
}

.discord-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: #5865F2;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition);
}

.discord-button svg {
    width: 24px;
    height: 24px;
}

.discord-button:hover {
    background: #4752C4;
    transform: translateY(-3px);
}

/* All Links Section */
.all-links {
    padding: 8rem 4rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition);
}

.link-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.link-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.link-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.link-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Brand Partners */
.brand-partners {
    padding: 8rem 4rem;
    background: var(--bg-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.partner-slot {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-placeholder {
    width: 100%;
    height: 100%;
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Fan Art */
.fanart {
    padding: 8rem 4rem;
}

.fanart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fanart-item {
    aspect-ratio: 1;
    border: 1px solid var(--border);
    overflow: hidden;
}

.fanart-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: dashed;
}

.fanart-placeholder {
    text-align: center;
    color: var(--text-secondary);
}

.fanart-placeholder .plus {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fanart-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Featured Art Section */
.featured-art {
    padding: 8rem 4rem;
    background: var(--bg-secondary);
}

.featured-art-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-art-image {
    width: 100%;
    border: 1px solid var(--border);
    padding: 3rem;
    background: var(--bg-primary);
}

.featured-art-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Minimal */
.gallery-minimal {
    padding: 8rem 4rem;
}

.gallery-minimal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.gallery-minimal-item .gallery-image {
    width: 100%;
    aspect-ratio: 16/9;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.gallery-minimal-item .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-minimal-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-minimal-item .gallery-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-minimal-item .gallery-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Credits */
.credits {
    padding: 8rem 4rem;
    background: var(--bg-secondary);
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.credit-item {
    text-align: center;
}

.credit-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.credit-item p {
    font-size: 1.1rem;
    font-weight: 400;
}

.credit-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.credit-link:hover {
    color: var(--accent);
}

/* Collaborators */
.collab-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.collab-item {
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    transition: transform var(--transition);
}

.collab-item:visited {
    color: var(--text-primary);
}

.collab-item:hover {
    transform: translateY(-5px);
}

.collab-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.collab-item:hover .collab-image {
    transform: scale(1.05);
    border-color: var(--accent);
}

.collab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collab-initial {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    user-select: none;
}

.collab-name {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.collab-item:hover .collab-name {
    color: var(--accent);
}

/* Connect */
.connect {
    background: var(--bg-secondary);
}

.connect-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 4rem;
}

.connect-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.connect-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.secondary-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.secondary-socials a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: all var(--transition);
}

.secondary-socials a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.secondary-socials a:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    padding: 4rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-meta {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-meta span {
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-item.large {
        grid-column: span 6;
    }
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding: 10rem 2rem 4rem;
    }

    .main-nav {
        padding: 1rem 1.5rem;
    }

    .hero-image {
        margin-top: 4rem;
    }

    .image-frame {
        max-width: min(400px, 90vw);
    }

    .frame-glow {
        filter: blur(15px);
    }

    .about,
    .gallery,
    .videos,
    .schedule,
    .collaborators,
    .connect,
    .latest-video,
    .discord-separator,
    .all-links,
    .brand-partners,
    .fanart,
    .featured-art,
    .gallery-minimal,
    .credits {
        padding: 6rem 2rem;
    }

    .section-header,
    .about-content,
    .connect-content {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }

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

    .gallery-item,
    .gallery-item.large {
        grid-column: span 6;
    }

    .collab-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-minimal-grid {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-menu {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }

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

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .fanart-grid {
        grid-template-columns: 1fr;
    }

    .credits-grid {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        width: 200px;
        height: 200px;
        margin: 1.5rem 0.5rem;
    }

    .section-header,
    .about-content,
    .connect-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-meta {
        text-align: left;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    .fixed-controls {
        top: 4.5rem;
        right: 1rem;
        gap: 0.5rem;
    }

    .theme-toggle,
    .music-toggle,
    .music-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .volume-slider {
        height: 80px;
    }

    .discord-separator {
        padding: 4rem 1rem;
    }

    .discord-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .twitch-preview {
        width: 95%;
        padding: 1.5rem;
        max-width: none;
    }

    .twitch-embed-container {
        aspect-ratio: 16/9;
    }

    .close-preview {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Scroll Reveal Animations */
body.js-loaded .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

body.js-loaded .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for grid items */
body.js-loaded .stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.js-loaded .stagger-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }
.delay-6 { transition-delay: 0.9s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .stagger-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.hero-content,
.hero-image,
.gallery-item,
.video-item,
.collab-item {
    animation: fadeInUp 0.8s ease forwards;
}

/* ============================================================
   LIVE BANNER FIX - Prevents glow from showing when hidden
   ============================================================ */

.live-banner {
  overflow: hidden; /* Prevents glow from showing */
}

.live-banner:not(.show) .live-banner-content {
  box-shadow: none; /* Additional fix - removes shadows when hidden */
}


/* ============================================================
   TITLE ANIMATION - "ALTERNATIVE SOFTBOY NARWHAL"
   Subtle fade-in with glow effect
   ============================================================ */

.hero-title .char {
  display: inline-block;
  position: relative;
  opacity: 0.7;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInChar 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards,
             subtleGlow 4s ease-in-out infinite;
  animation-delay: calc(var(--char-index) * 0.05s),
                   calc(var(--char-index) * 0.1s);
}

@keyframes fadeInChar {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes subtleGlow {
  0%, 100% {
    text-shadow: 
      0 0 10px rgba(138, 187, 255, 0.1),
      0 0 20px rgba(138, 187, 255, 0.05);
  }
  50% {
    text-shadow: 
      0 0 15px rgba(138, 187, 255, 0.2),
      0 0 30px rgba(138, 187, 255, 0.1);
  }
}

/* Title hover effects */
.hero-title:hover .char {
  opacity: 1;
}

.hero-title .char:hover {
  opacity: 1;
  color: var(--accent-primary);
  text-shadow: 
    0 0 20px rgba(138, 187, 255, 0.6),
    0 0 40px rgba(138, 187, 255, 0.3);
  transform: scale(1.05) translateY(-2px);
}

/* Preserve spacing for spaces between words */
.hero-title .char.space {
  width: 0.3em;
}
/* ============================================================
   LIVE BANNER - Red Chrome/Liquid Glass Aesthetic
   ============================================================ */

.live-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.live-banner.show {
  transform: translateY(0);
}

.live-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.95) 0%,
    rgba(185, 28, 28, 0.95) 50%,
    rgba(153, 27, 27, 0.95) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px 0 rgba(220, 38, 38, 0.37),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
    0 4px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Animated gradient overlay */
.live-banner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Live indicator */
.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 
    0 0 0 0 rgba(255, 255, 255, 0.7),
    0 0 12px rgba(255, 255, 255, 0.5);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.live-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Live info */
.live-info {
  flex: 1;
  min-width: 0;
}

.live-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.live-game {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Watch Live button */
.live-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: #dc2626;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.live-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.live-button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.live-button:hover::before {
  opacity: 1;
}

.live-button:active {
  transform: translateY(0);
}

.live-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.live-button:hover .live-arrow {
  transform: translateX(4px);
}

/* Close button */
.live-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.live-close svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

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

.live-close:active {
  transform: scale(0.95);
}

/* Dark theme adjustments */
[data-theme="dark"] .live-banner-content {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.98) 0%,
    rgba(185, 28, 28, 0.98) 50%,
    rgba(153, 27, 27, 0.98) 100%
  );
}

/* Light theme adjustments */
[data-theme="light"] .live-banner-content {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.95) 0%,
    rgba(220, 38, 38, 0.95) 50%,
    rgba(185, 28, 28, 0.95) 100%
  );
}

/* Responsive */
@media (max-width: 768px) {
  .live-banner-content {
    padding: 0.875rem 1rem;
    gap: 1rem;
  }
  
  .live-title {
    font-size: 1rem;
  }
  
  .live-game {
    font-size: 0.75rem;
  }
  
  .live-button {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
  }
  
  .live-button span {
    display: none;
  }
  
  .live-arrow {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .live-info {
    max-width: 150px;
  }
  
  .live-text {
    font-size: 0.75rem;
  }
  
  .live-dot {
    width: 10px;
    height: 10px;
  }
}

/* Smooth body padding transition when banner shows */
body {
  transition: padding-top 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}
/* ============================================================
   ADDITIONAL CSS UPDATES
   Add these to your style-UPDATED.css
   ============================================================ */

/* ============================================================
   1. LIVE BANNER - AGGRESSIVE HIDING (Fixes red line at top)
   ============================================================ */

.live-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(-100%); /* Move completely off screen */
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1),
              visibility 0s 0.5s; /* Delay visibility change */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  overflow: hidden; /* Prevents any overflow */
  visibility: hidden; /* Completely hide when not shown */
  opacity: 0; /* Extra hiding */
  pointer-events: none; /* Can't interact when hidden */
}

.live-banner.show {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1),
              visibility 0s 0s, /* Immediate visibility */
              opacity 0.3s ease; /* Fade in */
}

/* Remove ALL visual effects when hidden */
.live-banner:not(.show) .live-banner-content {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

/* Extra aggressive - move further off screen */
.live-banner:not(.show) {
  transform: translateY(-150%);
  top: -200px; /* Move way off screen */
}


/* ============================================================
   2. SCHEDULE - Past Stream Styling
   ============================================================ */

/* Past streams - slightly faded but still visible */
.schedule-slot.past {
  opacity: 0.6;
  position: relative;
}

.schedule-slot.past::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.schedule-slot.past .slot-time,
.schedule-slot.past .slot-content {
  text-decoration: none;
}

/* Current live stream - highlight */
.schedule-slot.live {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(185, 28, 28, 0.05) 100%);
  border: 1px solid rgba(220, 38, 38, 0.3);
  position: relative;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
  }
}

.slot-live-indicator {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: liveBlink 2s ease-in-out infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Today highlight - stronger */
.schedule-day.today {
  background: rgba(138, 187, 255, 0.03);
  border: 1px solid rgba(138, 187, 255, 0.1);
  box-shadow: 0 0 20px rgba(138, 187, 255, 0.05);
}

[data-theme="dark"] .schedule-day.today {
  background: rgba(138, 187, 255, 0.05);
  border: 1px solid rgba(138, 187, 255, 0.15);
}

/* Make schedule cleaner when empty */
.schedule-slot.off {
  opacity: 0.5;
}

/* ============================================================
   TODAY HIGHLIGHTING - Stronger white border
   ============================================================ */

.schedule-day.today {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .schedule-day.today {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .schedule-day.today {
  background: rgba(138, 187, 255, 0.05);
  border: 2px solid rgba(138, 187, 255, 0.4) !important;
  box-shadow: 
    0 0 20px rgba(138, 187, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ============================================================
   TODAY BORDER - Turns RED when streaming live
   ============================================================ */

/* When today has a live stream, border turns red with pulse */
.schedule-day.today:has(.schedule-slot.live) {
  border: 2px solid rgba(220, 38, 38, 0.8) !important;
  border-radius: 0 !important;
  box-shadow: 
    0 0 30px rgba(220, 38, 38, 0.3),
    0 0 60px rgba(220, 38, 38, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: liveDayPulse 2s ease-in-out infinite;
}

@keyframes liveDayPulse {
  0%, 100% {
    box-shadow: 
      0 0 30px rgba(220, 38, 38, 0.3),
      0 0 60px rgba(220, 38, 38, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 
      0 0 40px rgba(220, 38, 38, 0.5),
      0 0 80px rgba(220, 38, 38, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

[data-theme="dark"] .schedule-day.today:has(.schedule-slot.live) {
  border: 2px solid rgba(220, 38, 38, 0.9) !important;
  background: rgba(220, 38, 38, 0.05);
}

[data-theme="light"] .schedule-day.today:has(.schedule-slot.live) {
  border: 2px solid rgba(220, 38, 38, 0.7) !important;
  background: rgba(220, 38, 38, 0.03);
}
/* ============================================================
   IMAGE PROTECTION CSS
   Makes it harder to download/save images
   ============================================================ */

/* Disable text/image selection on protected elements */
.hero-portrait,
.fanart-item img,
.gallery-image img,
.featured-art-image img,
.carousel-item img,
.gallery-minimal-item img,
.image-frame,
.hero-image {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* Prevent highlighting/selection on image containers */
.hero-image,
.fanart-grid,
.gallery-minimal-grid,
.carousel-section,
.featured-art-container {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Disable pointer events on images (but overlay handles clicks) */
img.protected {
  pointer-events: none;
}

/* Protection overlay styling */
.image-protection-overlay {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Optional: Add watermark to images using CSS */
.hero-portrait::after,
.featured-art-image img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(255, 255, 255, 0.01) 100px,
    rgba(255, 255, 255, 0.01) 200px
  );
  pointer-events: none;
  z-index: 5;
}

/* Copyright notice styling */
.copyright-notice {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  border-radius: 4px;
  z-index: 15;
  pointer-events: none;
  user-select: none;
}
/* ============================================
   Collaborators Section
   ============================================ */

.collaborators-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.collaborators-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.collaborators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
  padding: 20px;
}

.collaborator-card {
  text-align: center;
  transition: transform 0.3s ease;
}

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

.collaborator-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.collaborator-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9146ff;
  margin: 0 auto 10px;
  display: block;
  transition: border-color 0.3s ease;
}

.collaborator-card:hover .collaborator-avatar {
  border-color: var(--accent);
}

.collaborator-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 10px;
}

.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.no-data {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .collaborators-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
  }
  
  .collaborator-avatar {
    width: 100px;
    height: 100px;
  }
  
  .collaborators-title {
    font-size: 2rem;
  }
}

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