/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Full-screen background video wrapper */
.video-background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: var(--app-height, 100%);
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

/* Animated Logo */
.animated-logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    font-weight: 100;
    letter-spacing: 0.2em;
    display: inline-block;
    white-space: nowrap;
}

.logo-part {
    transition: opacity 0.8s ease;
    display: inline-block;
}

.logo-julie,
.logo-agnan {
    color: #ffffff;
    opacity: 0;
    font-size: 0.8em;
    top: 50%;
}

.logo-julie {
    position: absolute;
    right: 100%;
    transform: translateX(0.05em) translateY(-50%);
    transform-origin: 100% 50%;
}

.logo-agnan {
    position: absolute;
    left: 100%;
    transform: translateX(0.5em) translateY(-50%);
    transform-origin: 0% 50%;
}

.logo-nm {
    color: #d4af37;
    font-weight: 300;
    opacity: 1;
    letter-spacing: -0.25em;
    position: relative;
}

@keyframes fadeInHoldOut {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Main Container */
.container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100vh;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sections - width is set dynamically by JavaScript for cross-browser consistency */
.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px 120px 100px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    box-sizing: border-box;
}

/* Individual black backgrounds on video items instead of full-section overlay */

.contact-bio {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
    opacity: 0.8;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}

.video-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}

