/* Homepage Specific Styles */

/* Home - Structured Hero */
#home {
    position: relative;
    padding-top: calc(56.25vw + 8vh);
    padding-bottom: 5vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
}

.hero-title {
    position: relative;
    margin: 0 0 8vh 10vw;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -8px;
    z-index: 2;
}

.hero-subtitle {
    position: relative;
    margin: 0 15vw 10vh auto;
    font-size: 1.2rem;
    font-weight: 200;
    max-width: 400px;
    text-align: right;
    z-index: 2;
}

.floating-shape {
    position: absolute;
    animation: float 10s ease-in-out infinite;
}

.shape1 {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    top: 5%;
    right: 5%;
    opacity: 0.15;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: -1;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: var(--coral);
    bottom: 5%;
    left: 5%;
    opacity: 0.2;
    animation-delay: -5s;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: -1;
}

.shape3 {
    width: 120px;
    height: 120px;
    background: var(--mint);
    top: 50%;
    left: 50%;
    opacity: 0.15;
    animation-delay: -2s;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: -1;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotateZ(0deg); 
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    }
    25% { 
        transform: translate(30px, -30px) scale(1.1) rotateZ(90deg); 
        filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    }
    50% { 
        transform: translate(-20px, 20px) scale(0.9) rotateZ(180deg); 
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
    }
    75% { 
        transform: translate(40px, 10px) scale(1.05) rotateZ(270deg); 
        filter: drop-shadow(0 25px 50px rgba(0,0,0,0.35));
    }
}

/* Video Slider Container */
.video-slider-container {
    position: relative;
    width: 80%;
    margin: 10vh auto;
    z-index: 1;
}

/* Main video slider */
.video-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-slide.active {
    opacity: 1;
}

.video-item {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.video-slide.active .video-item {
    cursor: pointer;
}

.video-slide.playing .video-item {
    cursor: default;
}

.video-item iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    z-index: 10;
}

/* VIDEO SLIDER PLACEHOLDER STYLING */
.placeholder-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #f2f2f2;
    padding: 2rem;
    background: rgba(43, 64, 128, 0.8);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.placeholder-message h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #6EC1E4;
}

.placeholder-message p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.placeholder-message code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    color: #FFD700;
}

/* Main Video Slider Styles */
.video-display {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-slide:hover .video-background {
    filter: brightness(0.5) saturate(1.2);
    transform: scale(1.01);
}

.video-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    transform: translateY(0);
    transition: all 0.2s ease;
}

.video-slide:hover .video-content {
    transform: translateY(-5px);
}

/* Disable hover effects when playing to prevent conflicts */
.video-slide.playing:hover .video-background {
    filter: brightness(0.7);
    transform: scale(1);
}

.video-slide.playing:hover .video-content {
    transform: translateY(0);
}

.video-slide.playing .video-overlay {
    pointer-events: none !important;
}

.video-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    line-height: 0.85;
    text-transform: uppercase;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    animation: titleGlow 0.6s ease-out;
}

@keyframes titleGlow {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.video-description {
    font-size: 1.2rem;
    color: #f2f2f2;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #6EC1E4 0%, #2B4080 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(110, 193, 228, 0.4);
    position: relative;
    overflow: hidden;
}

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

.play-button:hover::before {
    left: 100%;
}

.play-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(110, 193, 228, 0.6);
    background: linear-gradient(135deg, #7FCEF0 0%, #3A4F95 100%);
}

.play-button:active {
    transform: translateY(-1px) scale(1.02);
}

.play-icon {
    font-size: 1.3rem;
    margin-left: 2px;
}

.play-text {
    font-weight: 800;
}

.video-slide.playing .video-overlay {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.50) 0%, rgba(43, 64, 128, 0.40) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    transition: all 0.2s ease;
    z-index: 10;
}

/* Prevent pointer events during transitions to avoid flashing */
.video-slide.transitioning .video-overlay {
    pointer-events: none;
}

.video-slide.transitioning .play-button {
    pointer-events: none;
}

.video-slide:hover .video-overlay {
    background: linear-gradient(135deg, rgba(43, 64, 128, 0.70) 0%, rgba(110, 193, 228, 0.50) 100%);
}

/* Disable hover overlay effects when playing */
.video-slide.playing:hover .video-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.50) 0%, rgba(43, 64, 128, 0.40) 100%);
}

/* Video embed container for inline playback */
.video-embed-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-slide.playing .video-embed-container {
    opacity: 1;
    pointer-events: all;
}

.video-embed-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 8px;
}

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--mint);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: -80px;
}

.slider-nav.next {
    right: -80px;
}

