
        /* ===== CSS VARIABLES ===== */
:root {
            /* New Palette (Aurora) */
            --cyan: #00f0ff;
            --cyan-dim: #00f0ff88;
            --cyan-glow: 0 0 20px #00f0ff44, 0 0 60px #00f0ff22;
            --cyan-glow-strong: 0 0 15px #00f0ffaa, 0 0 40px #00f0ff55, 0 0 80px #00f0ff22;
            --bg-deep: #050a0e;
            --bg-card: #0a1218;
            --bg-card-hover: #0d1a22;
            --border: #00f0ff20;
            --border-active: #00f0ff55;
            --text: #ffffff;
            --text-dim: #ffffff;
            --white: #ffffff;
            --green: #00ff88;
            --amber: #ffc800;
            --red-soft: #ff4466;

            /* Legacy Mapping for Index Content */
            --neon-primary: var(--cyan);
            --neon-secondary: #00d4aa;
            --neon-accent: #00b894;
            --neon-glow: var(--cyan-glow);
            --bg-dark: var(--bg-deep);
            --text-primary: var(--text);
            --text-secondary: var(--text);
            --text-muted: #ffffff;
            --border-color: var(--border);
            --gradient-primary: linear-gradient(135deg, var(--cyan), #00d4e0);
            --gradient-secondary: linear-gradient(135deg, #00d4aa, #00b894);
            --font-main: 'Exo 2', sans-serif;
            --font-heading: 'Rajdhani', sans-serif;
        }

        /* ===== RESET & BASE ===== */
#hp *, #hp *::before, #hp *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
html {
            scroll-behavior: smooth;
        }
body.home {
            font-family: var(--font-main);
            background: var(--bg-deep);
            color: var(--text);
            font-size: 20px;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── AURORA BACKGROUND ─── */
#hp .aurora-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        /* Aurora blob 1 - cyan, top right */
#hp .aurora-bg::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            top: -120px;
            right: -100px;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.09) 0%, rgba(0, 240, 255, 0.03) 40%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: aurora1 12s ease-in-out infinite;
            filter: blur(40px);
        }

        /* Aurora blob 2 - violet, bottom left */
#hp .aurora-bg::after {
            content: '';
            position: absolute;
            width: 550px;
            height: 550px;
            bottom: -150px;
            left: -120px;
            background: radial-gradient(circle, rgba(100, 60, 180, 0.08) 0%, rgba(100, 60, 180, 0.02) 40%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: aurora2 15s ease-in-out infinite;
            filter: blur(45px);
        }

        /* Aurora blob 3 - extra cyan */
#hp .aurora-extra {
            position: absolute;
            width: 400px;
            height: 400px;
            top: 30%;
            left: 40%;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 0;
            animation: aurora3 18s ease-in-out infinite;
            filter: blur(50px);
        }@keyframes aurora1 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.7;
            }

            33% {
                transform: translate(-40px, 30px) scale(1.1);
                opacity: 1;
            }

            66% {
                transform: translate(20px, -15px) scale(0.9);
                opacity: 0.8;
            }
        }@keyframes aurora2 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }

            40% {
                transform: translate(50px, -35px) scale(1.15);
                opacity: 1;
            }

            70% {
                transform: translate(-30px, 20px) scale(0.95);
                opacity: 0.7;
            }
        }@keyframes aurora3 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.5;
            }

            50% {
                transform: translate(-35px, 20px) scale(1.2);
                opacity: 0.9;
            }
        }

        /* Floating text snippets */
#hp .bg-snippets {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
            overflow: hidden;
        }
#hp .snippet {
            position: absolute;
            font-family: 'Share Tech Mono', monospace;
            font-size: 11px;
            font-weight: 400;
            color: rgba(0, 240, 255, 0.06);
            white-space: nowrap;
            animation: floatUp 25s linear infinite;
            user-select: none;
            pointer-events: none;
        }
#hp .snippet:nth-child(1) {
            left: 5%;
            bottom: -20px;
            animation-delay: 0s;
            font-size: 10px;
        }
