        @font-face {
            font-family: 'Dalton White';
            src: url('Dalton White.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'DM Sans';
            src: url('static/DMSans-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'DM Sans';
            src: url('static/DMSans-Medium.ttf') format('truetype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'DM Sans';
            src: url('static/DMSans-Bold.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        /* Theme Core Variables */
        :root {
            --bg-color: #000000;
            --navbar-bg: rgba(0, 0, 0, 0.4);
            --card-bg: rgba(255, 255, 255, 0.03);
            --text-main: #f5f5f7;
            --text-sub: #b2b2ba;
            --accent-purple: #8c23f1;
            --accent-purple-hov: #d848a4;
            --gradient-start: #8c23f1;
            --gradient-end: #d848a4;
            --nav-link-color: #d1d5db;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            cursor: default;
            font-size: 14px;
        }

        /* DM Sans Font Stack */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'DM Sans', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            overflow-y: hidden;
            position: relative;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        /* --- INTRO SIGNATURE ANIMATION --- */
        #intro-signature-wrap {
            position: absolute;
            top: 53%;
            left: 50%;
            transform: translateX(-50%) rotate(-6deg);
            opacity: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 100000;
            pointer-events: none;
            will-change: transform, opacity;
        }

        #intro-signature-box {
            width: max-content;
            overflow: hidden;
            white-space: nowrap;
            padding: 25px 15px 15px 5px;
            margin-top: -20px;
            margin-bottom: -10px;
            will-change: clip-path;
        }

        #intro-signature {
            font-family: 'Dalton White', cursive;
            font-size: 2.2rem;
            color: #ffffff;
            line-height: 1.1;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            letter-spacing: 3px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #intro-signature span {
            font-family: 'Dalton White', cursive;
        }

        .sig-underline {
            width: 100%;
            height: 2px;
            background-color: #ffffff;
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
            transform: rotate(-3deg) scaleX(0);
            transform-origin: left center;
            position: relative;
            margin-top: 5px;
            will-change: transform;
        }

        .sig-underline::after {
            content: '';
            position: absolute;
            right: -15px;
            top: -1px;
            width: 4px;
            height: 4px;
            background-color: #ffffff;
            border-radius: 50%;
            opacity: 0;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
            will-change: transform, opacity;
        }

        .sig-glow-tip {
            position: absolute;
            top: 50%;
            left: 0%;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(140, 35, 241, 0.4) 40%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            z-index: 10;
            pointer-events: none;
            mix-blend-mode: screen;
            will-change: left, opacity;
        }

        .intro-clouds {
            display: none !important;
        }

        .show-sig-wrap {
            opacity: 1 !important;
            transition: opacity 0.3s;
        }

        .write-sig-box {
            animation: writeSigBox 2.5s ease-in-out forwards;
        }

        .write-glow {
            animation: moveGlow 2.5s ease-in-out forwards;
        }

        .draw-underline {
            animation: drawLine 0.6s ease-out 2.2s forwards;
        }

        .draw-underline::after {
            animation: popDot 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2.8s forwards;
        }

        .sig-zoom-away {
            animation: sigZoomAway 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards !important;
        }

        @keyframes writeSigBox {
            0% {
                clip-path: polygon(0 -50%, 0 -50%, 0 150%, 0 150%);
            }

            100% {
                clip-path: polygon(0 -50%, 120% -50%, 120% 150%, 0 150%);
            }
        }

        @keyframes moveGlow {
            0% {
                left: 0%;
                opacity: 1;
            }

            95% {
                opacity: 1;
            }

            100% {
                left: 100%;
                opacity: 0;
            }
        }

        @keyframes drawLine {
            0% {
                transform: rotate(-3deg) scaleX(0);
            }

            100% {
                transform: rotate(-3deg) scaleX(1);
            }
        }

        @keyframes popDot {
            0% {
                opacity: 0;
                transform: scale(0);
            }

            100% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        @keyframes sigZoomAway {
            0% {
                transform: translateX(-50%) rotate(-6deg) scale(1);
                opacity: 1;
            }

            30% {
                transform: translateX(-50%) rotate(-6deg) scale(1.1);
                opacity: 1;
            }

            100% {
                transform: translateX(-50%) rotate(-6deg) scale(0);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            #intro-signature-wrap {
                top: 54%;
                transform: translateX(-50%) rotate(-6deg);
            }

            #intro-signature {
                font-size: 1.2rem;
            }

            #intro-signature-box {
                padding-right: 5px;
                padding-left: 0px;
            }

            .intro-clouds {
                display: none !important;
            }

            .sig-underline {
                height: 1px;
                margin-left: 0px;
                margin-top: 2px;
            }

            .sig-underline::after {
                width: 2px;
                height: 2px;
                right: -8px;
                top: -0.5px;
                box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
            }
        }

        /* --- INTRO ANIMATION SCREEN --- */
        #intro-preloader {
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s;
        }

        .preloader-logo-container {
            position: relative;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .preloader-logo {
            position: absolute;
            width: 32px;
            height: 32px;
            object-fit: contain;
            filter: drop-shadow(0 0 8px rgba(140, 35, 241, 0.6));
            z-index: 2;
        }

        .preloader-spinner {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 255, 255, 0.05);
            border-top: 3px solid var(--accent-purple);
            border-right: 3px solid var(--accent-purple-hov);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 15px rgba(140, 35, 241, 0.3);
            z-index: 1;
        }

        #preloader-text {
            color: #ffffff;
            font-size: 1.0rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
        }

        #preloader-text::after {
            content: '';
            animation: dots 1.5s steps(4, end) infinite;
        }

        @keyframes dots {
            0%, 20% { content: ''; }
            40% { content: '.'; }
            60% { content: '..'; }
            80%, 100% { content: '...'; }
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        #intro-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--bg-color);
            z-index: 9999999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
        }

        #intro-text {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            border-right: 4px solid var(--accent-purple);
            padding-right: 8px;
            white-space: nowrap;
            height: 80px;
            display: flex;
            align-items: center;
            animation: introBlink 0.8s infinite;
            will-change: transform, opacity, filter;
            margin-top: 0;
            /* Small gap below logo - logo+text centered as one unit */
        }

        .intro-zoom-away {
            animation: zoomAway 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards !important;
            border-right: none !important;
        }

        @keyframes introBlink {

            0%,
            100% {
                border-color: transparent;
            }

            50% {
                border-color: var(--accent-purple);
            }
        }

        @keyframes zoomAway {
            0% {
                transform: perspective(1000px) scale(1);
                opacity: 1;
            }

            30% {
                transform: perspective(1000px) scale(1.1);
                opacity: 1;
            }

            100% {
                transform: perspective(1000px) scale(0);
                opacity: 0;
            }
        }

        /* --- POP ANIMATION STYLES --- */
        .pop-down {
            opacity: 0;
            transform: translateY(-30px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .pop-down.appear {
            opacity: 1;
            transform: translateY(0);
        }

        .pop-up {
            opacity: 0;
            transform: translateY(20px) scale(0.97);
            transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .pop-up.appear {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* --- PAGE ENTRY DROPDOWN ANIMATION --- */
        body:not(.page-loaded) main {
            opacity: 0;
        }

        body.page-loaded main {
            animation: pageDropDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes pageDropDown {
            0% {
                opacity: 0;
                transform: translateY(-25px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- WORD LINE ANIMATION STYLES --- */
        .split-anim-p {
            position: relative;
        }

        .split-anim-p .anim-word {
            display: inline-block;
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition-delay: calc(var(--line-index, 0) * 0.15s + var(--base-delay, 0s));
            will-change: transform, opacity;
        }

        .split-anim-p.appear .anim-word {
            opacity: 1;
            transform: translateY(0);
        }

        .glass-box,
        .stat-item,
        .software-category,
        .cover-item-wrapper,
        .yt-channel-widget,
        .contact-forms-grid,
        .achievements-grid,
        .new-release-card,
        .new-release-dark-bar,
        .section-heading-wrapper {
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .glass-box.appear,
        .stat-item.appear,
        .software-category.appear,
        .cover-item-wrapper.appear,
        .yt-channel-widget.appear,
        .contact-forms-grid.appear,
        .achievements-grid.appear,
        .new-release-card.appear,
        .new-release-dark-bar.appear,
        .section-heading-wrapper.appear {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation delays */
        .wid-card:nth-child(2) {
            transition-delay: 0.1s
        }

        .wid-card:nth-child(3) {
            transition-delay: 0.2s
        }

        .portfolio-card:nth-child(1) {
            transition-delay: 0.1s
        }

        .portfolio-card:nth-child(2) {
            transition-delay: 0.2s
        }

        .portfolio-card:nth-child(3) {
            transition-delay: 0.3s
        }

        .portfolio-card:nth-child(4) {
            transition-delay: 0.4s
        }

        .portfolio-card:nth-child(5) {
            transition-delay: 0.5s
        }

        .portfolio-card:nth-child(6) {
            transition-delay: 0.6s
        }

        .stat-item:nth-child(2) {
            transition-delay: 0.1s
        }

        .stat-item:nth-child(3) {
            transition-delay: 0.2s
        }

        .stat-item:nth-child(4) {
            transition-delay: 0.3s
        }

        .album-card:nth-child(2) {
            transition-delay: 0.1s
        }

        .album-card:nth-child(3) {
            transition-delay: 0.2s
        }

        .cover-item-wrapper:nth-child(1) {
            transition-delay: 0.1s
        }

        .cover-item-wrapper:nth-child(2) {
            transition-delay: 0.2s
        }

        .cover-item-wrapper:nth-child(3) {
            transition-delay: 0.3s
        }



        /* --- SCROLLABLE NEON BACKGROUND FLARES --- */
        .bg-flares {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            pointer-events: none;
            overflow: hidden;
            transform: translateZ(0);
        }

        .flare {
            position: absolute;
            border-radius: 50%;
            animation: floatFlare 15s infinite alternate ease-in-out;
            will-change: transform;
            transform: translateZ(0);
        }

        .flare-purple {
            background: radial-gradient(circle, rgba(140, 35, 241, 0.4) 0%, rgba(140, 35, 241, 0) 70%);
            width: 50vw;
            height: 50vw;
            top: -10%;
            left: -10%;
            opacity: 0.6;
        }

        .flare-pink {
            background: radial-gradient(circle, rgba(216, 72, 164, 0.4) 0%, rgba(216, 72, 164, 0) 70%);
            width: 45vw;
            height: 45vw;
            bottom: -5%;
            right: -5%;
            opacity: 0.5;
            animation-delay: -5s;
        }

        .flare-purple-deep {
            background: radial-gradient(circle, rgba(100, 20, 200, 0.6) 0%, rgba(100, 20, 200, 0) 70%);
            width: 40vw;
            height: 40vw;
            top: 40%;
            left: 30%;
            opacity: 0.4;
            animation-delay: -10s;
        }

        @keyframes floatFlare {
            0% {
                transform: translate3d(0, 0, 0) scale(1);
            }

            50% {
                transform: translate3d(5vw, 5vh, 0) scale(1.1);
            }

            100% {
                transform: translate3d(-5vw, 10vh, 0) scale(0.9);
            }
        }

        /* --- CINEMATIC FLOATING ICONS & LOGOS BACKGROUND --- */
        #floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            overflow: hidden;
            transform: translateZ(0);
        }

        .icon-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            pointer-events: none;
            padding: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            will-change: transform;
            transform: translateZ(0);
        }

        .icon-particle {
            color: rgba(140, 35, 241, 0.6);
            transition: opacity 0.2s ease;
        }

        img.icon-particle {
            opacity: 0.4;
        }

        .container {
            width: 85%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* --- PERFECT NEON FILL (NO GLOW) --- */
        .gradient-text {
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            display: inline-block !important;
            filter: none !important;
            text-shadow: none !important;
        }

        /* --- WRAPPERS FOR ALIGNMENTS --- */
        .section-heading-wrapper {
            width: 100%;
            text-align: left;
            margin-bottom: 24px;
        }

        .section-heading-wrapper.center {
            text-align: center;
        }

        /* BOLD TITLES */
        .section-title-large,
        .portfolio-title,
        .about-main-title,
        .music-title {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin: 0;
        }

        /* Page-level main titles - scaled 1.7x for impact */
        .portfolio-title,
        .about-main-title,
        .music-title {
            font-size: 6rem;
        }

        .section {
            padding: 96px 0;
            position: relative;
        }

        /* --- BLINKING ONLINE DOT --- */
        .status-dot {
            display: inline-block;
            background-color: #34C759;
            border-radius: 50%;
            animation: blinkDot 1.5s infinite alternate;
        }

        .hero-dot {
            position: absolute;
            top: 15%;
            right: -15px;
            width: 12px;
            height: 12px;
            box-shadow: 0 0 10px #34C759, 0 0 20px #34C759;
            z-index: 10;
        }

        .logo-dot {
            position: absolute;
            top: 50%;
            margin-top: -3px;
            right: -10px;
            width: 6px;
            height: 6px;
            box-shadow: 0 0 8px #34C759, 0 0 12px #34C759;
        }

        .o-wrapper {
            position: relative;
            display: inline-block;
        }

        @keyframes blinkDot {
            0% {
                opacity: 1;
                transform: scale(1);
            }

            100% {
                opacity: 0.4;
                transform: scale(0.85);
            }
        }

        /* --- iOS STYLE BUTTONS --- */
        .btn {
            padding: 8px 36px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: -0.01em;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.15);
            background-color: rgba(255, 255, 255, 0.05);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            z-index: 10;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-25deg);
            transition: all 0.6s ease;
        }

        .btn:hover::after {
            left: 150%;
        }

        .btn-primary {
            background: linear-gradient(135deg, rgba(140, 35, 241, 0.85), rgba(216, 72, 164, 0.85));
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 5px 15px rgba(140, 35, 241, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 25px rgba(216, 72, 164, 0.35);
            filter: brightness(1.15);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-main);
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #fff;
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 8px 20px rgba(140, 35, 241, 0.2);
            border-color: rgba(216, 72, 164, 0.3);
        }

        /* --- NAVBAR & NEON LINKS --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 8%;
            background-color: var(--navbar-bg);
            backdrop-filter: blur(30px) saturate(200%);
            -webkit-backdrop-filter: blur(30px) saturate(200%);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transform: translateZ(0);
            will-change: backdrop-filter;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 800;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            letter-spacing: -0.03em;
        }

        .logo img {
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.15) rotate(-5deg);
        }

        .logo span {
            transition: color 0.3s ease, text-shadow 0.3s ease;
            color: var(--text-main);
        }

        .logo:hover span {
            color: var(--text-main);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 8px;
            align-items: center;
            position: relative;
        }

        .nav-indicator {
            position: absolute;
            background: rgba(140, 35, 241, 0.15);
            border: 1px solid rgba(216, 72, 164, 0.6);
            box-shadow: 0 0 15px rgba(140, 35, 241, 0.4), inset 0 0 10px rgba(216, 72, 164, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 30px;
            transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1), width 0.4s cubic-bezier(0.23, 1, 0.32, 1), top 0.4s cubic-bezier(0.23, 1, 0.32, 1), height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
            pointer-events: none;
            z-index: 0;
            opacity: 0;
            will-change: width, left, top, height;
        }

        .nav-indicator.visible {
            opacity: 1;
        }

        /* NORMAL NAV LINKS (TEXT ONLY WHEN IDLE) */
        .nav-links a {
            color: var(--nav-link-color);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 30px;
            border: 1px solid transparent;
            background: transparent;
            transition: color 0.3s ease, text-shadow 0.3s ease;
            white-space: nowrap;
            position: relative;
            z-index: 1;
        }

        /* HOVER & ACTIVE COLORS */
        .nav-links a:hover,
        .nav-links a.active {
            color: #ffffff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
        }

        /* CONTACT LINK (STAYS FIXED GRADIENT) */
        .nav-links a.nav-contact-btn {
            background: linear-gradient(135deg, rgba(140, 35, 241, 0.85), rgba(216, 72, 164, 0.85)) !important;
            color: white !important;
            border: 1px solid rgba(255, 255, 255, 0.25) !important;
            box-shadow: 0 4px 10px rgba(140, 35, 241, 0.2) !important;
            font-weight: 600;
            padding: 8px 22px;
            text-shadow: none !important;
            backdrop-filter: none !important;
        }

        .nav-links a.nav-contact-btn:hover,
        .nav-links a.nav-contact-btn.active {
            background: linear-gradient(135deg, rgba(140, 35, 241, 1), rgba(216, 72, 164, 1)) !important;
            border: 1px solid rgba(255, 255, 255, 0.4) !important;
            box-shadow: 0 6px 15px rgba(216, 72, 164, 0.4) !important;
        }

        /* Navbar Hamburger Menu Toggle */
        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 8px;
            z-index: 101;
            transition: color 0.3s ease;
        }

        .nav-toggle:hover {
            color: var(--accent-purple-hov);
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('nproimage01.webp') center/cover no-repeat;
            z-index: -3;
            opacity: 0.6;
            -webkit-mask-image: linear-gradient(to bottom, black 0%, black 35%, transparent 75%);
            mask-image: linear-gradient(to bottom, black 0%, black 35%, transparent 75%);
        }

        .hero-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.6) 50%, #050505 85%, #050505 100%);
            z-index: -2;
        }

        /* --- STARMAP BACKGROUND (STATIC & LIGHTWEIGHT) --- */
        .hero-starmap-bg {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background: url('starmap.jpg') center/cover repeat;
            opacity: 0.4;
            z-index: -5;
            pointer-events: none;
        }

        .hero-simple-flares {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: -4;
            opacity: 1;
            mix-blend-mode: overlay;
            background: linear-gradient(135deg, rgba(140, 35, 241, 0.2) 0%, rgba(216, 72, 164, 0.2) 100%);
        }

        .hero-flare {
            position: absolute;
            border-radius: 50%;
            mix-blend-mode: screen;
            filter: blur(60px);
        }

        .hero-flare-pink {
            width: 160vw;
            height: 160vw;
            max-width: 1400px;
            max-height: 1400px;
            background: radial-gradient(circle, rgba(216, 72, 164, 0.45) 0%, transparent 60%);
            top: -45%;
            left: -45%;
            animation: pulseFlare 8s ease-in-out infinite alternate;
        }

        .hero-flare-purple {
            width: 160vw;
            height: 160vw;
            max-width: 1400px;
            max-height: 1400px;
            background: radial-gradient(circle, rgba(140, 35, 241, 0.45) 0%, transparent 60%);
            bottom: -45%;
            right: -45%;
            animation: pulseFlare 11s ease-in-out infinite alternate reverse;
        }

        @keyframes pulseFlare {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }

            100% {
                transform: scale(1.15);
                opacity: 1;
            }
        }

        /* --- SPACE CLOUDS ANIMATION --- */
        .space-clouds-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
            pointer-events: none;
        }

        .cloud-wrapper {
            position: absolute;
            pointer-events: none;
        }

        .cloud-wrapper-pink {
            left: -30vw;
            top: -5vh;
            width: 80vw;
            height: 80vw;
            min-width: 600px;
            min-height: 600px;
            max-width: 1400px;
            max-height: 1400px;
        }

        .cloud-wrapper-purple {
            right: -30vw;
            top: 10vh;
            width: 90vw;
            height: 90vw;
            min-width: 650px;
            min-height: 650px;
            max-width: 1500px;
            max-height: 1500px;
        }

        .space-cloud {
            width: 100%;
            height: 100%;
            position: absolute;
            mix-blend-mode: screen;
            animation: cloudMorph 15s infinite alternate ease-in-out;
            will-change: transform, border-radius, opacity;
        }

        .cloud-pink {
            background: radial-gradient(circle, rgba(255, 200, 240, 0.95) 0%, rgba(216, 72, 164, 0.7) 20%, rgba(140, 35, 241, 0.2) 45%, transparent 65%);
            filter: blur(30px);
            transform: translate3d(0, 0, 0);
        }

        .cloud-purple {
            background: radial-gradient(circle, rgba(230, 200, 255, 0.95) 0%, rgba(140, 35, 241, 0.7) 20%, rgba(70, 15, 150, 0.2) 45%, transparent 65%);
            animation-delay: -5s;
            animation-duration: 22s;
            filter: blur(30px);
            transform: translate3d(0, 0, 0);
        }

        .cloud-dust {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            mix-blend-mode: screen;
            opacity: 0.5;
            pointer-events: none;
            -webkit-mask-image: radial-gradient(circle, black 0%, transparent 55%);
            mask-image: radial-gradient(circle, black 0%, transparent 55%);
        }

        .cloud-dust-pink {
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(255,255,255,0.8)'/%3E%3Ccircle cx='80' cy='150' r='1' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='140' cy='40' r='2' fill='rgba(255,255,255,0.6)'/%3E%3Ccircle cx='180' cy='180' r='1.5' fill='rgba(255,255,255,0.7)'/%3E%3Ccircle cx='10' cy='110' r='1' fill='rgba(255,255,255,0.9)'/%3E%3Ccircle cx='120' cy='120' r='1.5' fill='rgba(255,255,255,0.4)'/%3E%3Ccircle cx='60' cy='70' r='1' fill='rgba(255,255,255,0.8)'/%3E%3Ccircle cx='160' cy='100' r='2' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,255,255,0.6)'/%3E%3Ccircle cx='150' cy='120' r='1.5' fill='rgba(255,255,255,0.7)'/%3E%3Ccircle cx='30' cy='160' r='1' fill='rgba(255,255,255,0.8)'/%3E%3Ccircle cx='170' cy='30' r='1' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='100' cy='180' r='2' fill='rgba(255,255,255,0.9)'/%3E%3C/svg%3E");
            background-size: 100px 100px, 150px 150px;
            animation: dustMove 25s linear infinite;
        }

        .cloud-dust-purple {
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='40' r='1.5' fill='rgba(255,255,255,0.8)'/%3E%3Ccircle cx='90' cy='160' r='1' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='150' cy='50' r='2' fill='rgba(255,255,255,0.6)'/%3E%3Ccircle cx='190' cy='190' r='1.5' fill='rgba(255,255,255,0.7)'/%3E%3Ccircle cx='20' cy='120' r='1' fill='rgba(255,255,255,0.9)'/%3E%3Ccircle cx='130' cy='130' r='1.5' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='60' r='1' fill='rgba(255,255,255,0.6)'/%3E%3Ccircle cx='160' cy='130' r='1.5' fill='rgba(255,255,255,0.7)'/%3E%3Ccircle cx='40' cy='170' r='1' fill='rgba(255,255,255,0.8)'/%3E%3Ccircle cx='180' cy='40' r='1' fill='rgba(255,255,255,0.5)'/%3E%3Ccircle cx='110' cy='190' r='2' fill='rgba(255,255,255,0.9)'/%3E%3C/svg%3E");
            background-size: 120px 120px, 170px 170px;
            animation: dustMove 30s linear infinite reverse;
        }

        @keyframes dustMove {
            0% {
                background-position: 0 0, 0 0;
            }

            100% {
                background-position: 100px -100px, -150px 150px;
            }
        }

        @keyframes cloudMorph {
            0% {
                transform: scale(0.9) rotate(0deg) translate(0, 0);
                opacity: 0.6;
            }

            33% {
                transform: scale(1.1) rotate(10deg) translate(30px, -20px);
                opacity: 0.9;
            }

            66% {
                transform: scale(0.95) rotate(-10deg) translate(-20px, 20px);
                opacity: 0.7;
            }

            100% {
                transform: scale(1.15) rotate(5deg) translate(15px, 15px);
                opacity: 0.85;
            }
        }

        .hero-content {
            z-index: 10;
            position: relative;
            margin-top: 25vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            width: 100%;
        }

        /* BOLD NPRO TEXT */
        .magic-text {
            font-size: 7.5rem;
            font-weight: 800;
            letter-spacing: -5px;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            line-height: 0.9;
            padding: 0;
            height: 120px;
        }

        .magic-word {
            display: inline-flex;
            align-items: flex-end;
        }

        .letter-container {
            display: inline-block;
            position: relative;
            padding: 0;
            margin: 0 -4px;
        }

        .letter {
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end), var(--gradient-start));
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: 0px transparent;
            display: inline-block;
            line-height: 1.1;
            padding: 5px;
            animation: textGradientFlow 4s linear infinite;
            filter: drop-shadow(0 0 10px rgba(216, 72, 164, 0.2));
        }

        @keyframes textGradientFlow {
            0% {
                background-position: 0% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-sub);
            margin: 0;
            padding: 0;
            word-spacing: 1px;
            font-weight: 500;
            text-align: center;
        }

        .hero-btn-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
            margin: 0;
            padding: 0;
        }


        /* --- MARQUEE CONTAINER --- */
        .marquee-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(140, 35, 241, 0.15), rgba(216, 72, 164, 0.15));
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            border: none;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
            padding: 12px 0;
            overflow: hidden;
            z-index: 15;
            display: flex;
            white-space: nowrap;
            transform: translateZ(0);
            will-change: transform;
        }

        .marquee-container::after {
            content: "";
            position: absolute;
            top: 0;
            left: -50%;
            width: 20%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-25deg);
            animation: lightSweep 8s ease-in-out infinite;
            z-index: 16;
            pointer-events: none;
        }

        @keyframes lightSweep {
            0% {
                left: -50%;
            }

            60% {
                left: 150%;
            }

            100% {
                left: 150%;
            }
        }

        .marquee-content {
            display: flex;
            width: max-content;
            will-change: transform;
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            perspective: 1000px;
            animation: scrolling 60s linear infinite;
            -webkit-animation: scrolling 60s linear infinite;
        }

        .marquee-inner-wrap {
            display: flex;
            white-space: nowrap;
            flex-shrink: 0;
            align-items: center;
        }

        @keyframes scrolling {
            0% {
                transform: translate3d(0, 0, 0);
                -webkit-transform: translate3d(0, 0, 0);
            }

            100% {
                transform: translate3d(-50%, 0, 0);
                -webkit-transform: translate3d(-50%, 0, 0);
            }
        }

        @-webkit-keyframes scrolling {
            0% {
                -webkit-transform: translate3d(0, 0, 0);
            }

            100% {
                -webkit-transform: translate3d(-50%, 0, 0);
            }
        }

        .paused-marquee {
            animation-play-state: paused !important;
            -webkit-animation-play-state: paused !important;
        }

        /* --- iOS GLASS BOX CLASS --- */
        .glass-box {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px) saturate(140%);
            -webkit-backdrop-filter: blur(10px) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateZ(0);
            will-change: transform;
            position: relative;
            z-index: 10;
        }

        .glass-box:hover {
            border-color: rgba(216, 72, 164, 0.5);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(140, 35, 241, 0.15);
            transform: translateY(-8px) translateZ(0);
        }

        /* WHAT I DO GRID */
        .what-i-do-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 10px;
        }

        .wid-card {
            padding: 24px 20px;
        }

        .wid-card i {
            font-size: 2.2rem;
            color: var(--gradient-end);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .wid-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--text-main);
            font-weight: 800;
            letter-spacing: -0.01em;
            transition: var(--transition);
        }

        .wid-card p {
            color: var(--text-sub);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 20px;
        }

        .portfolio-card {
            overflow: hidden;
            text-decoration: none;
            display: block;
            padding: 0;
        }

        .portfolio-img-wrapper {
            width: 100%;
            height: 180px;
            overflow: hidden;
            background-color: #1c1c1e;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .portfolio-img {
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .portfolio-card:hover .portfolio-img {
            transform: scale(1.05);
        }

        .portfolio-img-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(140, 35, 241, 0.9), transparent);
            opacity: 0;
            transition: var(--transition);
            z-index: 1;
        }

        .portfolio-card:hover .portfolio-img-wrapper::before {
            opacity: 1;
        }

        .portfolio-img-wrapper::after {
            content: '\f1b4';
            font-family: 'Font Awesome 6 Brands';
            position: absolute;
            font-size: 3.5rem;
            color: #ffffff;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: drop-shadow(0 0 20px #d848a4);
            z-index: 2;
        }

        .portfolio-card:hover .portfolio-img-wrapper::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .portfolio-info {
            padding: 24px;
            background: transparent;
        }

        .portfolio-info h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            letter-spacing: -0.01em;
        }

        .portfolio-info p {
            color: var(--text-sub);
            font-size: 0.9rem;
        }

        /* --- 3D MODEL SHOWCASE --- */
        .gun-showcase-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            padding: 40px;
            margin-top: 48px;
            min-height: 550px;
            align-items: center;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 32px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
            position: relative;
            z-index: 10;
        }

        .gun-showcase-container:hover {
            border-color: rgba(216, 72, 164, 0.5);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(140, 35, 241, 0.15);
            transform: translateY(-4px);
        }

        @keyframes ambientPulse {
            0% {
                opacity: 0.2;
                transform: scale(0.95) translateZ(0);
            }

            100% {
                opacity: 0.45;
                transform: scale(1.05) translateZ(0);
            }
        }

        .gun-viewer-wrapper {
            width: 100%;
            height: 480px;
            position: relative;
            border-radius: 20px;
            background: radial-gradient(circle at center, rgba(140, 35, 241, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gun-viewer-wrapper::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(216, 72, 164, 0.25) 0%, rgba(140, 35, 241, 0.1) 50%, transparent 70%);
            filter: blur(50px);
            z-index: 1;
            pointer-events: none;
            animation: ambientPulse 6s infinite alternate ease-in-out;
            will-change: transform, opacity;
        }

        .gun-viewer-wrapper model-viewer {
            width: 100%;
            height: 100%;
            z-index: 2;
            cursor: grab;
        }

        .gun-viewer-wrapper model-viewer:active {
            cursor: grabbing;
        }

        .model-loading-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: var(--text-sub);
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 5;
        }

        .model-loading-indicator .spinner {
            width: 32px;
            height: 32px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-top: 2px solid var(--accent-purple-hov);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* --- PREMIUM CUSTOM 3D POSTER STYLES --- */
        .custom-3d-poster {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 15, 30, 0.35);
            backdrop-filter: blur(12px) saturate(120%);
            -webkit-backdrop-filter: blur(12px) saturate(120%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            z-index: 3;
            transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
        }

        .poster-3d-icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .poster-3d-icon-wrapper i {
            font-size: 1.8rem;
            color: #ffffff;
            transition: transform 0.4s ease;
        }

        .poster-3d-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: color 0.3s ease;
        }

        .poster-3d-info {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-sub);
            background: rgba(255, 255, 255, 0.05);
            padding: 6px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .custom-3d-poster:hover {
            background: rgba(10, 15, 30, 0.55);
            border-color: rgba(216, 72, 164, 0.4);
        }

        #portfolio-sniper-rifle .custom-3d-poster:hover {
            border-color: rgba(234, 118, 0, 0.5);
        }

        #portfolio-sniper-rifle .custom-3d-poster:hover .poster-3d-icon-wrapper {
            background: rgba(234, 118, 0, 0.8);
            box-shadow: 0 0 20px rgba(234, 118, 0, 0.6);
            border-color: rgba(234, 118, 0, 0.9);
            transform: scale(1.1) rotate(15deg);
        }

        #portfolio-tactical-weapon .custom-3d-poster:hover {
            border-color: rgba(227, 27, 35, 0.5);
        }

        #portfolio-tactical-weapon .custom-3d-poster:hover .poster-3d-icon-wrapper {
            background: rgba(227, 27, 35, 0.8);
            box-shadow: 0 0 20px rgba(227, 27, 35, 0.6);
            border-color: rgba(227, 27, 35, 0.9);
            transform: scale(1.1) rotate(-15deg);
        }

        .gun-details {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            z-index: 10;
        }

        .gun-details-content {
            width: 100%;
        }

        .gun-title {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            color: #ffffff;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
        }

        .gun-subtitle {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-sub);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 24px;
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .gun-subtitle .tech-tag {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .gun-subtitle .tech-tag i {
            font-size: 0.8rem;
        }

        .gun-subtitle .tech-tag.blender {
            border-color: rgba(234, 118, 0, 0.3);
            color: #ea7600;
            background: rgba(234, 118, 0, 0.05);
        }

        .gun-subtitle .tech-tag.blender:hover {
            background: rgba(234, 118, 0, 0.15);
            border-color: rgba(234, 118, 0, 0.6);
        }

        .gun-subtitle .tech-tag.substance {
            border-color: rgba(227, 27, 35, 0.3);
            color: #e31b23;
            background: rgba(227, 27, 35, 0.05);
        }

        .gun-subtitle .tech-tag.substance:hover {
            background: rgba(227, 27, 35, 0.15);
            border-color: rgba(227, 27, 35, 0.6);
        }

        .gun-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-sub);
            margin-bottom: 28px;
        }

        .gun-specs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
        }

        .gun-spec-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .gun-spec-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-sub);
        }

        .gun-spec-value {
            font-size: 0.9rem;
            font-weight: 700;
            color: #ffffff;
        }

        /* --- 3D MODEL SHOWCASE CUSTOM CAROUSEL STYLES --- */
        .model-glow-aura {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            pointer-events: none;
            transition: background 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            opacity: 0.25;
            border-radius: 32px;
        }

        .gun-viewer-wrapper {
            background: transparent !important;
            /* Managed by backdrop aura */
        }

        .gun-viewer-wrapper::before {
            display: none !important;
            /* Hide old hardcoded pink glow */
        }

        .glow-sniper {
            background: radial-gradient(circle at 40% 50%, rgba(234, 118, 0, 0.3) 0%, rgba(140, 35, 241, 0.1) 50%, transparent 70%);
        }

        .glow-tactical {
            background: radial-gradient(circle at 40% 50%, rgba(227, 27, 35, 0.3) 0%, rgba(140, 35, 241, 0.15) 50%, transparent 70%);
        }

        /* Interactive Carousel Buttons and Navigation Indicators */
        .carousel-nav-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            margin-top: 32px;
            position: relative;
            z-index: 20;
            width: 100%;
        }

        .carousel-glass-btn {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-main);
            padding: 12px 28px;
            border-radius: 16px;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .carousel-glass-btn:hover {
            background: var(--accent-purple);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(140, 35, 241, 0.35), 0 0 20px rgba(140, 35, 241, 0.2);
            transform: translateY(-4px);
            color: #ffffff;
        }

        .carousel-glass-btn:active {
            transform: translateY(-1px);
        }

        .carousel-dots {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .carousel-dot.active {
            background: var(--accent-purple-hov);
            box-shadow: 0 0 15px var(--accent-purple-hov);
            transform: scale(1.4);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* High-End Transitions & Animations */
        .gun-viewer-wrapper model-viewer {
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
        }

        .gun-viewer-wrapper model-viewer.model-hidden {
            transform: scale(0.85) rotate(-3deg);
            opacity: 0;
        }

        /* Staggered text animations */
        .animate-text-wrapper .gun-subtitle,
        .animate-text-wrapper .gun-description,
        .animate-text-wrapper .gun-spec-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .animate-text-wrapper.active .gun-subtitle {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.1s;
        }

        .animate-text-wrapper.active .gun-description {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .animate-text-wrapper.active .gun-spec-item {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-text-wrapper.active .gun-spec-item:nth-child(1) {
            transition-delay: 0.3s;
        }

        .animate-text-wrapper.active .gun-spec-item:nth-child(2) {
            transition-delay: 0.35s;
        }

        .animate-text-wrapper.active .gun-spec-item:nth-child(3) {
            transition-delay: 0.4s;
        }

        .animate-text-wrapper.active .gun-spec-item:nth-child(4) {
            transition-delay: 0.45s;
        }

        /* Word/Character Drop Animation */
        .gun-title .word {
            display: inline-block;
            white-space: nowrap;
        }

        .gun-title .char {
            display: inline-block;
            transform: translateY(-25px);
            opacity: 0;
            filter: blur(4px);
            animation: charDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: calc(var(--char-index) * 0.025s);
        }

        @keyframes charDrop {
            to {
                transform: translateY(0);
                opacity: 1;
                filter: blur(0);
            }
        }

        /* --- ABOUT SECTION --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .about-hello-lead {
            font-size: 1.618rem;
            margin-bottom: 1rem;
            color: var(--text-main);
            font-weight: 800;
            text-align: left;
            letter-spacing: -0.02em;
            line-height: 1.3;
            display: block;
        }

        .about-text p {
            color: var(--text-sub);
            line-height: 1.6;
            margin-bottom: 16px;
            font-size: 1rem;
            text-align: left;
        }

        .about-text strong {
            color: var(--text-main);
            font-weight: 800;
        }

        .about-image-wrapper {
            width: 100%;
            height: 350px;
            padding: 0;
            overflow: hidden;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px) saturate(140%);
            -webkit-backdrop-filter: blur(10px) saturate(140%);
            transition: var(--transition);
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateZ(0);
            z-index: 10;
        }

        .about-image-wrapper:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .slider-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slider-track img {
            min-width: 100%;
            height: 100%;
            object-fit: cover;
            background: #111;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(10, 10, 10, 0.5);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            z-index: 10;
            font-size: 0.9rem;
        }

        .slider-btn:hover {
            background: var(--accent-purple);
            box-shadow: 0 0 15px var(--accent-purple-hov);
            border-color: transparent;
        }

        .prev-btn {
            left: 15px;
        }

        .next-btn {
            right: 15px;
        }

        .software-section {
            margin-top: 32px;
        }

        .software-category {
            margin-bottom: 20px;
        }

        .software-category h4 {
            font-size: 0.95rem;
            color: var(--accent-purple);
            margin-bottom: 12px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-weight: 800;
        }

        .software-category h4 i {
            color: var(--accent-purple);
        }

        .software-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .software-tag {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-main);
            transition: var(--transition);
            cursor: default;
        }

        .software-tag:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 64px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 48px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h2 {
            font-size: 3.5rem;
            color: var(--text-main);
            font-weight: 800;
            letter-spacing: -0.04em;
        }

        .stat-item p {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-sub);
            margin-top: 4px;
        }

        .skills {
            margin-top: 64px;
            padding: 32px;
        }

        .skills h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 32px;
            color: var(--text-main);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .skills-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .skill-item {
            margin-bottom: 24px;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .skill-info span:first-child {
            color: var(--text-main);
            font-weight: 500;
        }

        .skill-info span:last-child {
            color: var(--accent-purple-hov);
            font-weight: 800;
            text-shadow: 0 0 10px rgba(216, 72, 164, 0.4);
        }

        .skill-bar-bg {
            width: 100%;
            height: 5px;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .skill-bar-fill {
            height: 100%;
            border-radius: 10px;
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            width: var(--skill-percent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 0 15px rgba(140, 35, 241, 0.5);
            will-change: transform;
        }

        .show-skill {
            transform: scaleX(1);
        }

        /* --- MUSIC & SECTION TEXTS --- */
        .music-exp-text {
            font-size: 1.4rem;
            color: var(--text-sub);
            font-weight: 500;
            margin-top: 8px;
            margin-bottom: 32px;
            text-align: left;
            width: 100%;
            display: block;
            line-height: 1.4;
        }

        .music-subtitle {
            font-size: 1.4rem;
            color: var(--text-sub);
            font-weight: 500;
            margin-bottom: 24px;
            margin-top: 48px;
            text-align: left;
            width: 100%;
            display: block;
            letter-spacing: 1px;
            line-height: 1.4;
        }

        .highlight-neon {
            font-size: 1.55rem;
            color: var(--text-main);
            font-weight: 800;
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(216, 72, 164, 0.4);
        }

        .white-text-only {
            color: #ffffff;
            font-weight: 700;
        }

        /* --- FILE UNFOLD SHOWCASE --- */
        .unfold-showcase-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            padding: 20px 0;
            margin-top: 48px;
            min-height: 500px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .unfold-media-wrapper {
            width: 100%;
            position: relative;
            border-radius: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: visible;
        }

        .unfold-media-content {
            width: 100%;
            height: auto;
            border-radius: 24px;
            display: block;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease, border-color 0.6s ease;
            position: relative;
            z-index: 2;
        }

        .unfold-media-wrapper:hover .unfold-media-content,
        .unfold-media-wrapper:hover .video-play-overlay {
            transform: translateY(-8px) scale(1.02);
        }

        .unfold-media-wrapper:hover .unfold-media-content {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(140, 35, 241, 0.25);
            border-color: rgba(216, 72, 164, 0.4);
        }

        .glow-unfold {
            position: absolute;
            width: 90%;
            height: 90%;
            top: 5%;
            left: 5%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.35;
            filter: blur(55px);
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 24px;
            background: radial-gradient(circle, rgba(140, 35, 241, 0.65) 0%, rgba(216, 72, 164, 0.35) 40%, rgba(0, 196, 255, 0.2) 70%, transparent 100%);
            mix-blend-mode: screen;
            animation: unfoldGlowPulse 8s infinite alternate ease-in-out;
            will-change: transform, opacity;
        }

        .unfold-media-wrapper:hover .glow-unfold {
            opacity: 0.55;
            transform: scale(1.1);
            filter: blur(40px);
        }

        @keyframes unfoldGlowPulse {
            0% {
                opacity: 0.25;
                transform: scale(0.95);
            }

            100% {
                opacity: 0.45;
                transform: scale(1.05);
            }
        }

        .glow-blender {
            position: absolute;
            width: 90%;
            height: 90%;
            top: 5%;
            left: 5%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.35;
            filter: blur(55px);
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 24px;
            background: radial-gradient(circle, rgba(255, 106, 0, 0.55) 0%, rgba(138, 43, 226, 0.3) 40%, rgba(0, 0, 0, 0) 70%);
            mix-blend-mode: screen;
            animation: blenderGlowPulse 8s infinite alternate ease-in-out;
            will-change: transform, opacity;
        }

        .unfold-media-wrapper:hover .glow-blender {
            opacity: 0.55;
            transform: scale(1.1);
            filter: blur(40px);
        }

        @keyframes blenderGlowPulse {
            0% {
                opacity: 0.25;
                transform: scale(0.95);
            }

            100% {
                opacity: 0.45;
                transform: scale(1.05);
            }
        }

        .unfold-subtitle .tech-tag.cycles-tag {
            border-color: rgba(255, 140, 0, 0.3);
            color: #ff8c00;
            background: rgba(255, 140, 0, 0.05);
        }

        .unfold-subtitle .tech-tag.cycles-tag:hover {
            background: rgba(255, 140, 0, 0.15);
            border-color: rgba(255, 140, 0, 0.6);
            box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
        }

        .glow-unreal {
            position: absolute;
            width: 90%;
            height: 90%;
            top: 5%;
            left: 5%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.35;
            filter: blur(55px);
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 24px;
            background: radial-gradient(circle, rgba(0, 122, 255, 0.55) 0%, rgba(140, 35, 241, 0.3) 40%, rgba(0, 0, 0, 0) 70%);
            mix-blend-mode: screen;
            animation: unrealGlowPulse 8s infinite alternate ease-in-out;
            will-change: transform, opacity;
        }

        .unfold-media-wrapper:hover .glow-unreal {
            opacity: 0.55;
            transform: scale(1.1);
            filter: blur(40px);
        }

        @keyframes unrealGlowPulse {
            0% {
                opacity: 0.25;
                transform: scale(0.95);
            }

            100% {
                opacity: 0.45;
                transform: scale(1.05);
            }
        }

        .unfold-subtitle .tech-tag.ue-tag {
            border-color: rgba(0, 122, 255, 0.3);
            color: #007aff;
            background: rgba(0, 122, 255, 0.05);
        }

        .unfold-subtitle .tech-tag.ue-tag:hover {
            background: rgba(0, 122, 255, 0.15);
            border-color: rgba(0, 122, 255, 0.6);
            box-shadow: 0 0 10px rgba(0, 122, 255, 0.2);
        }

        .unfold-subtitle .tech-tag.rt-tag {
            border-color: rgba(0, 240, 255, 0.3);
            color: #00f0ff;
            background: rgba(0, 240, 255, 0.05);
        }

        .unfold-subtitle .tech-tag.rt-tag:hover {
            background: rgba(0, 240, 255, 0.15);
            border-color: rgba(0, 240, 255, 0.6);
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
        }

        .unfold-details {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            z-index: 10;
        }

        .unfold-subtitle .tech-tag.ae-tag {
            border-color: rgba(0, 196, 255, 0.3);
            color: #00c4ff;
            background: rgba(0, 196, 255, 0.05);
        }

        .unfold-subtitle .tech-tag.ae-tag:hover {
            background: rgba(0, 196, 255, 0.15);
            border-color: rgba(0, 196, 255, 0.6);
            box-shadow: 0 0 10px rgba(0, 196, 255, 0.2);
        }

        .unfold-subtitle .tech-tag.plugin-free-tag {
            border-color: rgba(255, 215, 0, 0.3);
            color: #ffd700;
            background: rgba(255, 215, 0, 0.05);
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
        }

        .unfold-subtitle .tech-tag.plugin-free-tag:hover {
            background: rgba(255, 215, 0, 0.15);
            border-color: rgba(255, 215, 0, 0.6);
            box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
        }

        /* --- DYNAMIC PREMIUM GLASS PLAY OVERLAY FOR VIDEOS --- */
        .video-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.6s, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 24px;
            background: rgba(10, 15, 30, 0.45);
            backdrop-filter: blur(10px) saturate(120%);
            -webkit-backdrop-filter: blur(10px) saturate(120%);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .video-play-overlay.show-overlay {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .video-play-overlay-btn {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 16px 32px;
            border-radius: 50px;
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
                inset 0 0 15px rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        /* Subtle glowing flare inside the play button */
        .video-play-overlay-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.15),
                    transparent);
            transition: 0.6s;
        }

        .video-play-overlay-btn:hover::before {
            left: 100%;
        }

        .video-play-icon-wrapper {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
        }

        .video-play-icon-wrapper i {
            font-size: 1rem;
            margin-left: 2px;
            /* visual centering correction for play icon */
            color: #ffffff;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .video-play-overlay-btn:hover {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.08);
        }

        .video-play-overlay-btn:active {
            transform: scale(0.98);
        }

        /* Section-Specific Glowing Flare & Hover Overrides */
        #portfolio-file-unfold .video-play-overlay-btn:hover {
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(140, 35, 241, 0.35),
                inset 0 0 20px rgba(140, 35, 241, 0.15);
            border-color: rgba(140, 35, 241, 0.45);
        }

        #portfolio-file-unfold .video-play-overlay-btn:hover .video-play-icon-wrapper {
            background: rgba(140, 35, 241, 0.9);
            box-shadow: 0 0 15px rgba(140, 35, 241, 0.7);
            border-color: rgba(140, 35, 241, 0.9);
        }

        #portfolio-blender-portal .video-play-overlay-btn:hover {
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(255, 106, 0, 0.35),
                inset 0 0 20px rgba(255, 106, 0, 0.15);
            border-color: rgba(255, 106, 0, 0.45);
        }

        #portfolio-blender-portal .video-play-overlay-btn:hover .video-play-icon-wrapper {
            background: rgba(255, 106, 0, 0.9);
            box-shadow: 0 0 15px rgba(255, 106, 0, 0.7);
            border-color: rgba(255, 106, 0, 0.9);
        }

        #portfolio-unreal-intro .video-play-overlay-btn:hover {
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(0, 196, 255, 0.35),
                inset 0 0 20px rgba(0, 196, 255, 0.15);
            border-color: rgba(0, 196, 255, 0.45);
        }

        #portfolio-unreal-intro .video-play-overlay-btn:hover .video-play-icon-wrapper {
            background: rgba(0, 196, 255, 0.9);
            box-shadow: 0 0 15px rgba(0, 196, 255, 0.7);
            border-color: rgba(0, 196, 255, 0.9);
        }

        @media (max-width: 768px) {
            .unfold-showcase-container {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-top: 32px;
                min-height: auto;
                padding: 10px 0;
            }

            .unfold-media-wrapper {
                max-width: 100%;
            }

            .video-play-overlay-btn {
                padding: 8px 16px;
                font-size: 0.72rem;
                gap: 8px;
            }

            .video-play-icon-wrapper {
                width: 24px;
                height: 24px;
            }

            .video-play-icon-wrapper i {
                font-size: 0.72rem;
            }

            .unfold-main-title {
                font-size: 2rem !important;
            }

            .unfold-subtitle-text {
                font-size: 0.95rem !important;
            }

            .unfold-specs {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }
        }

        /* --- NEW RELEASE CARD OVERHAUL --- */
        .glow-new-release {
            background: radial-gradient(circle at 30% 50%, rgba(0, 196, 255, 0.25) 0%, rgba(14, 28, 54, 0.15) 50%, transparent 70%);
        }

        .new-release-card {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 48px;
            padding: 48px;
            align-items: center;
            margin: 48px auto 64px auto;
            background: rgba(14, 28, 54, 0.35) !important;
            /* Premium low-opacity translucent blue backdrop */
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid rgba(0, 196, 255, 0.25) !important;
            /* Soft cyan/blue neon glass border */
            border-radius: 32px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 196, 255, 0.05);
            max-width: 1200px;
            min-height: 550px;
            position: relative;
            z-index: 10;
            overflow: hidden;
            transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
        }

        .new-release-card:hover {
            border-color: rgba(0, 196, 255, 0.6) !important;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 196, 255, 0.15);
            transform: translateY(-4px);
        }

        .nr-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .nr-banner {
            width: 100%;
            max-width: 440px;
            aspect-ratio: 1/1;
            border-radius: 24px;
            background-color: #1c1c1e;
            background-size: cover;
            background-position: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .new-release-card:hover .nr-banner {
            transform: scale(1.03) rotate(-1deg);
            box-shadow: 0 25px 55px rgba(0, 196, 255, 0.2);
        }

        .btn-listen-now {
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px) saturate(120%);
            -webkit-backdrop-filter: blur(15px) saturate(120%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: white;
            text-decoration: none;
            padding: 10px 45px;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.02);
            transition: var(--transition);
            width: max-content;
            z-index: 10;
        }

        .btn-listen-now::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-25deg);
            transition: all 0.6s ease;
        }

        .btn-listen-now:hover::after {
            left: 150%;
        }

        .btn-listen-now:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.45);
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), inset 0 0 10px rgba(255, 255, 255, 0.05);
            color: #ffffff;
        }

        @keyframes btn-flare-pulse-green {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }

            50% {
                transform: translate(3px, 3px) scale(1.12);
                opacity: 0.35;
            }

            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }
        }

        @keyframes btn-flare-pulse-blue {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }

            50% {
                transform: translate(-3px, -3px) scale(1.12);
                opacity: 0.35;
            }

            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }
        }

        .btn-listen-now .btn-flare {
            position: absolute;
            width: 75px;
            height: 75px;
            filter: blur(20px);
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.2;
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
        }

        .btn-listen-now .flare-green {
            background: radial-gradient(circle, rgba(57, 255, 20, 1) 0%, rgba(57, 255, 20, 0.4) 50%, transparent 80%);
            top: -38px;
            left: -38px;
            animation: btn-flare-pulse-green 6s infinite ease-in-out;
        }

        .btn-listen-now .flare-blue {
            background: radial-gradient(circle, rgba(0, 255, 255, 1) 0%, rgba(0, 255, 255, 0.4) 50%, transparent 80%);
            bottom: -38px;
            right: -38px;
            animation: btn-flare-pulse-blue 7s infinite ease-in-out;
        }

        .btn-listen-now:hover .flare-green {
            opacity: 0.8;
            transform: scale(1.4);
            animation-play-state: paused;
        }

        .btn-listen-now:hover .flare-blue {
            opacity: 0.8;
            transform: scale(1.4);
            animation-play-state: paused;
        }

        .btn-listen-now .nr-btn-logo,
        .btn-listen-now span,
        .btn-listen-now i {
            position: relative;
            z-index: 2;
        }

        .nr-btn-logo {
            height: 18px;
            width: auto;
            filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
        }

        .nr-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            z-index: 2;
        }

        .nr-tagline {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .new-release-tag {
            border: 1px solid rgba(0, 196, 255, 0.3) !important;
            color: #00c4ff !important;
            background: rgba(0, 196, 255, 0.05) !important;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .nr-title {
            font-size: 2.2rem;
            color: var(--text-main);
            margin-bottom: 24px;
            font-weight: 800;
            line-height: 1.25;
            text-shadow: 0 0 20px rgba(0, 196, 255, 0.25);
        }

        .nr-title .sinhala-title {
            display: block;
            font-size: 1.3rem;
            font-weight: 600;
            opacity: 0.75;
            margin-top: 8px;
            color: var(--text-sub);
        }

        .nr-credits {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 28px;
            margin-bottom: 28px;
        }

        .nr-credits li {
            font-size: 1rem;
            color: var(--text-sub);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nr-credits li i {
            color: rgba(0, 196, 255, 0.8);
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .nr-credits li strong {
            color: var(--text-main);
            font-weight: 700;
            width: 155px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .mobile-break {
            display: none;
        }

        /* --- MUSIC ACHIEVEMENTS STYLES --- */
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 48px;
            margin-top: 16px;
        }

        .achievement-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 16px;
            padding: 32px 20px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.01);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 10;
        }

        .achievement-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(216, 72, 164, 0.2);
            border-color: rgba(255, 255, 255, 0.08) !important;
            background: rgba(255, 255, 255, 0.03);
        }

        /* Animated Edge Flares */
        .card-flare {
            position: absolute;
            width: 180px;
            height: 180px;
            filter: blur(55px);
            z-index: -1;
            pointer-events: none;
            opacity: 0.12;
            mix-blend-mode: screen;
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
        }

        .achievement-card:hover .card-flare {
            opacity: 0.75;
        }

        .achievement-card:hover .flare-a,
        .achievement-card:hover .flare-b {
            animation-play-state: paused !important;
        }

        .achievement-card:hover .flare-a {
            transform: translate(calc(var(--nx, 0) * 35px), calc(var(--ny, 0) * 35px)) scale(1.1);
        }

        .achievement-card:hover .flare-b {
            transform: translate(calc(var(--nx, 0) * -35px), calc(var(--ny, 0) * -35px)) scale(1.1);
        }

        @keyframes float-tl-cw {
            0% {
                top: -90px;
                left: -90px;
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }

            25% {
                top: -90px;
                left: calc(100% - 90px);
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }

            50% {
                top: calc(100% - 90px);
                left: calc(100% - 90px);
                border-radius: 50% 40% 60% 50% / 40% 50% 40% 60%;
            }

            75% {
                top: calc(100% - 90px);
                left: -90px;
                border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
            }

            100% {
                top: -90px;
                left: -90px;
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
        }

        @keyframes float-br-cw {
            0% {
                bottom: -90px;
                right: -90px;
                border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
            }

            25% {
                bottom: -90px;
                right: calc(100% - 90px);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }

            50% {
                bottom: calc(100% - 90px);
                right: calc(100% - 90px);
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }

            75% {
                bottom: calc(100% - 90px);
                right: -90px;
                border-radius: 50% 40% 60% 50% / 40% 50% 40% 60%;
            }

            100% {
                bottom: -90px;
                right: -90px;
                border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
            }
        }

        @keyframes float-tl-ccw {
            0% {
                top: -90px;
                left: -90px;
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }

            25% {
                top: calc(100% - 90px);
                left: -90px;
                border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
            }

            50% {
                top: calc(100% - 90px);
                left: calc(100% - 90px);
                border-radius: 50% 40% 60% 50% / 40% 50% 40% 60%;
            }

            75% {
                top: -90px;
                left: calc(100% - 90px);
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }

            100% {
                top: -90px;
                left: -90px;
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
        }

        @keyframes float-br-ccw {
            0% {
                bottom: -90px;
                right: -90px;
                border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
            }

            25% {
                bottom: calc(100% - 90px);
                right: -90px;
                border-radius: 50% 40% 60% 50% / 40% 50% 40% 60%;
            }

            50% {
                bottom: calc(100% - 90px);
                right: calc(100% - 90px);
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }

            75% {
                bottom: -90px;
                right: calc(100% - 90px);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }

            100% {
                bottom: -90px;
                right: -90px;
                border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
            }
        }

        /* Box 1: Cyberpunk */
        .card-cyberpunk:hover {
            box-shadow: 0 15px 35px rgba(0, 243, 255, 0.2);
        }

        .card-cyberpunk .flare-a {
            background: rgba(0, 243, 255, 0.9);
            animation: float-tl-cw 35s ease-in-out infinite;
        }

        .card-cyberpunk .flare-b {
            background: rgba(255, 0, 234, 0.9);
            animation: float-br-cw 35s ease-in-out infinite;
        }

        .card-cyberpunk:hover .award-logo {
            filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.8));
        }

        /* Box 2: Synthwave */
        .card-synthwave:hover {
            box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
        }

        .card-synthwave .flare-a {
            background: rgba(138, 43, 226, 0.9);
            animation: float-tl-ccw 40s ease-in-out infinite;
        }

        .card-synthwave .flare-b {
            background: rgba(255, 20, 147, 0.9);
            animation: float-br-ccw 40s ease-in-out infinite;
        }

        .card-synthwave:hover .award-logo {
            filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8));
        }

        /* Box 3: Matrix/Toxic */
        .card-toxic:hover {
            box-shadow: 0 15px 35px rgba(57, 255, 20, 0.2);
        }

        .card-toxic .flare-a {
            background: rgba(57, 255, 20, 0.9);
            animation: float-tl-cw 30s ease-in-out infinite;
            animation-delay: -15s;
        }

        .card-toxic .flare-b {
            background: rgba(0, 255, 255, 0.9);
            animation: float-br-cw 30s ease-in-out infinite;
            animation-delay: -15s;
        }

        .card-toxic:hover .award-logo {
            filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.8));
        }

        /* Box 4: Sunset */
        .card-sunset:hover {
            box-shadow: 0 15px 35px rgba(255, 69, 0, 0.2);
        }

        .card-sunset .flare-a {
            background: rgba(255, 69, 0, 0.9);
            animation: float-tl-ccw 45s ease-in-out infinite;
            animation-delay: -15s;
        }

        .card-sunset .flare-b {
            background: rgba(255, 215, 0, 0.9);
            animation: float-br-ccw 45s ease-in-out infinite;
            animation-delay: -15s;
        }

        .card-sunset:hover .award-logo {
            filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.8));
        }

        .award-logo {
            width: 85px;
            height: 85px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(216, 72, 164, 0.6));
            transition: var(--transition);
            position: relative;
            z-index: 2;
            pointer-events: none;
        }

        .achievement-card:hover .award-logo {
            transform: scale(1.15);
            filter: drop-shadow(0 0 20px rgba(216, 72, 164, 1));
        }

        .achievement-info {
            position: relative;
            z-index: 2;
            pointer-events: none;
            width: 100%;
        }

        .achievement-info h4 {
            font-size: 0.92rem;
            color: var(--text-main);
            margin-bottom: 6px;
            font-weight: 800;
            letter-spacing: -0.01em;
            line-height: 1.35;
        }

        .achievement-info p {
            font-size: 0.76rem;
            color: var(--text-sub);
            line-height: 1.35;
        }

        .yt-channel-widget {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 32px;
            margin-top: 24px;
            margin-bottom: 48px;
            border-radius: 24px;
            background: rgba(44, 44, 46, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.2s ease !important;
        }

        .yt-channel-widget::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(500px circle at var(--x, 50%) var(--y, 50%), rgba(216, 72, 164, 0.35) 0%, rgba(140, 35, 241, 0.15) 40%, transparent 100%);
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
        }

        .yt-channel-widget:hover {
            border-color: rgba(216, 72, 164, 0.5);
            box-shadow: 0 10px 35px rgba(216, 72, 164, 0.2);
            transform: translateY(-4px);
        }

        .yt-channel-widget:hover::before {
            opacity: 1;
        }

        .yt-channel-info {
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 2;
            position: relative;
            pointer-events: none;
        }

        .yt-avatar-box {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #1c1c1e;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .yt-channel-widget:hover .yt-avatar-box {
            border-color: rgba(216, 72, 164, 0.8);
            box-shadow: 0 0 20px rgba(216, 72, 164, 0.4);
            transform: scale(1.05);
        }

        .yt-avatar-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .yt-channel-details h3 {
            font-size: 1.3rem;
            color: var(--text-main);
            margin-bottom: 4px;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .yt-channel-details p {
            color: var(--text-sub);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .yt-sub-btn {
            background: #ff0000;
            color: white;
            padding: 10px 24px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            z-index: 2;
            border: 2px solid transparent;
        }

        .yt-sub-btn:hover {
            background: #ffffff;
            color: #ff0000;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
            border-color: #ffffff;
        }

        .albums-section {
            margin-top: 32px;
        }

        .albums-section h2 {
            font-size: 1.8rem;
            margin-bottom: 24px;
            font-weight: 800;
            text-align: left;
            width: 100%;
            display: block;
            letter-spacing: -0.02em;
        }

        .albums-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .album-card {
            padding: 0;
            display: block;
            text-decoration: none;
        }

        .album-img {
            width: 100%;
            height: 220px;
            background: #1c1c1e;
            position: relative;
            transition: transform 0.5s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .album-card:hover .album-img {
            transform: scale(1.03);
        }

        .album-img::after {
            content: '\f144';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            font-size: 3rem;
            color: #fff;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.8;
            transition: var(--transition);
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
        }

        .album-card:hover .album-img::after {
            transform: translate(-50%, -50%) scale(1.1);
            color: var(--text-main);
        }

        .album-info {
            padding: 20px;
            background: transparent;
        }

        .album-info h3 {
            font-size: 1.15rem;
            font-weight: 800;
            margin-bottom: 6px;
            color: var(--text-main);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            letter-spacing: -0.01em;
        }

        .album-info p {
            color: var(--accent-purple-hov);
            font-size: 0.9rem;
            font-weight: 400;
            margin-bottom: 12px;
        }

        .album-stats {
            display: flex;
            gap: 15px;
            font-size: 0.85rem;
            color: var(--text-sub);
            font-weight: 500;
        }

        /* --- PREMIUM DYNAMIC MUSIC SHOWREEL PLAYER --- */
        .music-showreel-container {
            position: relative;
            max-width: 1200px;
            margin: 32px auto 48px auto !important;
            overflow: visible;
            z-index: 10;
        }

        .music-showreel-container:hover .glow-music-showreel {
            opacity: 0.65;
            transform: scale(1.05);
        }

        .glow-music-showreel {
            position: absolute;
            width: 90%;
            height: 90%;
            top: 5%;
            left: 5%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.35;
            filter: blur(55px);
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 24px;
            background: radial-gradient(circle, rgba(216, 72, 164, 0.65) 0%, rgba(140, 35, 241, 0.35) 40%, rgba(0, 196, 255, 0.2) 70%, transparent 100%);
            mix-blend-mode: screen;
        }

        .music-showreel-media-wrapper {
            position: relative;
            width: 100%;
            height: 480px;
            border-radius: 24px;
            overflow: hidden;
            background-color: #0b0c10;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease, border-color 0.6s ease;
            z-index: 2;
        }

        .music-showreel-media-wrapper:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(216, 72, 164, 0.25);
            border-color: rgba(216, 72, 164, 0.4);
        }

        .music-showreel-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Premium Play Button Overlay */
        .music-showreel-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 12;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.6s;
            background: rgba(10, 15, 30, 0.4);
            backdrop-filter: blur(12px) saturate(120%);
            -webkit-backdrop-filter: blur(12px) saturate(120%);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .music-showreel-play-overlay.show-overlay {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .music-showreel-play-btn {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 16px 32px;
            border-radius: 50px;
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .music-showreel-play-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: 0.6s;
        }

        .music-showreel-play-btn:hover::before {
            left: 100%;
        }

        .music-showreel-icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .music-showreel-icon-wrap i {
            font-size: 1rem;
            margin-left: 2px;
            color: #ffffff;
        }

        .music-showreel-play-btn:hover {
            transform: scale(1.05);
            border-color: rgba(216, 72, 164, 0.45);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(140, 35, 241, 0.35), inset 0 0 20px rgba(140, 35, 241, 0.15);
        }

        .music-showreel-play-btn:hover .music-showreel-icon-wrap {
            background: rgba(216, 72, 164, 0.9);
            box-shadow: 0 0 15px rgba(216, 72, 164, 0.7);
            border-color: rgba(216, 72, 164, 0.9);
        }

        .music-showreel-play-btn:active {
            transform: scale(0.98);
        }

        /* Mobile Adjustments for Music Showreel */
        @media (max-width: 1024px) {
            .music-showreel-container {
                margin: 24px auto 32px auto !important;
            }

            .music-showreel-media-wrapper {
                border-radius: 20px;
                height: auto !important;
                aspect-ratio: 16/9;
            }

            .music-showreel-play-overlay {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background-color: rgba(10, 15, 30, 0.6) !important;
            }

            .music-showreel-play-btn {
                padding: 12px 24px;
                font-size: 0.85rem;
                gap: 12px;
            }

            .music-showreel-icon-wrap {
                width: 34px;
                height: 34px;
            }

            .music-showreel-icon-wrap i {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .music-showreel-play-btn {
                padding: 8px 16px;
                font-size: 0.72rem;
                gap: 8px;
            }

            .music-showreel-icon-wrap {
                width: 24px;
                height: 24px;
            }

            .music-showreel-icon-wrap i {
                font-size: 0.72rem;
            }
        }

        /* --- YOUTUBE COVERS SECTION --- */
        .yt-covers-section {
            margin-top: 64px;
        }

        .yt-covers-section h2 {
            font-size: 1.8rem;
            margin-bottom: 24px;
            font-weight: 800;
            text-align: left;
            width: 100%;
            display: block;
            letter-spacing: -0.02em;
        }

        .yt-covers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .yt-covers-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .cover-item-wrapper {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .yt-cover-card {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            background: rgba(44, 44, 46, 0.5);
            backdrop-filter: blur(25px) saturate(200%);
            -webkit-backdrop-filter: blur(25px) saturate(200%);
            padding: 0;
            text-decoration: none;
        }

        .yt-cover-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

        .yt-cover-img-box {
            width: 100%;
            aspect-ratio: 16/9;
            position: relative;
            overflow: hidden;
            display: block;
        }

        .yt-cover-img {
            width: 100%;
            height: 100%;
            background-position: center !important;
            background-size: cover !important;
            transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .yt-cover-card:hover .yt-cover-img {
            transform: scale(1.05);
        }

        .yt-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: var(--transition);
            opacity: 0;
        }

        .yt-cover-card:hover .yt-play-overlay {
            opacity: 1;
        }

        .yt-play-overlay i {
            font-size: 3rem;
            color: #fff;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
            transform: scale(0.9);
            transition: var(--transition);
        }

        .yt-cover-card:hover .yt-play-overlay i {
            transform: scale(1);
        }

        .yt-cover-details {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .yt-cover-title {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 10px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-decoration: none;
            transition: var(--transition);
            letter-spacing: -0.01em;
        }

        .yt-cover-title:hover {
            color: var(--accent-purple-hov);
        }

        .yt-cover-stats {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .yt-cover-stats i {
            color: #ff0000;
            font-size: 1rem;
            filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
        }

        .views-highlight {
            font-size: 1.3rem;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
            letter-spacing: -0.02em;
            font-style: normal;
        }

        /* --- NEON TRANSPARENT COMMENTS --- */
        .yt-comments-container {
            position: relative;
            height: 90px;
            overflow: hidden;
            width: 100%;
            margin-top: 4px;
        }

        .yt-comment {
            display: flex;
            gap: 12px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            align-items: flex-end;
        }

        .yt-comment.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .yt-comment-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--accent-purple-hov);
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-bottom: 4px;
        }

        .yt-comment-body {
            background: linear-gradient(135deg, rgba(140, 35, 241, 0.25), rgba(216, 72, 164, 0.25));
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(216, 72, 164, 0.3);
            box-shadow: 0 4px 15px rgba(140, 35, 241, 0.2);
            padding: 10px 14px;
            border-radius: 18px 18px 18px 4px;
            display: inline-block;
            max-width: 88%;
        }

        .yt-comment-header {
            margin-bottom: 4px;
            display: none;
        }

        .yt-comment-name {
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
        }

        .yt-comment-time {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.6);
            margin-left: 6px;
            font-weight: 400;
        }

        .yt-comment-text {
            font-size: 0.85rem;
            color: #fff;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-style: normal;
            font-weight: 400;
        }

        /* --- CONTACT SECTION & FORMS STYLES --- */
        .contact-cta {
            text-align: center;
            padding: 100px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(28, 28, 30, 0.3);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
        }

        .contact-cta .section-heading-wrapper {
            margin-bottom: 8px;
        }

        .contact-cta p {
            color: var(--text-sub);
            margin-bottom: 40px;
            font-size: 1.1rem;
            text-align: center;
            width: 100%;
            display: block;
        }

        .contact-page-section {
            text-align: center;
            padding: 40px 0 64px 0;
        }

        .contact-page-section .section-heading-wrapper {
            margin-bottom: 8px;
        }

        .contact-page-section p {
            color: var(--text-sub);
            margin-bottom: 40px;
            font-size: 1.1rem;
            text-align: center;
            width: 100%;
            display: block;
        }

        .contact-info-container {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 64px;
        }

        .contact-info-item {
            padding: 14px 32px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-main);
            font-size: 1.05rem;
            font-weight: 600;
            transition: var(--transition);
            background: rgba(44, 44, 46, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .contact-info-item i {
            font-size: 1.3rem;
            color: var(--accent-purple);
            transition: var(--transition);
            filter: drop-shadow(0 0 5px rgba(140, 35, 241, 0.5));
        }

        .contact-info-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(140, 35, 241, 0.4);
            border-color: rgba(216, 72, 164, 0.5);
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-info-item:hover i {
            color: var(--accent-purple-hov);
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(216, 72, 164, 0.8));
        }

        .contact-forms-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .contact-form {
            padding: 32px;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .box-flare {
            position: absolute;
            width: 250px;
            height: 250px;
            filter: blur(45px);
            border-radius: 50%;
            z-index: -1;
            pointer-events: none;
            opacity: 0.75;
            mix-blend-mode: screen;
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .flare-tl {
            top: -100px;
            left: -100px;
            background: rgba(37, 211, 102, 0.65);
        }

        .flare-br {
            bottom: -100px;
            right: -100px;
            background: rgba(216, 72, 164, 0.65);
        }

        .form-header {
            margin-bottom: 32px;
            text-align: center;
        }

        .form-header h3 {
            font-size: 1.8rem;
            color: var(--text-main);
            margin-bottom: 8px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            letter-spacing: -0.02em;
        }

        .form-header p {
            color: var(--text-sub);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 0;
        }

        .form-group {
            margin-bottom: 16px;
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: var(--text-sub);
            font-size: 0.9rem;
            margin-bottom: 8px;
            font-weight: 600;
            padding-left: 4px;
        }

        .form-control {
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 16px;
            border-radius: 14px;
            color: #ffffff;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-purple);
            box-shadow: 0 0 15px rgba(140, 35, 241, 0.2);
            background: rgba(30, 30, 30, 0.9);
        }

        #waMessage {
            resize: vertical;
            min-height: 120px;
        }

        #emMessage {
            resize: vertical;
            min-height: 80px;
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 14px;
            color: white;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .btn-submit span {
            position: relative;
            z-index: 2;
            pointer-events: none;
        }

        .btn-email {
            background: radial-gradient(180px circle at var(--x, 50%) var(--y, 50%), rgba(216, 72, 164, 0.5) 0%, rgba(20, 20, 20, 0.95) 100%);
            border: 1px solid rgba(216, 72, 164, 0.3);
            box-shadow: 0 5px 20px rgba(216, 72, 164, 0.1);
        }

        .btn-email:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 30px rgba(216, 72, 164, 0.4);
            border-color: rgba(216, 72, 164, 0.8);
            background: radial-gradient(180px circle at var(--x, 50%) var(--y, 50%), rgba(216, 72, 164, 0.8) 0%, rgba(20, 20, 20, 0.85) 100%);
            filter: brightness(1.15);
        }

        .btn-whatsapp {
            background: radial-gradient(180px circle at var(--x, 50%) var(--y, 50%), rgba(37, 211, 102, 0.5) 0%, rgba(20, 20, 20, 0.95) 100%);
            border: 1px solid rgba(37, 211, 102, 0.3);
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.1);
        }

        .btn-whatsapp:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
            border-color: rgba(37, 211, 102, 0.8);
            background: radial-gradient(180px circle at var(--x, 50%) var(--y, 50%), rgba(37, 211, 102, 0.8) 0%, rgba(20, 20, 20, 0.85) 100%);
            filter: brightness(1.15);
        }


        .footer {
            padding: 28px 0;
            background-color: transparent;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1fr;
            gap: 40px;
            margin-bottom: 20px;
            align-items: center;
        }

        .footer-left p {
            font-size: 0.9rem;
            color: var(--text-sub);
            line-height: 1.6;
            margin-top: 12px;
        }

        .footer-mid h4,
        .footer-right h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--text-main);
            font-weight: 800;
        }

        .footer-mid ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            gap: 12px;
            padding: 0;
            margin: 0;
        }

        .footer-mid ul li {
            margin-bottom: 0;
        }

        .footer-mid ul li a {
            text-decoration: none;
            color: var(--text-sub);
            font-size: 0.9rem;
            transition: var(--transition);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0;
        }

        .footer-mid ul li a:hover {
            color: var(--accent-purple-hov);
            text-shadow: 0 0 8px rgba(216, 72, 164, 0.4);
        }

        .footer-mid ul li a.footer-contact-btn {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .footer-mid ul li a.footer-contact-btn:hover {
            text-shadow: 0 0 10px rgba(216, 72, 164, 0.6);
        }

        .footer-right .social-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-right .social-icons a {
            color: var(--text-main);
            font-size: 1.1rem;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-right .social-icons a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(140, 35, 241, 0.3);
            color: var(--accent-purple-hov);
        }

        .copyright-text {
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            font-weight: 400;
        }

        /* --- MOBILE RESPONSIVE UPDATES FOR TABLETS & LAPTOPS --- */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 12px;
            }

            .nav-links a {
                font-size: 14px;
                padding: 8px 16px;
            }
        }

        /* --- MOBILE RESPONSIVE UPDATES FOR STANDARD TABLETS/PHONES --- */
        @media (max-width: 768px) {

            .navbar {
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
                padding: 8px 5% !important;
                gap: 0 !important;
                background: rgba(10, 10, 15, 0.8) !important;
                backdrop-filter: blur(15px) !important;
                -webkit-backdrop-filter: blur(15px) !important;
                z-index: 999999 !important;
            }

            .navbar .logo {
                display: flex !important;
                font-size: 18px !important;
                gap: 6px !important;
                position: relative !important;
                z-index: 1000000 !important;
            }

            .navbar .logo img {
                height: 22px !important;
                margin-right: 0 !important;
            }

            .navbar .logo span {
                font-size: 18px !important;
            }

            .logo-dot {
                width: 5px !important;
                height: 5px !important;
                right: -8px !important;
            }

            .nav-toggle {
                display: block !important;
                padding: 6px 10px !important;
                font-size: 1.1rem !important;
                position: relative !important;
                z-index: 1000000 !important;
            }

            .nav-links {
                display: flex;
                flex-direction: column !important;
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100vw !important;
                height: auto !important;
                background: linear-gradient(135deg, rgba(15, 8, 28, 0.97), rgba(28, 8, 22, 0.97)) !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                border: none !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
                border-radius: 0 0 24px 24px !important;
                box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(216, 72, 164, 0.15) !important;
                padding: 65px 24px 30px 24px !important;
                gap: 8px !important;
                flex-wrap: nowrap !important;
                align-items: stretch !important;
                z-index: 999998 !important;
                margin-top: 0 !important;
                overflow: hidden !important;
                box-sizing: border-box !important;

                /* Closed state defaults - slide up and fade! */
                opacity: 0 !important;
                visibility: hidden !important;
                transform: translateY(-20px) !important;
                transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s !important;
                will-change: opacity, transform;
            }

            .nav-links.instant-hide {
                opacity: 0 !important;
                visibility: hidden !important;
                transform: translateY(-20px) !important;
                transition: none !important;
            }

            .nav-links::before {
                content: "";
                position: absolute;
                top: -30px;
                left: -30px;
                width: 100px;
                height: 100px;
                background: radial-gradient(circle, rgba(140, 35, 241, 0.5) 0%, rgba(140, 35, 241, 0) 70%) !important;
                filter: blur(10px) !important;
                border-radius: 50%;
                pointer-events: none;
                z-index: -1 !important;
                animation: boxFlareA 4s infinite alternate ease-in-out;
            }

            .nav-links::after {
                content: "";
                position: absolute;
                bottom: -30px;
                right: -30px;
                width: 100px;
                height: 100px;
                background: radial-gradient(circle, rgba(216, 72, 164, 0.5) 0%, rgba(216, 72, 164, 0) 70%) !important;
                filter: blur(10px) !important;
                border-radius: 50%;
                pointer-events: none;
                z-index: -1 !important;
                animation: boxFlareB 4s infinite alternate ease-in-out;
            }

            /* Open state when navToggle toggles 'show-menu' class on .nav-links */
            .nav-links.show-menu {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) !important;
                backdrop-filter: blur(35px) saturate(220%) !important;
                -webkit-backdrop-filter: blur(35px) saturate(220%) !important;
            }

            .nav-links li {
                width: 100% !important;
                list-style: none;
                margin: 0 !important;
                opacity: 0;
                transform: none !important;
                transition: none !important;
                will-change: opacity;
            }

            .nav-links.show-menu li {
                opacity: 1;
                transform: none !important;
                transition: opacity 0.15s ease-in-out !important;
            }

            .nav-links.show-menu li:nth-child(1) {
                transition-delay: 0.02s !important;
            }

            .nav-links.show-menu li:nth-child(2) {
                transition-delay: 0.04s !important;
            }

            .nav-links.show-menu li:nth-child(3) {
                transition-delay: 0.06s !important;
            }

            .nav-links.show-menu li:nth-child(4) {
                transition-delay: 0.08s !important;
            }

            .nav-links.show-menu li:nth-child(5) {
                transition-delay: 0.10s !important;
            }

            .nav-links a {
                display: flex !important;
                align-items: center;
                justify-content: center;
                width: 100% !important;
                margin: 0 !important;
                padding: 10px 0 !important;
                font-size: 12px !important;
                text-transform: uppercase !important;
                font-weight: 700 !important;
                letter-spacing: 1px !important;
                color: rgba(255, 255, 255, 0.6) !important;
                background: transparent !important;
                border: none !important;
                border-bottom: 1px solid transparent !important;
                border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.12) 80%, transparent) 1 !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
            }

            .nav-links a:hover,
            .nav-links a.active {
                color: #ffffff !important;
                background: transparent !important;
                border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25) 20%, rgba(255, 255, 255, 0.25) 80%, transparent) 1 !important;
                text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
            }

            .nav-links a.nav-contact-btn {
                position: relative;
                overflow: hidden;
                background: rgba(255, 255, 255, 0.06) !important;
                border: 1px solid rgba(255, 255, 255, 0.12) !important;
                border-radius: 20px !important;
                border-image: none !important;
                color: #ffffff !important;
                box-shadow: 0 4px 15px rgba(140, 35, 241, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
                font-weight: 800 !important;
                z-index: 1 !important;
                padding: 10px 16px !important;
                margin-top: 4px !important;
                transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
            }

            .nav-links a.nav-contact-btn::before {
                content: "";
                position: absolute;
                top: -20px;
                left: -20px;
                width: 50px;
                height: 50px;
                background: radial-gradient(circle, rgba(140, 35, 241, 0.95) 0%, rgba(140, 35, 241, 0) 70%);
                filter: blur(4px);
                border-radius: 50%;
                pointer-events: none;
                z-index: -1;
                opacity: 0.8;
                animation: flareBreatheA 3s infinite alternate ease-in-out;
            }

            .nav-links a.nav-contact-btn::after {
                content: "";
                position: absolute;
                bottom: -20px;
                right: -20px;
                width: 50px;
                height: 50px;
                background: radial-gradient(circle, rgba(216, 72, 164, 0.95) 0%, rgba(216, 72, 164, 0) 70%);
                filter: blur(4px);
                border-radius: 50%;
                pointer-events: none;
                z-index: -1;
                opacity: 0.8;
                animation: flareBreatheB 3s infinite alternate ease-in-out;
            }

            .nav-links a.nav-contact-btn:hover,
            .nav-links a.nav-contact-btn.active {
                background: rgba(255, 255, 255, 0.1) !important;
                border-color: rgba(255, 255, 255, 0.25) !important;
                box-shadow: 0 6px 20px rgba(216, 72, 164, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
            }

            @keyframes flareBreatheA {
                0% {
                    transform: scale(0.95) translate(0, 0);
                    opacity: 0.7;
                }

                100% {
                    transform: scale(1.15) translate(3px, 3px);
                    opacity: 0.95;
                }
            }

            @keyframes flareBreatheB {
                0% {
                    transform: scale(0.95) translate(0, 0);
                    opacity: 0.7;
                }

                100% {
                    transform: scale(1.15) translate(-3px, -3px);
                    opacity: 0.95;
                }
            }

            @keyframes boxFlareA {
                0% {
                    transform: scale(0.9) translate(0, 0);
                    opacity: 0.7;
                }

                100% {
                    transform: scale(1.1) translate(5px, 5px);
                    opacity: 1;
                }
            }

            @keyframes boxFlareB {
                0% {
                    transform: scale(0.9) translate(0, 0);
                    opacity: 0.7;
                }

                100% {
                    transform: scale(1.1) translate(-5px, -5px);
                    opacity: 1;
                }
            }

            /* Hide indicators on mobile menu to prevent dynamic bounding bugs */
            .nav-indicator {
                display: none !important;
            }

            #intro-text {
                font-size: 2.2rem;
                height: auto;
                min-height: 50px;
                margin-top: 0;
                white-space: normal;
                text-align: center;
                line-height: 1.1;
                border-right: 3px solid var(--accent-purple);
            }

            .section {
                padding: 64px 0;
            }

            .section-title-large {
                font-size: 2.2rem;
                text-align: left;
                margin-bottom: 12px;
            }

            .about-main-title,
            .music-title,
            .portfolio-title {
                font-size: 3.7rem;
                text-align: left;
                margin-bottom: 12px;
            }

            .contact-cta .section-title-large {
                text-align: center;
            }

            .hero-content {
                margin-top: 25vh;
                gap: 16px;
            }

            .hero-bg-img {
                background-size: 240% auto;
                background-position: center 18%;
            }

            .cloud-wrapper-pink {
                left: -70vw;
                opacity: 0.25;
            }

            .cloud-wrapper-purple {
                right: -70vw;
                opacity: 0.25;
            }

            .hero-subtitle {
                font-size: 1rem;
                padding: 0 16px;
                margin: 0;
                text-align: center;
                width: 100%;
            }

            .magic-text {
                font-size: 5.5rem;
                font-weight: 800;
                height: 95px;
                align-items: center;
                padding-top: 0;
                letter-spacing: -3px;
                margin: 0;
                justify-content: center;
            }

            .hero-btn-group {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
                gap: 16px;
                margin: 0;
            }

            .btn {
                padding: 10px 32px;
                font-size: 13px;
            }

            .what-i-do-grid,
            .portfolio-grid,
            .stats-grid,
            .albums-grid,
            .yt-covers-grid,
            .yt-covers-grid-2,
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .about-hello-lead {
                font-size: 1.375rem;
                margin-bottom: 0.85rem;
                line-height: 1.3;
            }

            .about-text p {
                font-size: 0.85rem;
                line-height: 1.6;
                margin-bottom: 16px;
                text-align: left;
            }

            .mobile-break {
                display: block;
            }

            .about-image-wrapper {
                height: 320px;
                border-radius: 20px;
            }

            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .achievement-card {
                padding: 12px 8px;
                gap: 6px;
                border-radius: 16px;
                transition: none !important;
                transform: none !important;
                box-shadow: none !important;
                border: 1px solid rgba(255, 255, 255, 0.08) !important;
            }

            .achievement-card:hover {
                transform: none !important;
                box-shadow: none !important;
                background: rgba(255, 255, 255, 0.01) !important;
                border-color: rgba(255, 255, 255, 0.08) !important;
            }

            .achievement-card .card-flare {
                display: none !important;
            }

            .award-logo {
                width: 44px;
                height: 44px;
                margin-bottom: 2px;
            }

            .achievement-card:hover .award-logo {
                transform: none !important;
                filter: none !important;
            }

            .achievement-card:hover .flare-a,
            .achievement-card:hover .flare-b {
                transform: none !important;
            }

            .achievement-info h4 {
                font-size: 0.72rem;
                margin-bottom: 4px;
                white-space: nowrap;
            }

            .achievement-info p {
                font-size: 0.58rem;
                white-space: nowrap;
            }

            .music-exp-text {
                font-size: 1.15rem;
                margin-bottom: 20px;
            }

            .music-subtitle {
                font-size: 1.15rem;
                margin-top: 32px;
                margin-bottom: 16px;
            }

            /* FIXED: Perfectly Centered New Release on Mobile with safe top padding */
            .new-release-card {
                grid-template-columns: 1fr;
                padding: 48px 24px 32px 24px;
                gap: 24px;
                border-radius: 24px;
                justify-items: center;
            }

            .new-release-card:hover {
                transform: none !important;
                box-shadow: none !important;
            }

            .nr-left {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
            }

            .nr-banner {
                width: 100%;
                max-width: 220px;
                margin: 0 auto;
            }

            .new-release-card:hover .nr-banner {
                transform: none !important;
            }

            .nr-right {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                width: 100%;
            }

            .nr-title {
                font-size: 1.4rem;
                text-align: center;
                width: 100%;
                margin-bottom: 20px;
            }

            .nr-title .sinhala-title {
                font-size: 0.95rem;
                margin-top: 6px;
            }

            .nr-credits {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                background: rgba(255, 255, 255, 0.05);
                padding: 20px 24px;
                border-radius: 16px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                border-bottom: none !important;
                padding-bottom: 20px !important;
                margin-bottom: 12px !important;
            }

            .nr-credits li {
                font-size: 0.85rem;
                justify-content: flex-start;
                width: 100%;
                margin-bottom: 8px;
                align-items: flex-start;
            }

            .nr-credits li strong {
                width: 130px;
                font-size: 0.85rem;
                flex-shrink: 0;
                white-space: nowrap;
            }

            .new-release-card .btn-listen-now {
                margin-top: 12px;
                align-self: center;
            }

            .btn-listen-now {
                transition: none !important;
            }

            .btn-listen-now::after {
                display: none !important;
            }

            .btn-listen-now:hover {
                transform: none !important;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.02) !important;
            }

            .btn-listen-now .btn-flare {
                animation: none !important;
            }

            .wid-card {
                padding: 24px 20px;
                border-radius: 20px;
            }

            .wid-card i {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }

            .wid-card h3 {
                font-size: 1.15rem;
                margin-bottom: 8px;
            }

            .wid-card p {
                font-size: 0.8rem;
            }

            .stat-item h2 {
                font-size: 2.2rem;
            }

            .skills {
                padding: 24px;
                border-radius: 20px;
            }

            .skills h2 {
                font-size: 1.6rem;
            }

            .yt-channel-widget {
                flex-direction: column;
                text-align: center;
                padding: 24px;
                gap: 16px;
                margin-top: 32px;
                margin-bottom: 32px;
                border-radius: 20px;
                transition: none !important;
                transform: none !important;
                box-shadow: none !important;
                border: 1px solid rgba(255, 255, 255, 0.1) !important;
            }

            .yt-channel-widget:hover {
                transform: none !important;
                box-shadow: none !important;
                border-color: rgba(255, 255, 255, 0.1) !important;
            }

            .yt-channel-widget::before {
                display: none !important;
            }

            .yt-channel-widget:hover .yt-avatar-box {
                transform: none !important;
                box-shadow: none !important;
                border-color: rgba(255, 255, 255, 0.1) !important;
            }

            .album-card {
                transition: none !important;
                transform: none !important;
            }

            .album-card:hover .album-img {
                transform: none !important;
            }

            .album-card:hover .album-img::after {
                transform: none !important;
            }

            .yt-channel-info {
                flex-direction: column;
                gap: 12px;
            }

            .yt-avatar-box {
                width: 64px;
                height: 64px;
            }

            .yt-channel-details h3 {
                font-size: 1.3rem;
            }

            .yt-channel-details p {
                justify-content: center;
                font-size: 0.9rem;
            }

            .yt-sub-btn {
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            .contact-cta h2 {
                font-size: 1.8rem;
                text-align: center;
            }

            .contact-cta p {
                font-size: 0.85rem;
                margin-bottom: 24px;
                text-align: center;
            }

            .contact-info-item {
                font-size: 0.9rem;
                padding: 12px 24px;
            }

            .contact-info-item i {
                font-size: 1.1rem;
            }

            .contact-forms-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .contact-form {
                padding: 20px;
                border-radius: 20px;
            }

            .form-header {
                margin-bottom: 20px;
            }

            .form-header h3 {
                font-size: 1.3rem;
                margin-bottom: 6px;
            }

            .form-header p {
                font-size: 0.8rem;
                margin-bottom: 12px;
            }

            .form-group {
                margin-bottom: 16px;
            }

            .form-group label {
                font-size: 0.8rem;
                margin-bottom: 6px;
            }

            .form-control {
                padding: 12px;
                font-size: 0.9rem;
                border-radius: 12px;
            }

            #waMessage {
                min-height: 90px;
            }

            #emMessage {
                min-height: 70px;
            }

            .btn-submit {
                padding: 12px;
                font-size: 0.9rem;
                border-radius: 12px;
            }

            .footer-left,
            .footer-mid,
            .footer-right {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-mid ul {
                justify-content: center;
                gap: 16px;
            }

            .footer-right .social-icons {
                justify-content: center;
            }

            .footer-right .social-icons a {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .marquee-container {
                padding: 10px 0;
            }


            .hero-dot {
                width: 12px;
                height: 12px;
                right: -12px;
                top: 15%;
            }

            #intro-text {
                font-size: 2.2rem !important;
            }

            .music-exp-text {
                font-size: 1.05rem;
                margin-bottom: 32px;
                text-align: left;
                width: 100%;
                display: block;
            }

            .music-subtitle {
                font-size: 0.95rem;
                text-align: left;
                margin-top: 40px;
                width: 100%;
                display: block;
            }

            .nr-marquee-container {
                padding: 10px 0;
            }

            .nr-marquee-text {
                font-size: 0.85rem !important;
                padding: 0 20px !important;
            }

            /* 3D Model Showcase Mobile Adaptations */
            .gun-showcase-container {
                grid-template-columns: 1fr;
                padding: 24px;
                margin-top: 32px;
                min-height: auto;
                gap: 24px;
                border-radius: 24px;
            }

            .gun-viewer-wrapper {
                height: 300px;
            }

            .gun-title {
                font-size: 2rem;
                text-align: left;
            }

            .gun-subtitle {
                margin-bottom: 16px;
            }

            .gun-description {
                font-size: 0.85rem;
                margin-bottom: 20px;
            }

            .gun-specs {
                gap: 12px;
                padding-top: 16px;
            }

            .carousel-nav-controls {
                margin-top: 24px;
                gap: 16px;
            }

            .carousel-glass-btn {
                padding: 10px 20px;
                font-size: 0.85rem;
                border-radius: 12px;
            }

            .carousel-dot {
                width: 8px;
                height: 8px;
            }

            .album-info h3 {
                font-size: 1.1rem;
            }

            .yt-cover-title {
                font-size: 0.9rem;
            }

            .yt-cover-card {
                border-radius: 20px;
            }

            .portfolio-card {
                border-radius: 20px;
            }

            .floating-social-tag-container {
                top: 280px !important;
                transform: none !important;
            }
        }

        /* --- FIXED: STANDARD MOBILES (iPhone XR, 13, 14, 15 etc - up to 480px) --- */
        @media (max-width: 480px) {

            .hero-content {
                margin-top: 25vh;
                gap: 16px;
            }

            .hero-bg-img {
                background-size: 260% auto;
                background-position: center 18%;
            }

            .cloud-wrapper-pink {
                left: -75vw;
                opacity: 0.2;
            }

            .cloud-wrapper-purple {
                right: -75vw;
                opacity: 0.2;
            }

            .magic-text {
                font-size: 4.2rem;
                height: auto;
                letter-spacing: -2px;
                margin: 0;
                justify-content: center;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                padding: 0 16px;
                margin: 0;
                text-align: center;
                width: 100%;
            }

            .hero-btn-group {
                flex-direction: column;
                gap: 12px;
                align-items: center;
                width: 100%;
                justify-content: center;
                margin: 0;
                padding: 0 16px;
            }

            .hero-btn-group .btn {
                width: 100%;
                max-width: 260px;
                justify-content: center;
                padding: 12px 20px;
            }

            .stat-item h2 {
                font-size: 1.8rem;
            }

            .yt-avatar-box {
                width: 50px;
                height: 50px;
            }

            .yt-channel-details h3 {
                font-size: 1.1rem;
            }

            /* FIXED: Extra compact centering for small mobiles */
            .new-release-card {
                padding: 40px 16px 24px 16px;
                gap: 20px;
            }

            .nr-banner {
                max-width: 200px;
            }

            .nr-title {
                font-size: 1.25rem;
                margin-bottom: 16px;
            }

            .nr-title .sinhala-title {
                font-size: 0.85rem;
                margin-top: 4px;
            }

            .nr-credits {
                max-width: 280px;
                padding: 16px;
                border-bottom: none !important;
                margin-bottom: 8px !important;
            }

            .nr-credits li {
                font-size: 0.75rem;
                margin-bottom: 6px;
                gap: 8px;
            }

            .nr-credits li strong {
                width: 95px;
                font-size: 0.75rem;
            }

            .nr-credits li i {
                font-size: 0.85rem;
                width: 16px;
            }

            .nr-marquee-container {
                padding: 8px 0;
            }

            .nr-marquee-text {
                font-size: 0.8rem !important;
                padding: 0 15px !important;
            }

            .nr-marquee-dot {
                padding: 0 10px;
                font-size: 0.9rem !important;
            }

            #intro-text {
                font-size: 2.2rem !important;
                height: auto !important;
                min-height: 50px !important;
                border-right: 3px solid var(--accent-purple) !important;
                padding-right: 8px !important;
                margin-top: 0 !important;
                white-space: normal !important;
            }
        }

        /* --- FIXED: ULTRA-SMALL SCREENS (iPhone SE etc - up to 380px) --- */
        @media (max-width: 380px) {
            .magic-text {
                font-size: 2.5rem;
                height: 40px;
            }
        }

        /* Floating Vertical Social Media Tag */
        .floating-social-tag-container {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 99999;
            display: flex;
            align-items: center;
            pointer-events: none;
        }

        .floating-social-tag {
            background: rgba(10, 10, 10, 0.75);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: none;
            -webkit-border-radius: 16px 0 0 16px;
            border-radius: 16px 0 0 16px;
            -webkit-background-clip: padding-box;
            background-clip: padding-box;
            padding: 20px 14px;
            /* Static padding to prevent horizontal layout reflows */
            width: 64px;
            /* Hard static width keeps the rendering tree completely stable */
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55), 0 0 35px rgba(140, 35, 241, 0.22);
            transition: box-shadow 0.35s ease, background 0.35s ease;
            /* Transition only painting styles, not layout sizes */
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            /* Force hardware accelerated compositing layer */
            pointer-events: auto;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            -webkit-mask-image: -webkit-radial-gradient(white, black);
            mask-image: -webkit-radial-gradient(white, black);
            isolation: isolate;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        /* Floating Social Tag Animated Edge Flares */
        .floating-social-tag .card-flare {
            position: absolute;
            width: 120px;
            height: 120px;
            filter: blur(35px);
            z-index: -1;
            pointer-events: none;
            opacity: 0.45;
            mix-blend-mode: screen;
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, background 0.5s ease-in-out;
        }

        .floating-social-tag .flare-a {
            background: rgba(140, 35, 241, 0.85);
            /* Purple */
            top: -45px;
            left: -45px;
        }

        .floating-social-tag .flare-b {
            background: rgba(216, 72, 164, 0.85);
            /* Pink */
            bottom: -45px;
            right: -45px;
        }

        .floating-social-tag:hover .card-flare {
            opacity: 0.55;
        }



        .floating-social-tag:hover .flare-a {
            transform: translate(calc(var(--nx, 0) * 20px), calc(var(--ny, 0) * 20px)) scale(1.15);
            background: rgba(57, 255, 20, 0.55);
            /* Yakku toxic green - softened opacity */
        }

        .floating-social-tag:hover .flare-b {
            transform: translate(calc(var(--nx, 0) * -20px), calc(var(--ny, 0) * -20px)) scale(1.15);
            background: rgba(0, 255, 255, 0.55);
            /* Yakku cyan - softened opacity */
        }

        .floating-social-text {
            writing-mode: vertical-lr;
            transform: rotate(180deg);
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 3px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .floating-social-text i {
            transform: rotate(90deg);
            color: var(--accent-purple-hov);
            transition: color 0.3s ease, filter 0.3s ease;
        }

        .floating-social-icons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            max-height: 0;
            opacity: 0;
            visibility: hidden;
            overflow: visible;
            /* Prevents icons and their glows from getting clipped on scale hovers */
            width: 36px;
            /* Constant static width matches internal icons layout */
            transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.3s;
            will-change: max-height, opacity;
            transform: translate3d(0, 0, 0);
        }

        .floating-social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .floating-social-icon:hover {
            transform: scale(1.15);
            color: #ffffff;
        }

        .floating-social-tag:hover {
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.55), 0 0 30px rgba(57, 255, 20, 0.16);
            /* Softer toxic green glow */
        }

        .floating-social-tag:hover .floating-social-icons {
            max-height: 240px;
            /* Expands smoothly using GPU height composition */
            opacity: 1;
            visibility: visible;
            margin-top: 15px;
            /* Clean gap below the share icon */
        }

        .floating-social-tag:hover .floating-social-text {
            color: rgba(57, 255, 20, 0.85);
            /* Softer green text */
            text-shadow: 0 0 6px rgba(57, 255, 20, 0.3);
        }

        .floating-social-tag:hover .floating-social-text i {
            color: rgba(0, 255, 255, 0.85);
            /* Softer cyan icon */
            filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.4));
        }

        .floating-social-icon.facebook:hover {
            background: #1877F2;
            border-color: #1877F2;
            box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
        }

        .floating-social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: transparent;
            box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
        }

        .floating-social-icon.youtube:hover {
            background: #FF0000;
            border-color: #FF0000;
            box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
        }

        .floating-social-icon.behance:hover {
            background: #0057ff;
            border-color: #0057ff;
            box-shadow: 0 0 15px rgba(0, 87, 255, 0.5);
        }

        .floating-social-icon.spotify:hover {
            background: #1DB954;
            border-color: #1DB954;
            box-shadow: 0 0 15px rgba(29, 185, 84, 0.5);
        }

        @media (max-width: 768px) {
            .floating-social-tag {
                padding: 12px 8px;
                /* Stable static padding on mobile */
                width: 42px;
                /* Stable static width on mobile */
                border-radius: 12px 0 0 12px !important;
                gap: 8px;
                -webkit-mask-image: -webkit-radial-gradient(white, black);
                mask-image: radial-gradient(white, black);
                isolation: isolate;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                transform: translate3d(0, 0, 0);
            }

            .floating-social-tag:hover {
                /* Static to prevent layout reflow lags on mobile devices */
                border-radius: 12px 0 0 12px !important;
            }

            .floating-social-text {
                font-size: 0.55rem;
                letter-spacing: 1.5px;
                gap: 5px;
            }

            .floating-social-icons {
                width: 26px;
                /* Static width on mobile */
            }

            .floating-social-tag:hover .floating-social-icons {
                max-height: 240px;
                margin-top: 10px;
            }

            .floating-social-icon {
                width: 26px;
                height: 26px;
                font-size: 0.75rem;
            }
        }

        /* --- FOOTER GRID LAYOUT SYSTEM MODIFICATIONS --- */
        .footer-left {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .footer-left-brand {
            flex: 1.2;
            min-width: 200px;
        }

        .footer-left-explore {
            flex: 0.8;
            min-width: 120px;
        }

        .footer-left-explore h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--text-main);
            font-weight: 800;
        }

        .footer-left-explore ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 0;
            margin: 0;
        }

        .footer-left-explore ul li a {
            text-decoration: none;
            color: var(--text-sub);
            font-size: 0.9rem;
            transition: var(--transition);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .footer-left-explore ul li a:hover {
            color: var(--accent-purple-hov);
            text-shadow: 0 0 8px rgba(216, 72, 164, 0.4);
        }

        /* --- FOOTER CENTER 3D LOGO VIDEO --- */
        .footer-center-logo-col {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .footer-logo-3d-video-raw {
            width: 180%;
            max-width: 450px;
            height: auto;
            display: block;
            margin: -35px auto -25px auto;
            pointer-events: none;
            mix-blend-mode: screen;
            opacity: 0.9;
            transition: transform 0.4s ease, opacity 0.4s ease;
            position: relative;
            left: -28%;
        }

        .footer-logo-3d-video-raw:hover {
            transform: scale(1.03) translateX(-5px);
            /* Premium subtle interaction scale with slight hover shift */
            opacity: 1;
            /* Glows to full visibility on hover interaction */
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 32px !important;
                text-align: center !important;
            }

            .footer-left {
                flex-direction: column !important;
                align-items: center !important;
                gap: 24px !important;
            }

            .footer-left-brand,
            .footer-left-explore {
                width: 100%;
                text-align: center !important;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-logo {
                justify-content: center !important;
            }

            .footer-logo-3d-video-raw {
                width: 120% !important;
                /* Fluid percentage scale on mobile, slightly larger for majestic presence */
                max-width: 250px !important;
                /* Beautifully scaled up on mobile screens */
                left: 0 !important;
                /* Perfectly centered on mobile (reset shift) */
                margin: -25px auto !important;
                /* Fine-tuned vertical margins on mobile for tight layout bleed */
            }
        }

        /* --- DETAILED SERVICES & ACADEMY SHOWCASE --- */
        .services-intro {
            margin-top: 48px;
            padding: 40px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .services-detailed-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 64px;
            margin-top: 32px;
        }

        .service-detail-card {
            padding: 32px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: var(--transition);
            border: 1px solid transparent;
            min-height: 320px;
            justify-content: flex-end;
            z-index: 1;
        }

        .service-detail-card>* {
            position: relative;
            z-index: 2;
        }

        .service-detail-card:hover {
            transform: translateY(-5px);
            border-color: rgba(216, 72, 164, 0.25);
            box-shadow: 0 10px 30px rgba(140, 35, 241, 0.15);
        }

        .service-detail-offerings {
            background: rgba(255, 255, 255, 0.015);
            border-left: 2px solid var(--accent-purple);
            padding: 14px 18px;
            border-radius: 0 12px 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-right: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            margin-top: 4px;
        }

        .service-detail-approach {
            margin-top: auto;
            padding-top: 8px;
        }

        .academy-section {
            padding: 48px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            margin-bottom: 48px;
            margin-top: 32px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .academy-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .academy-card {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.04);
            padding: 28px;
            border-radius: 18px;
            transition: var(--transition);
        }

        .academy-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(216, 72, 164, 0.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .academy-cta-box {
            text-align: center;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 36px;
            border-radius: 20px;
            max-width: 800px;
            margin: 0 auto;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .academy-notify-form {
            display: flex;
            gap: 12px;
            max-width: 440px;
            width: 100%;
        }

        .academy-notify-input {
            flex: 1;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            padding: 12px 24px;
            color: white;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .academy-notify-input:focus {
            outline: none;
            border-color: var(--accent-purple-hov);
            background: rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 15px rgba(216, 72, 164, 0.15);
        }

        @media (max-width: 992px) {
            .academy-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .services-intro {
                padding: 24px;
            }

            .services-detailed-grid {
                grid-template-columns: 1fr !important;
                gap: 24px;
            }

            .academy-section {
                padding: 24px;
            }

            .academy-grid {
                grid-template-columns: 1fr !important;
                gap: 20px;
            }

            .academy-cta-box {
                padding: 24px;
            }

            .academy-notify-form {
                flex-direction: column;
                align-items: stretch;
                max-width: 100%;
            }

            .academy-notify-input {
                width: 100%;
            }
        }