/* Thumbnail strip */
.video-thumbnails {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 3rem;
    padding: 0 2rem;
    overflow-x: auto;
    /* Hide scrollbar for IE/Edge and Firefox */
    -ms-overflow-style: none;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.video-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 68px;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.thumbnail:hover {
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--mint);
    background: rgba(78, 205, 196, 0.2);
}

/* New Thumbnail Strip Styling */
.thumbnail-navigation {
    position: relative;
    margin-top: 30px;
}

.thumbnail-strip {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    padding: 0 20px;
    padding-bottom: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* Firefox scrollbar styling - only applied in Firefox */
@supports (scrollbar-width: thin) {
    .thumbnail-strip {
        scrollbar-width: thin;
        scrollbar-color: var(--mint) rgba(255,255,255,0.1);
    }
}

.thumbnail-strip::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-strip::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 0 20px;
}

.thumbnail-strip::-webkit-scrollbar-thumb {
    background: var(--mint);
    border-radius: 3px;
}

.thumbnail-strip::-webkit-scrollbar-thumb:hover {
    background: rgba(78, 205, 196, 0.8);
}

/* Thumbnail drag scrolling */
.thumbnail-strip {
    cursor: grab;
}

.thumbnail-strip.dragging {
    cursor: grabbing;
    -webkit-user-select: none;
    user-select: none;
    scroll-behavior: auto; /* Disable smooth scrolling during drag */
}

.thumbnail-strip.dragging .thumbnail {
    pointer-events: none; /* Prevent thumbnail clicks during drag */
}

.thumbnail {
    flex-shrink: 0;
    width: 240px;
    height: 135px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.thumbnail.active {
    border-color: var(--mint);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumb-title {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
    padding: 0 8px;
}

/* Content Manifesto - Organized Grid Layout */
.content-manifesto {
    position: relative;
    margin: 15vh 0 2vh 0;
    padding: 5vh 5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
}

.manifesto-text {
    position: relative;
    max-width: 100%;
    z-index: 5;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.manifesto-text:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-10px) rotate(1deg);
    border-color: rgba(255, 255, 255, 0.2);
}

.manifesto-text h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--text);
    transform: rotate(-1.5deg);
    position: relative;
    z-index: 3;
    line-height: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.manifesto-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.8;
    flex-grow: 1;
}