#hp .snippet:nth-child(2) {
            left: 18%;
            bottom: -20px;
            animation-delay: -3s;
            font-size: 12px;
            color: rgba(100, 60, 180, 0.05);
        }
#hp .snippet:nth-child(3) {
            left: 35%;
            bottom: -20px;
            animation-delay: -7s;
            font-size: 9px;
        }
#hp .snippet:nth-child(4) {
            left: 52%;
            bottom: -20px;
            animation-delay: -11s;
            font-size: 11px;
        }
#hp .snippet:nth-child(5) {
            left: 70%;
            bottom: -20px;
            animation-delay: -4s;
            font-size: 10px;
            color: rgba(100, 60, 180, 0.05);
        }
#hp .snippet:nth-child(6) {
            left: 85%;
            bottom: -20px;
            animation-delay: -14s;
            font-size: 12px;
        }
#hp .snippet:nth-child(7) {
            left: 12%;
            bottom: -20px;
            animation-delay: -9s;
            font-size: 9px;
        }
#hp .snippet:nth-child(8) {
            left: 42%;
            bottom: -20px;
            animation-delay: -16s;
            font-size: 10px;
            color: rgba(100, 60, 180, 0.05);
        }
#hp .snippet:nth-child(9) {
            left: 60%;
            bottom: -20px;
            animation-delay: -2s;
            font-size: 11px;
        }
#hp .snippet:nth-child(10) {
            left: 90%;
            bottom: -20px;
            animation-delay: -12s;
            font-size: 9px;
        }@keyframes floatUp {
            0% {
                transform: translateY(0);
                opacity: 0;
            }

            5% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100vh);
                opacity: 0;
            }
        }
#hp a {
            color: var(--neon-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
#hp a:hover {
            color: var(--neon-secondary);
            text-shadow: var(--neon-glow);
        }
#hp img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ===== TYPOGRAPHY ===== */
#hp h1, #hp h2, #hp h3, #hp h4, #hp h5, #hp h6 {
            font-family: 'Orbitron', var(--font-main);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--white);
        }
#hp h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
        }
#hp h2 {
            font-size: clamp(2rem, 4vw, 3rem);
        }
#hp h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }
#hp .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== LAYOUT ===== */
#hp .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
#hp section {
            padding: 6rem 0;
            position: relative;
        }
#hp section {
            background: var(--bg-deep);
        }
#hp section:nth-child(even) {
            background: var(--bg-card);
        }

        /* Removed .bg-glow */

        /* ===== BUTTONS ===== */
#hp .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            /* Boxier for techno feel */
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
#hp .btn-primary {
            background: var(--gradient-primary);
            color: var(--bg-dark);
            box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
        }
#hp .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 240, 255, 0.5);
            color: var(--bg-dark);
        }
#hp .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-color);
        }
#hp .btn-secondary:hover {
            border-color: var(--neon-primary);
            box-shadow: var(--neon-glow);
        }

        /* ===== CARDS ===== */
#hp .card {
            background: rgba(13, 17, 23, 0.6);
            /* Slightly darker/transparent */
            border: 1px solid var(--border-color);
            border-radius: 8px;
            /* Boxier corners */
            padding: 2.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
#hp .card:hover {
            background: var(--bg-card-hover);
            border-color: var(--neon-primary);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        /* Feature Card Specifics */
#hp .feature-card h3 {
            color: var(--neon-primary);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
#hp .feature-card .card-icon {
            display: none;
            /* Hide icons to match image layout "Text only" */
        }
#hp .feature-card p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
        }
#hp .card-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 12px;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        /* Updated Spider Node styles to match Orbitron/Techno look */
#hp .spider-node {
            background: rgba(10, 10, 15, 0.9);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            /* Boxier */
        }
#hp .spider-node h4 {
            color: var(--neon-primary);
            /* Use neon primary instead of white to match the "green header" vibe */
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        /* ===== HERO SECTION ===== */
#hp .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 4rem;
        }

        /* Removed Hero .bg-glow */
#hp .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
#hp .hero-text h1 {
            margin-bottom: 1.5rem;
        }
#hp .hero-tags {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
#hp .tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 100px;
            font-size: 0.9rem;
            color: var(--neon-primary);
        }
