/* --- DYNAMIC THEME VARIABLES --- */
        :root {
            --bg-color: #ffffff;
            --text-color: #000000;
            --accent-color: #d4ff00; /* Neon Lime */
            --border-width: 3px;
            --card-bg: #ffffff;
            --secondary-text: #666666;
            --marquee-bg: #000000;
            --marquee-text: #d4ff00;
            --input-bg: #f9f9f9;
        }

        body.dark-mode {
            --bg-color: #0a0a0a;
            --text-color: #ffffff;
            --card-bg: #111111;
            --secondary-text: #aaaaaa;
            --marquee-bg: #d4ff00;
            --marquee-text: #000000;
            --input-bg: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                        color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                        border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* Hide default cursor on desktop */
        @media (pointer: fine) {
            * { cursor: none !important; }
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            width: 100%;
        }

        h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; line-height: 0.9; }
        .mono { font-family: 'Fira Code', monospace; }

        /* Smooth Scroll Config */
        html.lenis { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }
        ::-webkit-scrollbar { display: none; }

        canvas#bg {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
            pointer-events: none;
        }

        /* --- THEME TOGGLE BUTTON --- */
        #theme-toggle {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            padding: 0.8rem 1.2rem;
            background: var(--text-color);
            color: var(--bg-color);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.2rem;
            border: none;
            box-shadow: 6px 6px 0 var(--accent-color);
            pointer-events: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #theme-toggle:active { transform: translate(2px, 2px); box-shadow: 0 0 0; }

        /* --- STYLED BRUTALIST CURSOR --- */
        #cursor-main, #cursor-follower {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            transform: translate(-50%, -50%);
            will-change: transform, opacity;
            display: none;
        }

        #cursor-main {
            width: 8px;
            height: 8px;
            background: var(--text-color);
            border-radius: 50%;
            z-index: 10001;
        }

        #cursor-follower {
            width: 40px;
            height: 40px;
            border: 2px solid var(--accent-color);
            background: rgba(212, 255, 0, 0.1);
            border-radius: 50%;
            z-index: 10000;
            box-shadow: 0 0 15px rgba(212, 255, 0, 0.4);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0; width: 100%;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            border-bottom: var(--border-width) solid var(--text-color);
            background: var(--bg-color);
        }

        @media (min-width: 768px) { nav { padding: 1.5rem 2rem; } }

        .nav-link {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.7rem;
            margin-left: 1rem;
            transition: all 0.2s;
        }

        @media (min-width: 768px) { .nav-link { font-size: 0.8rem; margin-left: 2.5rem; } }
        .nav-link:hover { color: var(--accent-color); background: var(--text-color); padding: 0 5px; }

        /* Hero Section */
        .hero-title {
            font-size: clamp(3.5rem, 16vw, 14rem);
            text-transform: uppercase;
            letter-spacing: -0.02em;
            word-break: break-word;
        }

        /* Profile Container */
        .dev-container {
            display: grid;
            grid-template-cols: 1fr;
            border: var(--border-width) solid var(--text-color);
            margin: 1rem;
            background: var(--card-bg);
        }

        @media (min-width: 1024px) { .dev-container { grid-template-cols: 1fr 1fr; margin: 2rem; } }

        .dev-box {
            padding: clamp(1.5rem, 6vw, 4.5rem);
            border-bottom: var(--border-width) solid var(--text-color);
            position: relative;
            overflow: hidden;
            background: var(--card-bg);
        }

        @media (min-width: 1024px) {
            .dev-box:nth-child(odd) { border-right: var(--border-width) solid var(--text-color); }
            .dev-box:nth-last-child(-n+2) { border-bottom: none; }
        }

        .img-reveal {
            width: clamp(150px, 20vw, 300px);
            height: clamp(155px, 20vw, 220px);
            background: #000;
            border-left: var(--border-width) solid var(--text-color);
            border-bottom: var(--border-width) solid var(--text-color);
            position: absolute;
            top: 0;
            right: 0;
            overflow: hidden;
            z-index: 10;
        }

        .img-reveal img {
            width: 100%; height: 110%; object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .tag {
            display: inline-block;
            padding: 4px 10px;
            border: 1.5px solid var(--text-color);
            margin: 2px;
            font-size: 0.65rem;
            font-weight: 800;
            text-transform: uppercase;
            background: var(--card-bg);
        }

        .btn-brutal {
            padding: 1.2rem 2rem;
            background: var(--text-color);
            color: var(--bg-color);
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(1.4rem, 4vw, 2rem);
            text-transform: uppercase;
            border: none;
            transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 5px 5px 0px var(--accent-color);
            display: inline-block;
            width: 100%;
            text-align: center;
        }

        @media (min-width: 768px) {
            .btn-brutal { width: auto; box-shadow: 8px 8px 0px var(--accent-color); padding: 1.5rem 3rem; }
        }

        .btn-brutal:hover {
            transform: translate(-3px, -3px);
            box-shadow: 10px 10px 0px var(--accent-color);
        }

        /* Contact Form */
        .contact-section {
            padding: 4rem 1rem;
            max-width: 100%;
        }

        @media (min-width: 768px) {
            .contact-section { padding: 8rem 6rem; }
        }

        .contact-form-container {
            border: var(--border-width) solid var(--text-color);
            background: var(--card-bg);
            display: grid;
            grid-template-cols: 1fr;
        }

        @media (min-width: 1024px) {
            .contact-form-container { grid-template-cols: 0.8fr 1.2fr; }
        }

        .contact-info-panel {
            padding: clamp(2rem, 5vw, 4rem);
            background: var(--text-color);
            color: var(--bg-color);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-form-panel {
            padding: clamp(2rem, 5vw, 4rem);
        }

        .input-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .input-label {
            display: block;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .brutal-input {
            width: 100%;
            padding: 1rem;
            background: var(--input-bg);
            border: var(--border-width) solid var(--text-color);
            color: var(--text-color);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: box-shadow 0.3s ease;
        }

        .brutal-input:focus {
            box-shadow: 6px 6px 0 var(--accent-color);
        }

        textarea.brutal-input {
            min-height: 150px;
            resize: vertical;
        }

        /* Pricing */
        .price-grid {
            border: var(--border-width) solid var(--text-color);
            display: grid;
            grid-template-cols: 1fr;
        }

        @media (min-width: 768px) {
            .price-grid { grid-template-cols: repeat(3, 1fr); }
        }

        .price-col {
            padding: clamp(1.5rem, 5vw, 3.5rem);
            border-bottom: var(--border-width) solid var(--text-color);
            background: var(--card-bg);
        }

        @media (min-width: 768px) {
            .price-col { border-bottom: none; border-right: var(--border-width) solid var(--text-color); }
            .price-col:last-child { border-right: none; }
        }

        .price-col h4 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
        .price-col .amount {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 900;
            background: var(--accent-color);
            display: inline-block;
            padding: 0 15px;
            margin-bottom: 2rem;
            color: #000;
        }

        .marquee {
            white-space: nowrap;
            overflow: hidden;
            background: var(--marquee-bg);
            color: var(--marquee-text);
            padding: clamp(1rem, 3vw, 1.8rem) 0;
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(1.0rem, 5vw, 3.5rem);
            border-top: var(--border-width) solid var(--text-color);
            border-bottom: var(--border-width) solid var(--text-color);
        }

        @media (max-width: 600px) {
    .marquee {
        padding: 0.8rem 0;
        white-space: normal;        /* Allow wrapping */
        text-align: center;         /* Center text */
    }

    .marquee-content {
        display: block;
        line-height: 1.6;
    }

    .marquee-content br {
        display: none;              /* Remove manual line break */
    }
}

        footer { background: #000; color: #fff; padding: 4rem 1.5rem; border-top: var(--border-width) solid var(--text-color); }
        @media (min-width: 768px) { footer { padding: 8rem 3rem; } }

        .reveal-up {
            opacity: 0;
            transform: translateY(30px);
            will-change: transform, opacity;
        }

        /* --- POPUP / MODAL STYLES --- */
        #form-modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            background: rgba(0,0,0,0.85);
            padding: 2rem;
        }

        .modal-content {
            background: var(--bg-color);
            border: 4px solid var(--text-color);
            max-width: 600px;
            width: 100%;
            padding: 3rem;
            position: relative;
            box-shadow: 15px 15px 0 var(--accent-color);
            transform: scale(0.9);
            opacity: 0;
            text-align: center;
        }

        .modal-content.error {
            box-shadow: 15px 15px 0 var(--error-color);
        }

        .modal-title {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .modal-msg {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.8;
            line-height: 1.4;
        }
