/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: -1;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: transparent;
    color: #fff;
    padding: 180px 20px 120px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Canvas for waveform */
#waveform-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Reusable animated gradient text class */
.animated-gradient-text {
    background: linear-gradient(90deg, #a855f7, #3b82f6, #06b6d4, #8b5cf6, #a855f7);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease infinite;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animated-gradient-text,
    .title-word {
        animation: none;
        background: none;
        -webkit-text-fill-color: inherit;
        color: #ffffff;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #000000;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.5);
    background: #f0f0f0;
}

.btn-icon {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-left: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(-45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(10px); }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float linear infinite;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: #0a0a0a;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

#about .about-content {
    text-align: left;
    max-width: 760px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 20px;
    background: #000000;
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.portfolio-item {
    transition: transform 0.3s ease;
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.4), 0 0 50px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.portfolio-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.portfolio-card p {
    color: #e0e0e0;
    line-height: 1.6;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.portfolio-link:hover .learn-more {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: #0a0a0a;
    color: #fff;
    position: relative;
}

.contact .section-title {
    color: #fff;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info a:hover::after {
    transform: scaleX(1);
}

.contact-info a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    text-align: center;
    padding: 2rem 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

/* Category Pages Styles */
.category-hero {
    background: transparent;
    color: #fff;
    padding: 180px 20px 80px;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.category-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 300;
}

.category-content {
    padding: 80px 20px;
    background: #0a0a0a;
}

.category-description {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.category-description h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.category-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.cta-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-links a::after {
        display: none;
    }

    .navbar .container {
        justify-content: space-between;
    }

    /* Hero Section */
    .hero {
        padding: 140px 20px 80px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
        gap: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 16px 38px;
        font-size: 1.05rem;
    }

    /* Section Spacing */
    .about, .portfolio, .contact, .category-content {
        padding: 80px 20px;
    }

    .category-hero {
        padding: 140px 20px 60px;
        min-height: 40vh;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-card {
        padding: 2rem;
    }

    /* Category Pages */
    .category-title {
        font-size: 2.2rem;
    }

    .category-subtitle {
        font-size: 1.1rem;
    }

    .category-description h2,
    .services-list h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .category-description p,
    .about-content p {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-info p {
        font-size: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    /* CTA Section */
    .cta-section {
        padding: 2.5rem 1.5rem;
    }

    .game-audio-page .project-content {
        flex-direction: column;
        gap: 0.875rem;
    }

    .game-audio-page .project-link,
    .game-audio-page .project-image,
    .game-audio-page .project-content .video-description {
        width: 100%;
        flex: 0 0 auto;
    }

    .game-audio-page .project-content .video-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0.25rem 0;
        max-width: 44ch;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding: 120px 15px 60px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .title-word {
        display: block;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    /* Navigation */
    .logo h2 {
        font-size: 1.25rem;
    }

    .nav-links {
        top: 68px;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
        min-height: 44px;
    }

    /* Sections */
    .about, .portfolio, .contact, .category-content {
        padding: 60px 15px;
    }

    .category-hero {
        padding: 110px 15px 50px;
        min-height: 35vh;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Portfolio */
    .portfolio-grid {
        gap: 1.5rem;
    }

    .portfolio-card {
        padding: 1.75rem;
    }

    .portfolio-card h3 {
        font-size: 1.4rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    /* Category Pages */
    .category-title {
        font-size: 1.65rem;
    }

    .category-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .category-description h2,
    .cta-section h2 {
        font-size: 1.4rem;
    }

    .category-description p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* CTA Section */
    .cta-section {
        padding: 2rem 1.25rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .game-audio-page .video-container h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .game-audio-page .project-content {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .game-audio-page .project-content .video-description {
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: 36ch;
    }

    .game-audio-page .tool-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    /* Contact Section */
    .contact-content p {
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 0.875rem;
    }

    .social-link {
        width: 46px;
        height: 46px;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 15px;
        font-size: 0.9rem;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }
}

/* Media Showcase Section */
.media-showcase {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.media-showcase h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-wrapper {
    position: relative;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.video-play-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.video-play-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    position: relative;
}

.video-play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 32px solid #000;
}

.video-container h3 {
    color: #fff;
    padding: 1rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
}

.video-description {
    color: #ccc;
    padding: 1rem;
    margin: 0;
    background: #16213e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
}

.project-link {
    position: relative;
    display: block;
    text-decoration: none;
}

.project-image {
    flex: 0 0 40%;
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.project-link:hover .project-image {
    filter: blur(8px);
}

.link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-link:hover .link-overlay {
    opacity: 1;
}

.link-button {
    background: #00d4ff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-link:hover .link-button {
    background: #00f0ff;
    transform: scale(1.05);
}

.link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-link:hover .link-overlay {
    opacity: 1;
}

.link-button {
    background: #00d4ff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-link:hover .link-button {
    background: #00f0ff;
    transform: scale(1.05);
}

.project-content .video-description {
    flex: 0 0 60%;
    padding: 1rem;
    background: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.project-content .video-description p {
    margin: 0;
}

.tools-used {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
    font-size: 1rem;
    padding: 2rem;
    max-width: 80%;
    line-height: 1.6;
}

.video-container iframe[src=""] + .video-placeholder {
    display: block;
}

.video-container iframe[src]:not([src=""]) + .video-placeholder {
    display: none;
}