#hp .tag::before {
            content: '→';
        }
#hp .hero-image {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
#hp .hero-image img {
            width: 100%;
            max-width: 450px;
            border-radius: 24px;
            border: 2px solid var(--border-color);
            margin: 0 auto;
        }
#hp .hero-image::before {
            content: '';
            position: absolute;
            inset: -4px;
            background: var(--gradient-primary);
            border-radius: 28px;
            z-index: -1;
            opacity: 0.5;
            filter: blur(20px);
        }
#hp .image-placeholder {
            width: 100%;
            max-width: 450px;
            aspect-ratio: 1;
            background: var(--bg-card);
            border-radius: 24px;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            margin: 0 auto;
        }

        /* ===== PROBLEM SECTION ===== */
#hp .problem-list {
            list-style: none;
            margin: 2rem 0;
        }
#hp .problem-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
        }
#hp .problem-list li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #ef4444;
        }
#hp .problem-list li:last-child {
            border-bottom: none;
        }
#hp .highlight-box {
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid var(--neon-primary);
            border-radius: 16px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }
#hp .highlight-box p {
            font-size: 1.25rem;
            font-weight: 600;
        }

        /* ===== FEATURES GRID ===== */
#hp .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
#hp .feature-card h3 {
            color: var(--neon-primary);
            margin-bottom: 1rem;
        }
#hp .feature-card p {
            color: var(--text-secondary);
        }

        /* ===== CONTENT TYPES ===== */
#hp .content-types-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
#hp .content-type-card {
            text-align: center;
        }
#hp .content-type-card h4 {
            color: var(--neon-primary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
#hp .content-type-card ul {
            list-style: none;
        }
#hp .content-type-card li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ===== QUOTE ===== */
#hp .quote-section {
            text-align: center;
        }
#hp .quote-box {
            max-width: 800px;
            margin: 3rem auto;
            position: relative;
        }
#hp blockquote {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            font-style: italic;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            padding: 2rem;
        }
#hp blockquote::before, #hp blockquote::after {
            content: '"';
            font-size: 4rem;
            position: absolute;
            color: var(--neon-primary);
            opacity: 0.3;
        }
#hp blockquote::before {
            top: -1rem;
            left: 0;
        }
#hp blockquote::after {
            bottom: -2rem;
            right: 0;
        }
#hp .sub-quote {
            margin-top: 2rem;
            font-style: italic;
            color: var(--text-muted);
        }

        /* ===== ABOUT ===== */
#hp .about-content {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 4rem;
            align-items: start;
        }
#hp .about-image img {
            width: 100%;
            border-radius: 20px;
            border: 2px solid var(--border-color);
        }
#hp .about-text h3 {
            margin-top: 2rem;
            margin-bottom: 1.5rem;
        }
#hp .skills-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
#hp .skill-card {
            padding: 1.5rem;
        }
#hp .skill-card h4 {
            color: var(--neon-primary);
            margin-bottom: 0.75rem;
        }
#hp .skill-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ===== TEACHINGS ===== */
#hp .teachings-list {
            max-width: 800px;
            margin: 3rem auto 0;
        }
#hp .teaching-item {
            padding: 2rem;
            border-left: 3px solid var(--neon-primary);
            margin-bottom: 1.5rem;
            background: var(--bg-card);
            border-radius: 0 16px 16px 0;
        }
#hp .teaching-item h3 {
            color: var(--neon-primary);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }
#hp .teaching-item p {
            color: var(--text-secondary);
        }

        /* ===== SERVICES ===== */
#hp .services-list {
            list-style: none;
            margin: 2rem 0;
        }
#hp .services-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
        }
#hp .services-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--neon-primary);
        }
#hp .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
#hp .portfolio-item {
            aspect-ratio: 1;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===== CAMPAIGNS ===== */
#hp .campaigns-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
#hp .campaign-card {
            text-align: center;
        }
#hp .campaign-card .campaign-placeholder {
            aspect-ratio: 16/9;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
        }
#hp .campaign-card h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
#hp .campaign-card .amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--neon-primary);
        }
#hp .total-earnings {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
            border-radius: 16px;
            border: 1px solid var(--neon-primary);
        }