/* Playful emphasis for key words */
.emphasis-word {
    font-weight: 700;
    font-style: italic;
    position: relative;
    transform: rotate(-1deg);
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.emphasis-word:hover {
    transform: rotate(1deg) scale(1.05);
}

/* Color-coded emphasis matching manifesto boxes */
.text1 .emphasis-word:hover {
    color: var(--coral);
}

.text2 .emphasis-word:hover {
    color: var(--yellow);
}

.text3 .emphasis-word:hover {
    color: var(--purple);
}

.text1, .text2, .text3 { position: relative; }

/* Individual manifesto box accent colors */
.text1:hover h3 {
    color: var(--coral);
}

.text2:hover h3 {
    color: var(--yellow);
}

.text3:hover h3 {
    color: var(--purple);
}

.manifesto-number {
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0.8;
    z-index: -1;
}

.manifesto-number span {
    font-size: 2rem;
    display: block;
    letter-spacing: 8px;
    margin-top: -1rem;
}

/* New Japanese-Inspired Expertise Section */
.expertise-container-new {
    padding: 15vh 5vw;
    position: relative;
    margin-top: 2vh;
    overflow: hidden;
}

.expertise-header {
    position: relative;
    margin-bottom: 8vh;
    text-align: center;
}

.expertise-title-jp {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 200;
    letter-spacing: 8px;
    color: var(--text);
    opacity: 0.9;
    position: relative;
    z-index: 2;
    line-height: 0.9;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    position: relative;
}

.expertise-box {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-box:hover {
    transform: translateY(-10px) rotate(1deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.expertise-video-container {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.expertise-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.expertise-content {
    padding: 2rem;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expertise-label {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: var(--text);
    transform: rotate(-2deg);
    position: relative;
    z-index: 3;
}

.expertise-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.expertise-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.expertise-button:hover::before {
    left: 100%;
}

.expertise-button:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.expertise-button:active {
    transform: translateY(0) scale(1.01);
}

.button-text {
    transition: letter-spacing 0.3s ease;
}

.expertise-button:hover .button-text {
    letter-spacing: 1.5px;
}

.button-icon {
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.expertise-button:hover .button-icon {
    transform: translateX(3px);
}

/* Tabletop button specific styling */
.expertise-box.tabletop .expertise-button:hover {
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
    border-color: var(--orange);
}

.expertise-box.tabletop .expertise-button:hover .button-text {
    color: var(--orange);
}

/* E-commerce button specific styling */
.expertise-box.ecommerce .expertise-button:hover {
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
    border-color: var(--magenta);
}

.expertise-box.ecommerce .expertise-button:hover .button-text {
    color: var(--magenta);
}

/* Individual box accent colors */
.expertise-box.live-action:hover .expertise-label {
    color: var(--coral);
}

.expertise-box.animation:hover .expertise-label {
    color: var(--yellow);
}

.expertise-box.tabletop:hover .expertise-label {
    color: var(--orange);
}

.expertise-box.ecommerce:hover .expertise-label {
    color: var(--magenta);
}

/* Film Production Full-Width Showcase Videos */
.film-production-showcase-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--dark);
    z-index: 1;
}

.showcase-video-full {
    width: 100%;
    height: 100%;
    position: relative;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
        margin-left: 5vw;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        margin-left: 10vw;
        margin-right: 5vw;
        text-align: left;
    }

    .video-slider-container {
        width: 95%;
        margin: 5vh auto;
    }
    
    .video-slider {
        height: 60vh;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    /* New Video Slider Mobile Styles */
    .video-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .video-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
        letter-spacing: -2px;
    }
    
    .video-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .play-button {
        padding: 15px 30px;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        gap: 8px;
    }
    
    .play-icon {
        font-size: 1.1rem;
    }
    
    .thumbnail-strip {
        gap: 10px;
        margin-top: 20px;
        padding: 0 15px;
    }
    
    .thumbnail {
        width: 100px;
        height: 56px;
    }
    
    .thumb-title {
        font-size: 0.65rem;
    }
    
    .video-thumbnails,
    .thumbnail-strip {
        gap: 0.8rem;
        margin-top: 2rem;
        overflow-x: auto;
        padding: 0 1rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    /* Firefox scrollbar styling for mobile - only applied in Firefox */
    @supports (scrollbar-width: thin) {
        .video-thumbnails,
        .thumbnail-strip {
            scrollbar-width: thin;
        }
    }
    
    .video-thumbnails::-webkit-scrollbar,
    .thumbnail-strip::-webkit-scrollbar {
        height: 4px;
    }
    
    .video-thumbnails::-webkit-scrollbar-track,
    .thumbnail-strip::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        border-radius: 2px;
    }
    
    .video-thumbnails::-webkit-scrollbar-thumb,
    .thumbnail-strip::-webkit-scrollbar-thumb {
        background: var(--mint);
        border-radius: 2px;
    }
    
    .thumbnail {
        width: 180px;
        height: 101px;
        flex-shrink: 0;
    }
    
    .video-overlay {
        padding: 2rem 1rem;
    }
    
    .video-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 0.8rem;
        letter-spacing: -1px;
    }
    
    .video-description {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    /* Small Mobile Video Slider Styles */
    .video-content {
        padding: 1.5rem 1rem;
    }
    
    .video-title {
        font-size: clamp(1.5rem, 10vw, 2.5rem);
        letter-spacing: -1px;
        margin-bottom: 0.8rem;
    }
    
    .video-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .play-button {
        padding: 12px 24px;
        font-size: 0.8rem;
        letter-spacing: 1px;
        gap: 6px;
    }
    
    .thumbnail {
        width: 80px;
        height: 45px;
    }
    
    .thumb-title {
        font-size: 0.6rem;
    }

    .content-manifesto {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 5vh 5vw;
    }

    .manifesto-text {
        padding: 1.5rem;
        min-height: 240px;
        border-radius: 12px;
    }

    .manifesto-text:hover {
        transform: translateY(-5px);
    }

    .manifesto-text h3 {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        letter-spacing: 2px;
        transform: rotate(-1deg);
    }

    .manifesto-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* New Expertise Section Mobile */
    .expertise-container-new {
        padding: 10vh 4vw;
        margin-top: 5vh;
    }

    .expertise-header {
        margin-bottom: 5vh;
    }

    .expertise-title-jp {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: 4px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .expertise-box {
        border-radius: 15px;
    }

    .expertise-box:hover {
        transform: translateY(-5px);
    }

    .expertise-video-container {
        height: 180px;
    }

    .expertise-content {
        padding: 1.5rem;
        min-height: 200px;
    }

    .expertise-label {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        letter-spacing: 2px;
        transform: rotate(-1deg);
    }

    .expertise-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .floating-shape {
        opacity: 0.05;
    }
}

/* Tablet/Small Desktop - Fix slider nav positioning */
@media (max-width: 900px) and (min-width: 769px) {
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .video-slider-container {
        width: 100%;
        margin: 3vh auto;
    }
    
    .video-slider {
        height: 50vh;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    .thumbnail {
        width: 160px;
        height: 90px;
    }
}