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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        background-image: linear-gradient(to bottom, #222, #111, #000);
        color: #ffffff;
        overflow-x: hidden;
    }
    
    body.modal-open,
    body.lightbox-open {
        overflow: hidden;
    }

    /* --- Custom iPad-style Cursor --- */
    body, a, button, .tab-link, .modal-close-btn, .work-item a, .photo-grid-item {
        cursor: none;
    }

    .custom-cursor {
        position: fixed;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
        background: radial-gradient(circle, #ffffff, #cccccc, #000000);
        background-size: 200% 200%;
        border-radius: 50%;
        pointer-events: none;
        z-index: 10003; /* Highest z-index */
        transform: translate(-50%, -50%);
        opacity: 0;
        mix-blend-mode: difference;
        animation: cursorGradientShift 6s ease-in-out infinite;
        transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                    height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                    transform 0.1s linear;
    }

    .custom-cursor.grow {
        width: 60px;
        height: 60px;
    }

    @keyframes cursorGradientShift {
        0%   { background-position: 0% 50%; filter: hue-rotate(0deg); }
        50%  { background-position: 100% 50%; filter: hue-rotate(180deg); }
        100% { background-position: 0% 50%; filter: hue-rotate(360deg); }
    }

    @media (hover: none) and (pointer: coarse) {
        .custom-cursor { display: none; }
        body, a, button, .tab-link, .modal-close-btn, .work-item a, .photo-grid-item {
            cursor: pointer;
        }
    }
    /* --- End of Custom Cursor CSS --- */


    /* --- Section 1: Hero Landing Page --- */
    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: hidden;
    }
    
    @keyframes fadeInEffect {
        from { opacity: 0; } to { opacity: 1; }
    }

    .background-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        overflow: hidden;
        background-color: #000;
        animation: fadeInEffect 2s ease-out forwards;
    }

    #video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        z-index: 10;
        opacity: 0; /* Start hidden, animation will make it visible */
        animation: fadeInUp 2s ease-out 0.5s forwards; 
        transition: opacity 0.4s ease-out;
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(50px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    h1 {
        font-size: 64px;
        margin: 20px 0;
        font-weight: 300;
        letter-spacing: 2px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    p.subtitle {
        font-size: 18px;
        margin-top: 10px;
        letter-spacing: 3px;
        opacity: 0.8;
        text-transform: uppercase;
        font-weight: 300;
    }

    /* --- Navigation --- */
    nav {
        margin: 50px 0;
        padding: 15px 40px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
        backdrop-filter: blur(35px);
        -webkit-backdrop-filter: blur(35px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 24px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    }

    nav a {
        color: white;
        text-decoration: none;
        margin: 0 25px;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.7;
        transition: all 0.3s ease;
        position: relative;
        font-weight: 300;
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: white;
        transition: width 0.3s ease;
    }

    nav a:hover {
        opacity: 1;
    }

    nav a:hover::after {
        width: 100%;
    }

    /* --- Fixed Footer Links --- */
    .footer-links {
        position: fixed;
        bottom: 40px;
        left: 40px;
        display: flex;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease-in-out;
    }
    .footer-links.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .contact-btn {
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 12px 25px;
        color: white;
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.05);
    }

    .contact-btn:hover {
        background: rgba(255, 255, 255, 0.9);
        color: black;
        transform: translateY(-2px);
    }

    .social-links {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .social-links img {
        width: 24px;
        height: 24px;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover img {
        opacity: 1;
        transform: scale(1.1);
    }

    .scroll-down {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .scroll-down a {
        display: block;
        padding-top: 60px;
        text-decoration: none;
        color: white;
        font-size: 12px;
        letter-spacing: 1px;
        text-transform: uppercase;
        opacity: 0.6;
        transition: opacity 0.3s ease;
    }

    .scroll-down a:hover {
        opacity: 1;
    }

    .scroll-down span {
        position: absolute;
        top: 0;
        left: 50%;
        width: 24px;
        height: 24px;
        margin-left: -12px;
        border-left: 1px solid rgba(255, 255, 255, 0.6);
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        transform: rotate(-45deg);
        animation: scroll 2s infinite;
    }

    @keyframes scroll {
        0% { transform: rotate(-45deg) translate(0, 0); opacity: 0; }
        50% { opacity: 1; }
        100% { transform: rotate(-45deg) translate(-20px, 20px); opacity: 0; }
    }

    /* --- Section 2: Work Portfolio --- */
    #work {
        padding: 120px 0;
        background: transparent;
    }

    .work-title {
        font-size: 48px;
        margin-bottom: 80px;
        color: #ffffff;
        font-weight: 300;
        text-align: center;
        letter-spacing: 3px;
        text-transform: uppercase;
        position: relative;
    }

    .work-title::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background: rgba(83, 81, 81, 0.3);
    }
    
    .filter-controls {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin: -20px 0 60px 0;
        padding: 0 20px;
    }

    .filter-btn {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #aaa;
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .filter-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.4);
    }

    .filter-btn.active {
        background: #fff;
        color: #000;
        border-color: #fff;
    }

    .work-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .work-item {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        background: #111;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
        
    .work-item:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .work-item.filtered-out {
        opacity: 0.25; 
        transform: scale(0.95);
    }

    .work-item.filtered-out:hover {
        opacity: 1;
        transform: scale(1.02);
    }
    
    .work-item-visuals {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background-color: #000;
    }

    .work-item-thumbnail,
    .work-item-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.4s ease-in-out;
    }

    .work-item-thumbnail {
        opacity: 1;
        z-index: 2;
    }
    
    .work-item-video {
        opacity: 0;
        z-index: 1;
    }

    .work-item:hover .work-item-thumbnail {
        opacity: 0;
    }
    
    .work-item:hover .work-item-video {
        opacity: 1;
    }
    
    a.work-item-link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 4; /* Must be above the overlay */
    }

    .work-item-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px 20px 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        z-index: 3;
        transition: background 0.3s ease;
        color: #fff;
        text-decoration: none;
    }
    
    .work-item:hover .work-item-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    }
        
    .work-item-category {
        font-size: 12px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #ccc;
        margin-bottom: 8px;
        display: block;
        opacity: 0.8;
    }
        
    .work-item-overlay h3 {
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* --- Work Modal --- */
    #work-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
    }

    #work-modal.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .modal-content {
        position: relative;
        z-index: 1;
        background: #111;
        border-radius: 8px;
        max-width: 1000px; /* Default width */
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: scale(0.95);
        transition: transform 0.3s ease-in-out, max-width 0.4s ease;
    }
    
    /* MODIFIED: Increased max-width for even larger photo grid */
    .modal-content.has-gallery {
        max-width: 1600px;
    }

    #work-modal.visible .modal-content {
        transform: scale(1);
    }
    
    .modal-video-container {
        position: relative;
        background: #000;
        aspect-ratio: 16/9;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        overflow: hidden;
    }

    .modal-video-container video,
    .modal-video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    .modal-text-content {
        padding: 30px 40px;
    }
    
    .modal-title {
        font-size: 28px;
        font-weight: 300;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .modal-description {
        font-size: 16px;
        line-height: 1.7;
        color: #ccc;
        margin-bottom: 30px;
    }
    
    .modal-credits {
        font-size: 14px;
        color: #888;
        line-height: 1.6;
    }
    .modal-credits h4 {
        font-size: 16px;
        color: #fff;
        margin-bottom: 10px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .modal-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(0,0,0,0.5);
        color: white;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        z-index: 2;
        font-size: 24px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 3px;
    }
    .modal-close-btn:hover {
        transform: scale(1.1) rotate(90deg);
        background: #fff;
        color: #000;
    }
    
    #modal-photo-grid {
        display: none;
        padding: 0 40px 40px;
    }
    
    /* MODIFIED: Increased minmax for even larger images */
    .modal-content.has-gallery #modal-photo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
        gap: 25px;
        border-top: 1px solid #333;
        padding-top: 30px;
        margin-top: -10px;
    }
    
    .photo-grid-item {
        background: none; border: none; padding: 0;
        border-radius: 4px; overflow: hidden;
        aspect-ratio: 16/10;
    }
    
    .photo-grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    .photo-grid-item:hover img {
        transform: scale(1.05);
    }

    #lightbox-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 10002;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    #lightbox-overlay.visible {
        opacity: 1;
        pointer-events: auto;
    }

    #lightbox-image {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    #lightbox-overlay.visible #lightbox-image {
        transform: scale(1);
    }

    #lightbox-close-btn {
        position: absolute;
        top: 20px; right: 20px;
        width: 50px; height: 50px;
        font-size: 30px;
        color: white; background: transparent;
        border: none;
        transition: transform 0.3s ease;
    }
    #lightbox-close-btn:hover {
        transform: rotate(90deg);
    }
    
    /* --- Showreel Section --- */
    #showreel {
        padding: 40px 0;
        background: transparent;
        text-align: center;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .showreel-title {
        font-size: 48px;
        margin-bottom: 80px;
        color: #ffffff;
        font-weight: 300;
        letter-spacing: 3px;
        text-transform: uppercase;
        position: relative;
    }

    .showreel-title::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
    }

    .showreel-container {
        max-width: 1600px; 
        width: 95%;
        margin: 0 auto;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .responsive-iframe-container {
        position: relative;
        width: 100%;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
    }

    .showreel-container iframe,
    .showreel-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    /* --- Equipment & Services Section --- */
    #services {
        padding: 120px 0;
        background: transparent;
        color: #fff;
        min-height: 100vh;
    }
    .services-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .services-title {
        font-size: 48px;
        margin-bottom: 80px;
        color: #ffffff;
        font-weight: 300;
        text-align: center;
        letter-spacing: 3px;
        text-transform: uppercase;
        position: relative;
    }
    .services-title::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
    }

    .tabs-container {
        border-bottom: 1px solid #333;
        margin-bottom: 40px;
    }

    .tab-link {
        background-color: transparent;
        color: #aaa;
        border: none;
        outline: none;
        padding: 14px 20px;
        font-size: 16px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 3px solid transparent;
    }

    .tab-link:hover {
        color: #fff;
    }

    .tab-link.active {
        color: #fff;
        background-color: #111;
        border-bottom: 3px solid #fff;
    }

    .tab-content {
        display: none;
        animation: fadeIn 0.5s;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .equipment-item {
        margin-bottom: 60px;
    }

    .equipment-item-title {
        font-size: 28px;
        font-weight: 300;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #333;
    }
    
    .equipment-details {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 50px;
    }
    
    .equipment-description {
        font-size: 16px;
        line-height: 1.7;
        color: #ccc;
    }

    .equipment-image-placeholder {
        width: 100%;
        background-color: #111;
        border: 1px solid #333;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #666;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        overflow: hidden;
        min-height: 300px;
        margin-bottom: 40px;
    }

    .equipment-image-placeholder img,
    .equipment-image-placeholder video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .specs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .spec-table h3 {
        font-size: 18px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #333;
    }
    .spec-table ul {
        list-style: none;
    }
    .spec-table li {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #222;
    }
    .spec-table li span:first-child {
        color: #aaa;
    }
    .spec-table li span:last-child {
        text-align: right;
        color: #fff;
    }

    .media-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .media-item h4 {
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #bbb;
        margin-bottom: 15px;
    }

    .media-item video {
        width: 100%;
        height: auto;
        border-radius: 4px;
        display: block;
        background-color: #111;
        border: 1px solid #333;
    }

    /* --- About Section --- */
    #about {
        padding: 120px 0;
        background: transparent;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .about-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.5fr; 
        gap: 100px;
        align-items: center;
        padding: 0 20px;
    }

    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-image img {
        width: 450px;
        height: 450px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

    .about-text h2 {
        font-size: 48px;
        margin-bottom: 30px;
        color: #ffffff;
        font-weight: 300;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .about-text p {
        font-size: 18px;
        line-height: 1.8;
        opacity: 0.8;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }
    
/* ================================================ */
/* START: AANGEPASTE PARALLAX CSS                   */
/* ================================================ */
.widescreen-photo-section {
    min-height: 70vh;
    position: relative;
    overflow: hidden; 
    margin: 40px 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

#parallax-bg {
    background-image: url('https://images.guns.lol/jrj4xXkzB5CQAaOgrfW849TnWbXIjpeRk9w4xfGLBww14.jpeg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    position: absolute;
    left: 0;
    /* AFBEELDING NAAR BENEDEN VERPLAATST (was -20%) */
    top: -5%; 
    width: 100%;
    height: 125%; /* Iets kleiner gemaakt om beter bij de nieuwe snelheid te passen */
    
    will-change: transform;
}
/* ================================================ */
/* EINDE: AANGEPASTE PARALLAX CSS                   */
/* ================================================ */


    /* --- Contact Section --- */
    #contact {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 80px 20px;
        background-color: transparent;
        overflow: hidden;
    }
    #contact::before {
        content: "";
        position: absolute;
        width: 800px;
        height: 500px;
        background: radial-gradient(circle, #ff40c8, #9d40ff, #408cff);
        opacity: 0.2;
        filter: blur(150px);
        animation: rotate-hue 10s infinite alternate;
    }
    @keyframes rotate-hue {
        to { filter: blur(150px) hue-rotate(360deg); }
    }

    .contact-title-new {
        font-size: 48px;
        margin-bottom: 40px;
        color: #ffffff;
        font-weight: 300;
        text-align: center;
        letter-spacing: 3px;
        text-transform: uppercase;
        z-index: 2;
    }
    
    #liquid-card {
        position: relative;
        width: 100%;
        max-width: 450px;
    }

    #liquid-card > .card-border,
    #liquid-card > .card-glow {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.4s ease-out;
    }

    #liquid-card > .card-border {
         background: radial-gradient(
            300px circle at var(--x) var(--y),
            rgba(255, 255, 255, 0.4),
            transparent 40%
        );
    }
    
    #liquid-card > .card-glow {
         background: radial-gradient(
            200px circle at var(--x) var(--y),
            rgba(255, 255, 255, 0.2),
            transparent 40%
        );
        filter: blur(30px);
    }

    .card-content {
        position: relative;
        z-index: 2;
        padding: 24px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .card-header-new {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .profile-pic-new {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .name-details h3 {
        font-size: 24px;
        font-weight: 500;
        text-align: center;
    }
    .name-details p {
        font-size: 16px;
        color: #ccc;
        text-align: center;
    }

    .card-socials-new {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
        padding: 15px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 16px;
    }
    .card-socials-new a {
        display: inline-block;
        transition: transform 0.2s ease, filter 0.2s ease;
        filter: grayscale(40%);
        opacity: 0.8;
    }
    .card-socials-new a:hover {
        transform: scale(1.15);
        filter: grayscale(0%);
        opacity: 1;
    }
    .card-socials-new img {
        width: 32px;
        height: 32px;
    }
    .card-footer-new {
        font-size: 16px;
        color: #bbb;
        text-align: center;
    }
    .card-footer-new a {
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid #fff;
        transition: all 0.2s ease;
    }
    .card-footer-new a:hover {
        background: #fff;
        color: #000;
        border-bottom-color: transparent;
        padding: 2px 4px;
        border-radius: 4px;
    }
    
    /* --- Site Footer --- */
    .site-footer {
        text-align: center;
        padding: 40px 20px;
        font-size: 14px;
        color: #777;
        background-color: transparent;
    }

    #grain {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999 !important;
        pointer-events: none;
    }

    /* --- Video Error Handling --- */
    .video-error {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0.6;
        z-index: -1;
    }

    .video-error h3 { font-size: 24px; margin-bottom: 10px; font-weight: 300; }
    .video-error p { font-size: 14px; opacity: 0.8; }
    
    @keyframes fadeInUpSlow {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .fade-in-element {
        opacity: 0;
        will-change: opacity, transform;
    }

    .fade-in-element.is-visible {
        animation: fadeInUpSlow 2.5s ease forwards;
    }

    /* --- Scroll to Top Button --- */
    #scrollToTopBtn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        width: 50px;
        height: 50px;
        background: rgba(34, 34, 34, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    }

    #scrollToTopBtn:hover {
        transform: scale(1.1) translateY(0);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    #scrollToTopBtn.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    #scrollToTopBtn svg { width: 24px; height: 24px; }
    
    /* --- Responsive Design --- */
    @media (max-width: 1200px) {
         .about-content { gap: 60px; }
         .about-image img { width: 350px; height: 350px; }
    }

    @media (max-width: 900px) {
        .equipment-details, .about-content { grid-template-columns: 1fr; }
        .about-content { max-width: 600px; }
        .about-image { order: -1; margin-bottom: 40px; }
        .about-image img { width: 300px; height: 300px; }
        .about-text h2 { text-align: center; }
    }
    @media (max-width: 768px) {
        h1 { font-size: 48px; }
        .work-grid { grid-template-columns: 1fr; }
        .hero { padding: 20px; }
        nav a { margin: 0 15px; font-size: 12px; }
        .footer-links { left: 50%; transform: translateX(-50%); bottom: 20px; width: 90%; justify-content: center; flex-wrap: wrap; }
        .scroll-down { display: none; }
        .work-title, .services-title, .about-text h2, .showreel-title, .contact-title-new { font-size: 36px; }
        #work, #services, #about, #contact { padding: 80px 0; }
        #showreel { padding: 40px 0; }
        .modal-text-content { padding: 20px; }
        .modal-content.has-gallery #modal-photo-grid { padding: 0 20px 20px; }
        .modal-title { font-size: 22px; }
        .modal-content.has-gallery #modal-photo-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    }
    @media (max-width: 480px) {
        h1 { font-size: 36px; }
        nav { padding: 12px 20px; }
        nav a { margin: 0 10px; font-size: 11px; }
        .work-title, .services-title, .about-text h2, .showreel-title, .contact-title-new { font-size: 28px; }
        .about-image img { width: 250px; height: 250px; }
        #liquid-card { max-width: 95%; }
        .card-socials-new img { width: 28px; height: 28px; }
        #scrollToTopBtn { width: 45px; height: 45px; bottom: 20px; right: 20px; }
        .modal-content.has-gallery #modal-photo-grid { grid-template-columns: 1fr; }
    }

    .copy-tooltip {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.9);
        color: black;
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 4px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        white-space: nowrap;
    }
    .card-socials-new a { position: relative; }
    .card-socials-new a.show-tooltip .copy-tooltip { opacity: 1; }