#hp .total-earnings .big-number {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== PRODUCTS ===== */
#hp .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
#hp .product-card {
            text-align: center;
            padding: 2.5rem 2rem;
        }
#hp .product-card h3 {
            margin-bottom: 1rem;
        }
#hp .product-card .btn {
            margin-top: 1.5rem;
        }

        /* ===== COMMUNITY ===== */
#hp .community-section {
            text-align: center;
        }
#hp .community-banner {
            max-width: 600px;
            margin: 2rem auto;
            padding: 3rem;
            background: var(--gradient-primary);
            border-radius: 20px;
        }
#hp .community-banner h3 {
            color: var(--bg-dark);
            margin-bottom: 1rem;
        }
#hp .community-banner .btn {
            background: var(--bg-dark);
            color: var(--text-primary);
        }

        /* ===== APPEARANCES ===== */
#hp .appearances-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
#hp .appearance-card {
            text-align: center;
        }
#hp .appearance-card h4 {
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }
#hp .video-embed {
            aspect-ratio: 16/9;
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
        }
#hp .video-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
#hp .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 2rem;
        }

        /* ===== TESTIMONIALS ===== */
#hp .testimonials-slider {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            padding: 2rem 0;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
#hp .testimonials-slider::-webkit-scrollbar {
            height: 8px;
        }
#hp .testimonials-slider::-webkit-scrollbar-track {
            background: var(--bg-card);
            border-radius: 4px;
        }
#hp .testimonials-slider::-webkit-scrollbar-thumb {
            background: var(--neon-primary);
            border-radius: 4px;
        }
#hp .testimonial-card {
            flex: 0 0 350px;
            scroll-snap-align: start;
            padding: 2rem;
        }
#hp .testimonial-placeholder {
            aspect-ratio: 4/3;
            background: var(--bg-dark);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
        }

        /* ===== CTA ===== */
#hp .cta-section {
            text-align: center;
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
            position: relative;
            overflow: hidden;
        }

        /* Removed CTA .bg-glow */
#hp .cta-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }
#hp .cta-content h2 {
            margin-bottom: 1rem;
        }
#hp .cta-content>p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        /* ===== FORM ===== */
#hp .contact-form {
            text-align: left;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2.5rem;
        }
#hp .form-group {
            margin-bottom: 1.5rem;
        }
#hp .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-secondary);
        }
#hp .form-group input, #hp .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
#hp .form-group input:focus, #hp .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-primary);
            box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
        }
#hp .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
#hp .contact-form .btn {
            width: 100%;
            justify-content: center;
        }
#hp .form-footer {
            text-align: center;
            margin-top: 2rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* ===== FOOTER ===== */
#hp .site-footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            text-align: center;
        }
#hp .site-footer p {
            color: var(--text-muted);
        }
#hp .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
#hp .social-links a {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }
#hp .social-links a:hover {
            border-color: var(--neon-primary);
            box-shadow: var(--neon-glow);
        }

        /* ===== SECTION HEADERS ===== */
#hp .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
#hp .section-header h2 {
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
#hp .techno-underline::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            margin-top: 0.5rem;
            border-radius: 2px;
            box-shadow: 0 0 10px var(--neon-primary);
        }
#hp .section-header p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== ANIMATIONS ===== */@keyframes float {

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

            50% {
                transform: translateY(-20px);
            }
        }@keyframes pulse {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 0.6;
            }
        }

        /* ===== RESPONSIVE ===== */@media (max-width: 1024px) {

#hp .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
#hp .hero-tags {
                justify-content: center;
            }
#hp .hero-image {
                order: -1;
            }
#hp .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
#hp .about-image {
                max-width: 350px;
                margin: 0 auto;
            }
#hp .skills-grid {
                grid-template-columns: 1fr;
            }
#hp .content-types-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        
}@media (max-width: 768px) {

#hp section {
                padding: 4rem 0;
            }
#hp .campaigns-grid, #hp .portfolio-grid {
                grid-template-columns: 1fr;
            }
#hp .appearances-grid {
                grid-template-columns: 1fr;
            }
#hp .content-types-grid {
                grid-template-columns: 1fr;
            }
#hp .testimonial-card {
                flex: 0 0 300px;
            }
        
}

        /* ===== SPIDER WEB SECTION ===== */
#hp .spider-web-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin: 4rem auto;
            height: 600px;
            /* Ensure enough height for the layout */
        }
#hp .spider-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
#hp .spider-line-path {
            stroke: var(--border-color);
            stroke-width: 1;
            fill: none;
        }
#hp .spider-flow-path {
            stroke: var(--neon-primary);
            stroke-width: 2;
            stroke-dasharray: 10, 30;
            stroke-linecap: round;
            fill: none;
            opacity: 0.6;
            filter: drop-shadow(0 0 5px var(--neon-primary));
            animation: flowAnimation 3s linear infinite;
        }
#hp .spider-flow-path.delay-1 {
            animation-delay: 0s;
        }
#hp .spider-flow-path.delay-2 {
            animation-delay: -1s;
        }
#hp .spider-flow-path.delay-3 {
            animation-delay: -2s;
        }@keyframes flowAnimation {
            to {
                stroke-dashoffset: -100;
                /* Moves the dashes */
            }
        }
#hp .spider-node {
            position: absolute;
            width: 260px;
            background: rgba(13, 17, 23, 0.8);
            /* Semi-transparent card bg */
            border: 1px solid var(--neon-primary);
            border-radius: 16px;
            padding: 1.5rem;
            z-index: 10;
            backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }
#hp .spider-node:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.05);
            background: rgba(13, 17, 23, 0.95);
            z-index: 20;
        }

        /* Icons in the spider nodes */
#hp .spider-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 240, 255, 0.1);
            border-radius: 12px;
            color: var(--neon-primary);
            font-size: 1.5rem;
            border: 1px solid rgba(0, 240, 255, 0.2);
            transition: all 0.3s ease;
        }
#hp .spider-node:hover .spider-icon {
            background: var(--neon-primary);
            color: var(--bg-dark);
            box-shadow: 0 0 15px var(--neon-primary);
        }
#hp .spider-node h4 {
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
        }
#hp .spider-node ul {
            list-style: none;
            text-align: center;
        }
#hp .spider-node ul li {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
            transition: color 0.2s;
        }
#hp .spider-node:hover ul li {
            color: var(--text-primary);
        }

        /* Node Positioning */
#hp .node-pos-1 {
            top: 0;
            left: 0;
        }
#hp .node-pos-2 {
            top: 0;
            right: 0;
        }
#hp .node-pos-3 {
            bottom: 0;
            right: 0;
        }
#hp .node-pos-4 {
            bottom: 0;
            left: 0;
        }

        /* Center node if needed, or just 4 corners */

        /* Responsive */@media (max-width: 900px) {

#hp .spider-web-container {
                display: flex;
                flex-direction: column;
                height: auto;
                min-height: auto;
                gap: 2rem;
                padding: 1rem;
                background: none;
            }
#hp .spider-lines {
                display: none;
                /* Hide complex lines on mobile */
            }
#hp .spider-node {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                width: 100%;
                transform: none !important;
            }
        
}

        /* ===== YOUTUBE FACADE ===== */
#hp .yt-facade {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 12px;
        }
#hp .yt-facade img {
            transition: filter 0.3s ease;
        }
#hp .yt-facade:hover img {
            filter: brightness(0.75);
        }
#hp .yt-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 68px;
            height: 48px;
            background: rgba(255, 0, 0, 0.85);
            border-radius: 14px;
            transition: background 0.3s ease;
        }
#hp .yt-play-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 54%;
            transform: translate(-50%, -50%);
            border-style: solid;
            border-width: 10px 0 10px 18px;
            border-color: transparent transparent transparent #fff;
        }
#hp .yt-facade:hover .yt-play-btn {
            background: rgba(255, 0, 0, 1);
        }
    

/* ===== HOMEPAGE BODY OVERRIDES ===== */
body.home {
    background: var(--bg-deep) !important;
    color: var(--text) !important;
    font-family: var(--font-main) !important;
    overflow-x: hidden !important;
}