/* FICTION section - 3 thumbnails in a row */
.video-grid-fiction {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.video-grid-fiction .video-item {
    flex: 1 1 0;
    max-width: 350px;
    min-width: 280px;
}

.video-grid-scrollable {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.video-grid-scrollable::-webkit-scrollbar {
    width: 4px;
}

.video-grid-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.video-grid-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000000;
    overflow: hidden;
    opacity: 1 !important;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background-color: #000000 !important;
    opacity: 1 !important;
}

.video-info {
    font-size: clamp(0.6rem, 0.9vw, 0.75rem);
    font-weight: 300;
    opacity: 0.7;
    line-height: 1.4;
    text-align: center;
    word-break: break-word;
}

.video-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.video-link:hover {
    color: #d4af37;
}

.video-title {
    font-size: clamp(0.65rem, 1vw, 0.85rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    text-align: center;
}

/* External Links */
.external-link-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 30px;
}

.external-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.external-link:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.link-icon {
    opacity: 0.8;
}

.link-icon svg {
    stroke: #d4af37;
    fill: none;
}

.link-text {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.link-url {
    font-size: clamp(0.75rem, 1.5vw, 1.1rem);
    font-weight: 300;
    opacity: 0.6;
    letter-spacing: 0.02em;
}

.content {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography */
.title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 100;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    opacity: 0.8;
}

.description {
    font-size: clamp(0.85rem, 1.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 100;
    line-height: 0.9;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Section Grids */
.section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    flex: 1;
    align-items: center;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.grid-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.grid-item h3 {
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    font-weight: 200;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    flex: 1;
    justify-content: center;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 8px;
}

.contact-label {
    font-size: clamp(0.65rem, 1vw, 0.85rem);
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.contact-value {
    font-size: clamp(0.85rem, 2vw, 1.4rem);
    font-weight: 200;
    letter-spacing: 0.02em;
    word-break: break-word;
}

.contact-link {
    color: #d4af37;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

/* Bottom Menu */
.bottom-menu {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 100;
    padding: 0 20px;
    flex-wrap: wrap;
}

.menu-item {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
    position: relative;
    padding: 8px 4px;
    -webkit-tap-highlight-color: transparent;
}

.menu-item:hover {
    opacity: 1;
}

.menu-item.active {
    opacity: 1;
}

.menu-item.active .menu-label {
    color: #d4af37;
}

.menu-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #d4af37;
}

.menu-label {
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Mobile Home Menu - displayed directly on home page */

.mobile-home-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 40px 20px 20px 20px;
}

.mobile-home-nav-item {
    font-size: 1.1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    opacity: 0.5;
    cursor: pointer;
    padding: 10px 16px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}

.mobile-home-nav-item:hover,
.mobile-home-nav-item.active {
    opacity: 1;
    color: #d4af37;
}

/* Mobile Slim Navigation Bar - visible when scrolling */
.mobile-slim-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 8px 10px;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-slim-nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-slim-nav-item {
    font-size: 0.6rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    opacity: 0.4;
    cursor: pointer;
    padding: 8px 8px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

.mobile-slim-nav-item:hover,
.mobile-slim-nav-item.active {
    opacity: 1;
    color: #d4af37;
}

/* Hamburger Menu for Mobile */
.hamburger-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-item {
    font-size: 1.5rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    opacity: 0.6;
    cursor: pointer;
    padding: 15px 30px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    opacity: 1;
    color: #d4af37;
}

/* Progress Indicator */
.progress {
    position: fixed;
    bottom: 20px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: #ffffff;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Section Variants */
.section-home,
.section-clips .content {
    align-items: flex-start;
    text-align: left;
}

.section-clips .video-grid {
    margin-left: auto;
    margin-right: auto;
}

.section-music .content {
    align-items: flex-start;
    text-align: left;
}

.section-music .soundcloud-card {
    margin-left: auto;
    margin-right: auto;
}

.section-clips,
.section-fiction,
.section-advertising,
.section-music,
.section-kraftreel,
.section-contact {
    background: transparent;
}

/* Desktop Hero - Visible spacer to prevent HOME from collapsing */
.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 100px;
    min-height: 100px;
}

/* Desktop Home Menu - category list on HOME section */
.desktop-home-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

/* Hide bottom menu when on HOME section */
body.on-home-section .bottom-menu {
    display: none;
}

.desktop-home-nav-item {
    font-size: 1.1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    opacity: 0.5;
    cursor: pointer;
    padding: 10px 16px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}

.desktop-home-nav-item:hover {
    opacity: 1;
    color: #d4af37;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 200;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
    text-align: center;
}

@media (max-width: 480px) {
    .home-hero {
        display: none;
    }
    .desktop-home-menu {
        display: none;
    }
    .section-home {
        flex: none;
        min-width: auto;
        width: 100%;
    }
}

/* SoundCloud Icon */
.soundcloud-icon {
    width: clamp(30px, 6vw, 60px);
    height: auto;
    flex-shrink: 0;
}

/* SoundCloud Card */
.soundcloud-card {
    background-color: #000000;
    max-width: 500px;
    overflow: hidden;
    margin: 0 auto;
}

.soundcloud-tracks {
    display: flex;
    flex-direction: column;
}

.soundcloud-track {
    background-color: #000000;
}

.soundcloud-track iframe {
    display: block;
}

.soundcloud-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #000000;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.soundcloud-card-header:hover {
    opacity: 0.8;
}

.soundcloud-card-header .link-text {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* KRAFTREEL Section Layout */
.kraftreel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.kraftreel-title {
    margin-bottom: 25px;
}

.kraftreel-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
}

.kraftreel-left {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.kraftreel-right {
    flex: 1 1 300px;
    max-width: 450px;
}

.kraftreel-card {
    display: flex;
    flex-direction: column-reverse;
    background-color: #000000;
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.kraftreel-card:hover {
    opacity: 0.9;
}

.kraftreel-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1 !important;
}

.kraftreel-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: #000000;
}

.kraftreel-card-footer .link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kraftreel-card-footer .link-text {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.kraftreel-description {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.02em;
    opacity: 0.8;
    text-align: justify;
}

.kraftreel-instagram {
    margin-top: 15px;
}

.kraftreel-link {
    padding: 20px 30px;
}

.golden-link {
    color: #d4af37;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.golden-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ======================= */
/* RESPONSIVE BREAKPOINTS  */
/* ======================= */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .section {
        padding: 60px 40px 100px 40px;
    }
    
    .progress {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .bottom-menu {
        bottom: 50px;
        gap: 25px;
        padding: 0 15px;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .grid-item {
        height: 120px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
    
    .contact-info {
        gap: 15px;
        margin-top: 25px;
    }
    
    .video-grid-3,
    .video-grid-scrollable {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .video-grid-fiction {
        gap: 30px;
    }
    
    .video-grid-fiction .video-item {
        flex: 0 0 200px;
        max-width: 200px;
    }
    
    .kraftreel-layout {
        gap: 40px;
    }
}

/* Small Tablet / Large Phone - 768px and below */
@media (max-width: 768px) {
    .section {
        padding: 70px 25px 100px 25px;
    }
    
    .grid-item {
        height: 100px;
    }
    
    .section-grid {
        gap: 15px;
        margin-top: 20px;
    }
    
    .contact-info {
        gap: 12px;
        margin-top: 20px;
    }
    
    .contact-item {
        padding: 10px 0;
    }
    
    .bottom-menu {
        bottom: 45px;
        gap: 15px;
        padding: 0 10px;
    }
    
    .menu-label {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
    
    .video-grid-3,
    .video-grid-scrollable {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-grid-fiction {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .video-grid-fiction .video-item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }
    
    .external-link {
        padding: 30px 40px;
    }
    
    .kraftreel-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .kraftreel-left,
    .kraftreel-right {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    
    .kraftreel-left {
        text-align: center;
    }
    
    .kraftreel-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    body {
        overflow-y: auto;
    }
    
    
    .container {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        width: 100%;
        height: auto;
        min-height: 100vh;
    }
    
    .section {
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 80px 20px 120px 20px;
        overflow-y: auto;
    }
    
    .section-home {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .animated-logo {
        top: 20px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .bottom-menu {
        display: none;
    }
    
    .hamburger-menu {
        display: none;
    }
    
    .mobile-nav-overlay {
        display: none;
    }
    
    .mobile-home-menu {
        display: flex;
    }
    
    .mobile-slim-nav {
        display: flex;
    }
    
    .progress {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .video-grid {
        gap: 20px;
        margin-top: 20px;
    }
    
    .video-grid-scrollable {
        max-height: none;
        overflow-y: visible;
        grid-template-columns: 1fr;
    }
    
    .video-grid-fiction .video-item {
        max-width: 100%;
    }
    
    .external-link {
        padding: 25px 30px;
        width: 100%;
        max-width: 280px;
    }
    
    .contact-bio {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .contact-info {
        gap: 10px;
        margin-top: 15px;
    }
    
    .contact-item {
        padding: 12px 0;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .kraftreel-description {
        font-size: 0.85rem;
    }
    
    .kraftreel-link {
        padding: 15px 25px;
    }
    
    .kraftreel-instagram {
        display: flex;
        justify-content: center;
    }
    
    .link-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .content {
        justify-content: flex-start;
        padding-top: 20px;
    }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .section {
        padding: 70px 15px 110px 15px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .external-link {
        padding: 20px 25px;
    }
    
    .link-text {
        font-size: 1rem;
    }
    
    .link-url {
        font-size: 0.7rem;
    }
    
    .mobile-nav-item {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    
    .video-title {
        font-size: 0.6rem;
    }
    
    .video-info {
        font-size: 0.55rem;
    }
}

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

.section .content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.section .content > *:nth-child(1) { animation-delay: 0.1s; }
.section .content > *:nth-child(2) { animation-delay: 0.2s; }
.section .content > *:nth-child(3) { animation-delay: 0.3s; }

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .menu-item {
        padding: 12px 8px;
    }
    
    .grid-item:hover {
        transform: none;
    }
}
