        :root {
            --t-blue: #5BCEFA;
            --t-pink: #F5A9B8;
            --t-white: #FFFFFF;
            --bg: #050505;
            --text: #ffffff;
            --stroke: #5BCEFA;
            --blade-width: 65px;
            --blade-expand: 280px;
            --blade-auth-expand: 420px;
            --glow-spread: 0px;
            --panel-bg: rgba(10, 10, 10, 0.7);
        }

        /* --- SECRET 'ULTRA SOFT' MODE OVERRIDES --- */
        body.ultra-soft-mode {
            --bg: #1a0b14;
            --stroke: #F5A9B8;
            --t-blue: #f7dbe1;
            --panel-bg: rgba(30, 15, 25, 0.8);
            --glow-spread: 15px;
            animation: soft-pulse 4s infinite alternate;
        }

        @keyframes soft-pulse {
            0% {
                box-shadow: inset 0 0 50px rgba(245, 169, 184, 0.1);
            }

            100% {
                box-shadow: inset 0 0 150px rgba(245, 169, 184, 0.3);
            }
        }

        /* --- CUSTOM CURSOR --- */
        * {
            box-sizing: border-box;
            cursor: none !important;
        }

        html {
            scroll-behavior: smooth;
        }

        #custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid var(--t-white);
            pointer-events: none;
            z-index: 999999;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
            transition: width 0.1s, height 0.1s, background-color 0.1s;
        }

        .cursor-trail {
            position: fixed;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 999998;
            transform: translate(-50%, -50%);
            opacity: 0.6;
            filter: blur(2px);
            transition: width 0.2s, height 0.2s;
        }

        @media (pointer: coarse) {
            * {
                cursor: auto !important;
            }

            #custom-cursor,
            .cursor-trail {
                display: none !important;
            }

            a,
            button,
            input,
            .blade,
            .file-row {
                cursor: pointer !important;
            }

            .cyber-input {
                cursor: text !important;
            }
        }

        body {
            background-color: var(--bg);
            background-image:
                linear-gradient(rgba(91, 206, 250, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(245, 169, 184, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            color: var(--text);
            font-family: "Arial Black", sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            display: flex;
            transition: background-color 1s ease;
        }

        /* --- VISUAL BOOT SEQUENCE --- */
        #boot-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: #050505;
            z-index: 99900;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
        }

        #boot-screen.hidden {
            opacity: 0;
            transform: scale(2);
            pointer-events: none;
            filter: blur(10px);
        }

        .boot-ring-container {
            position: relative;
            width: 180px;
            height: 180px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        .boot-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top-color: var(--t-blue);
            border-bottom-color: var(--t-pink);
            animation: spin-ring 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }

        .boot-ring.inner {
            width: 140px;
            height: 140px;
            border-top-color: var(--t-pink);
            border-bottom-color: var(--t-white);
            animation: spin-ring 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
        }

        @keyframes spin-ring {
            100% {
                transform: rotate(360deg);
            }
        }

        .boot-icon {
            font-family: monospace;
            font-size: 3rem;
            font-weight: bold;
            color: var(--t-white);
            text-shadow: 0 0 15px var(--t-blue);
            animation: pulse-icon 0.8s infinite alternate;
        }

        @keyframes pulse-icon {
            0% {
                opacity: 0.3;
                transform: scale(0.9);
            }

            100% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .boot-bar-container {
            width: 300px;
            max-width: 80vw;
            height: 12px;
            border: 2px solid var(--t-blue);
            padding: 2px;
            position: relative;
            box-shadow: 0 0 10px rgba(91, 206, 250, 0.3);
        }

        .boot-bar-fill {
            height: 100%;
            background: repeating-linear-gradient(45deg, var(--t-pink), var(--t-pink) 10px, var(--t-blue) 10px, var(--t-blue) 20px);
            width: 0%;
            transition: width 0.1s linear;
        }

        .boot-status {
            margin-top: 20px;
            font-family: monospace;
            font-size: 1.1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--t-blue);
            text-shadow: 0 0 5px var(--t-blue);
        }

        /* Złagodzony efekt Glitch */
        .boot-glitch {
            animation: mild-glitch 0.2s infinite;
        }

        @keyframes mild-glitch {
            0% {
                transform: translate(0) scale(1);
                filter: hue-rotate(0deg);
            }

            25% {
                transform: translate(-5px, 5px) skewX(5deg);
                filter: hue-rotate(45deg);
            }

            50% {
                transform: translate(5px, -5px) skewX(-5deg);
                filter: hue-rotate(90deg);
            }

            75% {
                transform: translate(-2px, -2px) skewX(2deg);
                filter: hue-rotate(135deg);
            }

            100% {
                transform: translate(0) scale(1);
                filter: hue-rotate(0deg);
            }
        }

        /* Initial hidden state for dashboard - FIXED JUMPING */
        .blade-system {
            opacity: 0;
            filter: blur(20px);
            transform: translateX(-20px);
        }

        .main-content {
            opacity: 0;
            filter: blur(20px);
            transform: translateY(20px);
        }

        /* Revealed state */
        body.system-ready .blade-system {
            opacity: 1;
            filter: blur(0);
            transform: translateX(0);
        }

        body.system-ready .main-content {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        /* --- EFFECTS & OVERLAYS --- */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.04;
            pointer-events: none;
            z-index: 2000;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        @keyframes scanline {
            0% {
                transform: translateY(-100%);
            }

            100% {
                transform: translateY(100%);
            }
        }

        .scanline {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(91, 206, 250, 0.15);
            z-index: 3000;
            pointer-events: none;
            animation: scanline 8s linear infinite;
        }

        /* EMP SHOCKWAVE EFFECT */
        .emp-active {
            animation: emp-shock 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @keyframes emp-shock {
            0% {
                filter: invert(0) contrast(1) hue-rotate(0deg);
                transform: translateX(0) scale(1);
            }

            15% {
                filter: invert(1) contrast(3) hue-rotate(90deg);
                transform: translateX(-15px) skewX(8deg) scale(1.02);
            }

            35% {
                filter: invert(0.8) contrast(2) hue-rotate(180deg);
                transform: translateX(15px) skewX(-8deg) scale(0.98);
            }

            60% {
                filter: invert(1) contrast(4) hue-rotate(270deg);
                transform: translateX(-5px) scale(1.01);
            }

            100% {
                filter: invert(0) contrast(1) hue-rotate(0deg);
                transform: translateX(0) scale(1);
            }
        }

        /* KONAMI BARREL ROLL */
        .barrel-roll-active {
            animation: barrelRoll 1.5s cubic-bezier(0.65, 0, 0.35, 1);
        }

        @keyframes barrelRoll {
            0% {
                transform: rotate(0deg) scale(1);
            }

            50% {
                transform: rotate(180deg) scale(0.6);
                filter: hue-rotate(180deg) blur(5px);
            }

            100% {
                transform: rotate(360deg) scale(1);
                filter: hue-rotate(0deg) blur(0px);
            }
        }

        /* PLUSHIE RAIN & SHARK WAVE */
        .falling-object {
            position: fixed;
            top: -100px;
            z-index: 8000;
            font-size: 2.5rem;
            pointer-events: none;
            animation: fall linear forwards;
        }

        @keyframes fall {
            to {
                transform: translateY(120vh) rotate(720deg);
            }
        }

        .shark-wave {
            position: fixed;
            left: -200px;
            top: 50%;
            font-size: 8rem;
            z-index: 8500;
            pointer-events: none;
            animation: swim 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            filter: drop-shadow(0 0 20px var(--t-blue));
        }

        @keyframes swim {
            0% {
                transform: translate(0, -50%) rotate(-10deg);
            }

            50% {
                transform: translate(60vw, -40%) rotate(5deg) scale(1.5);
            }

            100% {
                transform: translate(120vw, -60%) rotate(-5deg);
            }
        }

        /* --- BLADE NAVIGATION (DESKTOP) --- */
        .blade-system {
            position: fixed;
            left: -100px;
            top: 0;
            height: 100vh;
            display: flex;
            flex-direction: row;
            z-index: 4000;
            background: #000;
            border-right: 2px solid var(--stroke);
            padding-left: 20px;
            /* Ujednolicona tranzycja dla całego paska, zapobiega skakaniu */
            transition: border-color 0.5s, opacity 0.6s ease, filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            transition: .5s;
        }

        .blade-system:hover {
            left: 0;
        }

        .blade {
            position: relative;
            height: 110vh;
            width: var(--blade-width);
            margin-top: -5vh;
            background: var(--t-blue);
            border-left: 1px solid rgba(0, 0, 0, 0.3);
            border-right: 3px solid #000;
            transform: skewX(-12deg);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            filter: brightness(0.6) grayscale(0.5);
        }

        .blade:nth-child(1) {
            background: #5BCEFA;
            z-index: 5;
        }

        .blade:nth-child(2) {
            background: #3da8d1;
            z-index: 4;
        }

        .blade:nth-child(3) {
            background: #F5A9B8;
            z-index: 3;
        }

        .blade:nth-child(4) {
            background: #5BCEFA;
            z-index: 2;
        }

        .blade:nth-child(5) {
            background: #4db5de;
            z-index: 1;
        }


        @media (hover: hover) and (pointer: fine) {
            .blade-system:hover .blade:not(.auth-mode) {
                width: calc(var(--blade-width) + 15px);
                filter: brightness(0.8) grayscale(0.3);
            }

            .blade:hover:not(.auth-mode) {
                width: var(--blade-expand) !important;
                filter: brightness(1.2) grayscale(0) !important;
                background: var(--t-white) !important;
                z-index: 10;
                box-shadow: 20px 0 50px rgba(91, 206, 250, 0.4), 0 0 var(--glow-spread) var(--t-pink);
            }

            .blade:hover:not(.auth-mode) .blade-label {
                transform: rotate(0deg) skewX(12deg) scale(1.1);
                letter-spacing: 2px;
                opacity: 1;
            }

            .blade:hover:not(.auth-mode) .blade-content {
                opacity: 1;
                transform: translateY(0);
                transition-delay: 0.2s;
                pointer-events: all;
            }
        }

        .blade-label {
            transform: rotate(-90deg) skewX(12deg);
            white-space: nowrap;
            color: #000;
            font-size: 1.8rem;
            letter-spacing: 10px;
            transition: all 0.4s;
            pointer-events: none;
            opacity: 0.8;
        }

        .blade-content {
            position: absolute;
            bottom: 100px;
            left: 30px;
            width: 200px;
            opacity: 0;
            transform: translateY(20px);
            transition: 0.3s ease;
            color: #000;
            font-family: monospace;
            font-size: 0.85rem;
            pointer-events: none;
        }

        .action-btn {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 15px;
            background: var(--t-pink);
            color: #000;
            text-decoration: none;
            font-weight: 900;
            font-family: "Arial Black", sans-serif;
            border: 2px solid #000;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.2s;
            cursor: none !important;
            border-radius: 0;
        }

        .action-btn:hover {
            background: var(--t-blue);
            color: #000;
            box-shadow: 4px 4px 0 #000;
            transform: translate(-2px, -2px);
        }

        .action-btn:active {
            transform: translate(2px, 2px);
            box-shadow: 0 0 0 #000;
        }

        /* --- BLADE AUTH MODE --- */
        .blade.auth-mode {
            width: var(--blade-auth-expand) !important;
            background: #050505 !important;
            border: 2px solid var(--t-pink) !important;
            border-right: 4px solid var(--t-pink) !important;
            filter: brightness(1) grayscale(0) !important;
            z-index: 20;
            box-shadow: 30px 0 80px rgba(245, 169, 184, 0.3) !important;
        }

        .blade.auth-mode .blade-label {
            color: var(--t-pink) !important;
            opacity: 0.1;
            transform: rotate(-90deg) skewX(12deg) scale(2);
            left: -20px;
        }

        .blade.auth-mode .blade-content {
            opacity: 0;
            pointer-events: none;
        }

        .login-form-container {
            position: absolute;
            bottom: 80px;
            left: 50px;
            width: 280px;
            opacity: 0;
            pointer-events: none;
            transform: skewX(12deg) translateY(30px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background: rgba(0, 0, 0, 0.8);
            padding: 25px;
            border: 1px solid var(--t-pink);
            box-shadow: 10px 10px 0 rgba(245, 169, 184, 0.2);
        }

        .blade.auth-mode .login-form-container {
            opacity: 1;
            pointer-events: all;
            transform: skewX(12deg) translateY(0);
            transition-delay: 0.2s;
        }

        .auth-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--stroke);
            padding-bottom: 10px;
        }

        .auth-header h3 {
            margin: 0;
            color: var(--stroke);
            font-family: monospace;
            font-size: 1.2rem;
            transition: color 0.5s;
        }

        .close-auth-btn {
            background: none;
            border: none;
            color: #ff0055;
            font-size: 1.2rem;
            font-weight: 900;
            transition: 0.2s;
            cursor: none !important;
        }

        .close-auth-btn:hover {
            transform: scale(1.3) rotate(90deg);
            text-shadow: 0 0 10px #ff0055;
        }

        .cyber-input {
            width: 100%;
            background: #111;
            border: 1px solid #333;
            border-left: 3px solid var(--t-pink);
            color: var(--t-blue);
            padding: 12px;
            margin-bottom: 15px;
            font-family: monospace;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
            cursor: none !important;
            text-transform: uppercase;
        }

        .cyber-input:focus {
            border-color: var(--stroke);
            background: #000;
            box-shadow: inset 0 0 15px rgba(91, 206, 250, 0.1);
        }

        .cyber-input::placeholder {
            color: #444;
        }

        .auth-submit {
            width: 100%;
            background: var(--stroke);
            color: #000;
            border: none;
            padding: 12px;
            font-family: "Arial Black", sans-serif;
            font-size: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            cursor: none !important;
            transition: 0.2s;
            margin-top: 5px;
        }

        .auth-submit:hover {
            background: var(--t-white);
            box-shadow: 4px 4px 0 var(--t-pink);
            transform: translate(-2px, -2px);
        }

        .auth-submit:active {
            transform: translate(2px, 2px);
            box-shadow: 0 0 0 var(--t-pink);
        }

        #blade-auth-msg {
            margin-top: 15px;
            font-family: monospace;
            font-size: 0.75rem;
            color: #0f0;
            min-height: 15px;
            font-weight: bold;
        }

        /* --- DASHBOARD CONTENT --- */
        .main-content {
            margin-left: calc(var(--blade-width) * 3 + 60px);
            padding: 60px 40px 100px 40px;
            flex-grow: 1;
            /* Ujednolicona tranzycja zapobiega przesuwaniu po odświeżeniu */
            transition: margin-left 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease, opacity 0.6s ease;
            max-width: 1400px;
            transform-origin: center center;
        }

        @media (hover: hover) and (pointer: fine) {
            .blade-system:has(.blade:hover:not(.auth-mode))+.main-content {
                margin-left: calc(var(--blade-expand) + var(--blade-width) * 2 + 60px);
                opacity: 0.4;
                filter: blur(4px);
            }
        }

        .blade-system:has(.blade.auth-mode)+.main-content {
            margin-left: calc(var(--blade-auth-expand) + var(--blade-width) * 2 + 80px);
            opacity: 0.15;
            filter: blur(8px) grayscale(1);
        }

        .section-target {
            scroll-margin-top: 80px;
        }

        /* --- REDESIGNED HERO BLOCK --- */
        .hero-block {
            border: 6px solid var(--stroke);
            padding: 40px;
            background: #000;
            position: relative;
            box-shadow: 15px 15px 0 var(--t-pink), 0 0 var(--glow-spread) var(--t-pink);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 80px;
            transition: border-color 0.5s, box-shadow 0.5s;
        }

        .hero-block::before {
            content: "+";
            position: absolute;
            top: 10px;
            left: 10px;
            color: var(--stroke);
            transition: 0.5s;
        }

        .hero-block::after {
            content: "+";
            position: absolute;
            bottom: 10px;
            right: 10px;
            color: var(--stroke);
            transition: 0.5s;
        }

        .hero-text h1 {
            font-size: clamp(3rem, 7vw, 6rem);
            line-height: 0.85;
            margin: 0;
            text-transform: uppercase;
            -webkit-text-stroke: 2px var(--t-white);
            color: transparent;
        }

        .hero-visualizer {
            width: 150px;
            height: 150px;
            position: relative;
            transform-style: preserve-3d;
            animation: spin-core 10s linear infinite;
            margin-right: 40px;
            flex-shrink: 0;
        }

        .hero-visualizer div {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--stroke);
            border-radius: 50%;
            box-shadow: inset 0 0 20px rgba(91, 206, 250, 0.2);
        }

        .hero-visualizer div:nth-child(1) {
            transform: rotateX(45deg) rotateY(0deg);
        }

        .hero-visualizer div:nth-child(2) {
            transform: rotateX(45deg) rotateY(60deg);
            border-color: var(--t-pink);
        }

        .hero-visualizer div:nth-child(3) {
            transform: rotateX(45deg) rotateY(120deg);
            border-color: var(--t-white);
        }

        @keyframes spin-core {
            100% {
                transform: rotateY(360deg) rotateZ(360deg);
            }
        }

        .status-tag {
            display: inline-block;
            background: var(--t-pink);
            color: #000;
            padding: 5px 15px;
            margin-bottom: 20px;
            font-weight: bold;
            transition: 0.5s;
        }

        .diagonal-marquee {
            width: 150vw;
            margin-left: -20vw;
            background: var(--t-pink);
            color: #000;
            padding: 10px 0;
            transform: rotate(-3deg);
            position: relative;
            z-index: 10;
            border-top: 4px solid #000;
            border-bottom: 4px solid #000;
            box-shadow: 0 10px 30px rgba(245, 169, 184, 0.3);
            margin-bottom: 60px;
            transition: background-color 0.5s;
        }

        .diagonal-marquee marquee {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 5px;
            text-transform: uppercase;
        }

        /* --- BENTO GRID --- */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: minmax(150px, auto);
            gap: 25px;
        }

        .panel {
            border: 3px solid var(--stroke);
            background: var(--panel-bg);
            padding: 25px;
            position: relative;
            backdrop-filter: blur(10px);
            transition: border-color 0.3s, transform 0.3s, background-color 0.5s, box-shadow 0.5s;
        }

        .panel:hover {
            border-color: var(--t-pink);
            box-shadow: inset 0 0 20px rgba(245, 169, 184, 0.2), 0 0 var(--glow-spread) var(--t-pink);
            transform: translateY(-5px);
        }

        .panel-header {
            position: absolute;
            top: -12px;
            left: 15px;
            background: var(--stroke);
            color: #000;
            padding: 2px 10px;
            font-family: monospace;
            font-size: 0.8rem;
            font-weight: bold;
            transition: background-color 0.5s;
            text-transform: uppercase;
        }

        .span-4 {
            grid-column: span 4;
        }

        .span-3 {
            grid-column: span 3;
        }

        .span-2 {
            grid-column: span 2;
        }

        .span-1 {
            grid-column: span 1;
        }

        .row-2 {
            grid-row: span 2;
        }

        .matrix-container {
            width: 100%;
            height: 100%;
            min-height: 250px;
            background: #000;
            overflow: hidden;
            position: relative;
            border: 2px solid #222;
        }

        canvas#matrix {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .vital-row {
            margin-bottom: 15px;
        }

        .vital-label {
            font-family: monospace;
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
            color: var(--t-white);
        }

        .bar-bg {
            width: 100%;
            height: 15px;
            border: 2px solid var(--t-white);
            padding: 2px;
        }

        .bar-fill {
            height: 100%;
            background: repeating-linear-gradient(45deg, var(--t-blue), var(--t-blue) 10px, transparent 10px, transparent 15px);
            transition: width 1s;
        }

        .fill-pink {
            background: repeating-linear-gradient(45deg, var(--t-pink), var(--t-pink) 10px, transparent 10px, transparent 15px);
        }

        .fill-white {
            background: repeating-linear-gradient(45deg, var(--t-white), var(--t-white) 10px, transparent 10px, transparent 15px);
        }

        .file-system {
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--stroke);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .file-row {
            display: flex;
            justify-content: space-between;
            padding: 8px;
            border: 1px dashed #333;
            transition: 0.2s;
            cursor: none !important;
        }

        .file-row:hover {
            background: rgba(91, 206, 250, 0.1);
            border-color: var(--stroke);
            padding-left: 15px;
        }

        .file-status.locked {
            color: #ff0055;
        }

        .file-status.open {
            color: #00ff00;
        }

        .file-status.link {
            color: var(--t-blue);
        }

        .terminal {
            font-family: monospace;
            color: #00ff00;
            font-size: 0.9rem;
            line-height: 1.5;
            height: 100%;
            min-height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            overflow-y: hidden;
        }

        .terminal-log-entry {
            margin: 2px 0;
            word-break: break-all;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        .custom-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-family: monospace;
            font-size: 0.9rem;
            color: var(--t-white);
        }

        .custom-list li {
            margin-bottom: 8px;
            padding-left: 15px;
            position: relative;
        }

        .custom-list li::before {
            content: '>';
            position: absolute;
            left: 0;
            color: var(--t-pink);
            font-weight: bold;
        }

        /* --- OTOP / LANDING PAGE EXTRAS --- */
        .feature-list-item {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .feature-list-item::before {
            content: "★";
            color: var(--t-pink);
            margin-right: 10px;
        }

        footer {
            margin-top: 80px;
            border-top: 1px solid var(--stroke);
            padding: 20px 0;
            font-family: monospace;
            display: flex;
            justify-content: space-between;
            transition: border-color 0.5s;
        }

        /* =========================================================
           MOBILE RESPONSIVENESS (PHONES & SMALL TABLETS)
           ========================================================= */
        @media (max-width: 900px) {
            .blade-system {
                flex-direction: row;
                top: auto;
                bottom: 0;
                width: 100vw;
                height: 70px;
                padding: 0;
                border-right: none;
                border-top: 3px solid var(--stroke);
                z-index: 5000;
            }

            .blade {
                width: 33.33%;
                height: 100%;
                margin: 0;
                transform: none;
                border: none;
                border-right: 2px solid rgba(0, 0, 0, 0.5);
                flex-direction: column;
            }

            .blade:last-child {
                border-right: none;
            }

            .blade-label {
                transform: none !important;
                font-size: 1.2rem;
                letter-spacing: 2px;
            }

            .blade:hover:not(.auth-mode) {
                width: 33.33% !important;
                box-shadow: none;
            }

            .blade:active {
                filter: brightness(1.5) grayscale(0);
            }

            .blade-content {
                display: none;
            }

            .blade.auth-mode {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100vw !important;
                height: 100vh !important;
                z-index: 9999;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                border: none !important;
            }

            .blade.auth-mode .blade-label {
                display: none;
            }

            .login-form-container {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none !important;
                width: 90%;
                max-width: 400px;
                box-shadow: 0 0 30px rgba(245, 169, 184, 0.4);
            }

            .main-content {
                margin-left: 0 !important;
                margin-bottom: 70px;
                padding: 30px 20px;
            }

            .blade-system:has(.blade.auth-mode)+.main-content {
                margin-left: 0 !important;
            }

            .hero-block {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
                padding: 30px 20px;
            }

            .hero-visualizer {
                margin-right: 0;
                order: -1;
            }

            .hero-text h1 {
                font-size: 3.5rem;
            }

            .diagonal-marquee {
                transform: rotate(0deg);
                width: 100vw;
                margin-left: -20px;
            }

            .bento-grid {
                grid-template-columns: 1fr;
            }

            .span-4,
            .span-3,
            .span-2,
            .span-1 {
                grid-column: span 1;
            }

            .row-2 {
                grid-row: auto;
            }

            .matrix-container {
                min-height: 150px;
            }

            footer {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }