
        /* =========================================
           CSS VARIABLES & THEME SETUP
           ========================================= */
        :root {
            /* Default Dark Theme (Tech/Advanced) */
            --bg-color: #050505;
            --bg-secondary: #0f0f0f;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --primary-color: #00f2ff; /* Neon Cyan */
            --secondary-color: #7000ff; /* Neon Purple */
            --accent-color: #ff0055;
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.1);
            --glass-blur: 10px;
            --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.15);
            --transition: all 0.3s ease;
            --nav-height: 80px;
            --nav-scrolled-height: 70px;
            --ribbon-height: 40px;
        }

        /* Light Theme Override */
        body.light-mode {
            --bg-color: #f4f7f6;
            --bg-secondary: #ffffff;
            --text-primary: #1a1a1a;
            --text-secondary: #555555;
            --primary-color: #0066cc; /* Corporate Blue */
            --secondary-color: #004499;
            --accent-color: #ff6600;
            --card-bg: #ffffff;
            --card-border: #e0e0e0;
            --shadow-glow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        /* =========================================
           RESET & BASE STYLES
           ========================================= */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; scroll-padding-top: 120px; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-primary);
            transition: background-color 0.5s ease, color 0.5s ease;
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* =========================================
           UTILITIES & LAYOUT
           ========================================= */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 100px 0; }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 242, 255, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: #fff;
        }

        /* Canvas Background */
        #tech-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: -1;
            opacity: 0.8;
            pointer-events: none;
        }

        /* =========================================
           TOP RIBBON (FIXED HORIZONTAL SCROLLING)
           ========================================= */
        .top-ribbon {
            height: var(--ribbon-height);
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid var(--card-border);
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1002;
            transition: transform 0.4s ease, background 0.4s ease;
        }

        body.light-mode .top-ribbon {
            background: var(--primary-color);
            color: white;
        }

        body.scrolled .top-ribbon { transform: translateY(-100%); }

        .ribbon-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            position: relative;
        }

        /* --- 1. Shake Animation --- */
        @keyframes shakeBell {
            0% { transform: rotate(0deg); }
            10% { transform: rotate(15deg); }
            20% { transform: rotate(-15deg); }
            30% { transform: rotate(10deg); }
            40% { transform: rotate(-10deg); }
            50% { transform: rotate(5deg); }
            60% { transform: rotate(-5deg); }
            70% { transform: rotate(0deg); }
            100% { transform: rotate(0deg); }
        }

        /* --- 2. Horizontal Marquee Styling --- */
        .marquee-container {
            flex-grow: 1;
            overflow: hidden;
            white-space: nowrap;
            margin-right: 20px;
            /* Optional: Gradient Mask for smooth edges */
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            position: relative;
        }

        .marquee-text {
            display: inline-block;
            padding-left: 100%; /* Start off-screen right */
            color: var(--primary-color);
            font-weight: 500;
            animation: scrollLeft 20s linear infinite;
        }
        
        body.light-mode .marquee-text { color: #fff; }

        /* Keyframes for horizontal scrolling (Right to Left) */
        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* Apply Shake only to the Bell Icon */
        .fa-bell {
            animation: shakeBell 2.5s infinite ease-in-out;
            display: inline-block;
            margin-right: 8px;
        }

        .ribbon-contact { 
            display: flex; 
            gap: 20px; 
            color: var(--text-secondary); 
            flex-shrink: 0; 
            white-space: nowrap;
        }
        body.light-mode .ribbon-contact { color: rgba(255,255,255,0.9); }
        .ribbon-contact span { display: flex; align-items: center; gap: 5px; }

        /* =========================================
           WHATSAPP FLOATING BUTTON
           ========================================= */
        .whatsapp-float {
            position: fixed;
            width: 60px; height: 60px;
            bottom: 40px; right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #20b857;
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
        }

        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        .whatsapp-float { animation: pulse-green 2s infinite; }

        /* =========================================
           HEADER & NAV
           ========================================= */
        header {
            height: var(--nav-height);
            display: flex;
            align-items: center;
            position: fixed;
            top: var(--ribbon-height);
            width: 100%;
            z-index: 1001;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.4s ease;
        }

        body.light-mode header {
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        body.scrolled header {
            top: 0;
            height: var(--nav-scrolled-height);
            background: var(--bg-secondary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Space Grotesk', sans-serif;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            transition: font-size 0.4s ease;
        }

        body.scrolled .logo { font-size: 1.3rem; }
        .logo i { color: var(--primary-color); font-size: 1.8rem; }

        .nav-links { display: flex; gap: 30px; }
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            color: var(--text-secondary);
            transition: var(--transition);
        }
        .nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0; height: 2px;
            bottom: -5px; left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        .nav-actions { display: flex; align-items: center; gap: 15px; }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px; height: 40px;
            border-radius: 50%;
        }
        .theme-toggle:hover {
            transform: rotate(30deg);
            color: var(--primary-color);
            background: rgba(255,255,255,0.05);
        }

        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-primary);
            background: none;
            border: none;
        }

        /* =========================================
           HERO SECTION
           ========================================= */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding-top: 100px;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .hero-btns { display: flex; gap: 20px; justify-content: center; }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: var(--text-secondary);
            cursor: pointer;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-10px) translateX(-50%);}
            60% {transform: translateY(-5px) translateX(-50%);}
        }

        /* =========================================
           TECH STACK SECTION
           ========================================= */
        .tech-strip {
            background: var(--bg-secondary);
            padding: 60px 0;
            border-bottom: 1px solid var(--card-border);
            position: relative;
            z-index: 2;
        }

        .tech-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 30px;
        }

        .tech-column-text h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .highlight-bar {
            width: 50px;
            height: 4px;
            background: var(--primary-color);
            margin: 0 auto 15px;
            border-radius: 2px;
        }

        .tech-column-icons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .tech-icon-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .tech-icon-box i {
            font-size: 2.5rem;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .tech-icon-box:hover {
            transform: translateY(-5px);
        }

        .tech-icon-box:hover i {
            color: var(--secondary-color);
            text-shadow: 0 0 15px var(--secondary-color);
        }

        /* =========================================
           SERVICES SECTION
           ========================================= */
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
        .section-header .line {
            width: 60px; height: 4px;
            background: var(--primary-color);
            margin: 0 auto;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--bg-secondary);
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.3s;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: conic-gradient(transparent, transparent, transparent, var(--primary-color));
            animation: rotate 4s linear infinite;
            z-index: -2;
        }

        .service-card::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: var(--bg-secondary);
            border-radius: 20px;
            z-index: -1;
        }

        body.light-mode .service-card::after { background: #ffffff; }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .service-content { position: relative; z-index: 2; }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            display: inline-block;
        }
        .service-card h3 { margin-bottom: 15px; font-size: 1.4rem; }
        .service-card p { color: var(--text-secondary); font-size: 0.95rem; }

        /* =========================================
           TECH GRID
           ========================================= */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .tech-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            padding: 30px 20px;
            border-radius: 15px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-color);
            box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
        }

        .tech-card i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .tech-card:hover i { color: var(--secondary-color); }
        .tech-card span { font-weight: 600; color: var(--text-primary); }

        /* =========================================
           ABOUT & STATS
           ========================================= */
        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            display: block;
            border-radius: 20px;
            filter: grayscale(100%);
            transition: var(--transition);
        }

        .about-image:hover img {
            filter: grayscale(0%);
            transform: scale(1.03);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-box {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            padding: 25px 15px;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
            animation: float 6s ease-in-out infinite;
        }

        .stat-box:nth-child(1) { animation-delay: 0s; }
        .stat-box:nth-child(2) { animation-delay: 1.5s; }
        .stat-box:nth-child(3) { animation-delay: 3s; }
        .stat-box:nth-child(4) { animation-delay: 4.5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .stat-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: block;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 5px;
            display: block;
        }

        /* =========================================
           CLIENTS SECTION
           ========================================= */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            transition: var(--transition);
            filter: grayscale(100%);
            opacity: 0.6;
        }

        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            background: var(--bg-secondary);
            border-color: var(--accent-color);
        }

        .client-logo i {
            font-size: 3rem;
            color: var(--text-primary);
        }

        /* =========================================
           CONTACT SECTION
           ========================================= */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
        }

        .contact-info-card {
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur));
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .contact-info-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--primary-color);
            font-family: 'Space Grotesk', sans-serif;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            transition: var(--transition);
        }

        .info-item:hover { transform: translateX(5px); }

        .info-icon {
            width: 50px; height: 50px;
            background: rgba(0, 242, 255, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-content h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-primary); }
        .info-content p { font-size: 0.95rem; color: var(--text-secondary); }

        .social-row { display: flex; gap: 15px; margin-top: 20px; }

        .social-btn {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            border: 1px solid var(--card-border);
            transition: var(--transition);
        }

        .social-btn:hover {
            background: var(--primary-color);
            color: #fff;
            transform: scale(1.1);
        }

        .contact-form-card {
            background: var(--bg-secondary);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-glow);
        }

        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group.full-width { grid-column: span 2; }

        .form-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .form-control, .form-select {
            width: 100%;
            padding: 14px 16px;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid var(--card-border);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: 0.3s;
        }

        .form-control:focus, .form-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.2);
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a0a0a0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
        }

        .form-select option { background: var(--bg-secondary); color: var(--text-primary); }
        .form-hint { font-size: 0.8rem; color: var(--text-secondary); opacity: 0.7; margin-top: -4px; }

        /* =========================================
           CTA SECTION
           ========================================= */
        .cta-section {
            background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(112, 0, 255, 0.1));
            border-radius: 30px;
            text-align: center;
            padding: 80px 40px;
            border: 1px solid var(--card-border);
            position: relative;
            overflow: hidden;
        }

        .cta-content { position: relative; z-index: 2; }

        .cta-bg-text {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 8rem;
            font-weight: 900;
            color: rgba(255,255,255,0.02);
            white-space: nowrap;
            font-family: 'Space Grotesk', sans-serif;
            z-index: 1;
            user-select: none;
        }

        /* =========================================
           FOOTER
           ========================================= */
        footer {
            background: var(--bg-secondary);
            padding: 80px 0 30px;
            border-top: 1px solid var(--card-border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-info p {
            color: var(--text-secondary);
            margin-top: 20px;
            max-width: 300px;
        }

        .footer-links h4 { margin-bottom: 20px; }
        .footer-links ul li { margin-bottom: 12px; }
        .footer-links a {
            color: var(--text-secondary);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--card-border);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* =========================================
           RESPONSIVE DESIGN
           ========================================= */
        @media (max-width: 991px) {
            .hero-content h1 { font-size: 3rem; }
            .about-wrapper { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            
            /* Hide contact info on top bar for medium screens to fit text */
            .ribbon-contact { display: none; }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: calc(var(--nav-height) + var(--ribbon-height));
                left: 0;
                width: 100%;
                background: var(--bg-secondary);
                flex-direction: column;
                padding: 40px;
                transform: translateY(-150%);
                transition: transform 0.3s ease, top 0.3s ease;
                border-bottom: 1px solid var(--card-border);
            }
            body.scrolled .nav-links { top: var(--nav-scrolled-height); }
            .nav-links.active { transform: translateY(0); }
            .hamburger { display: block; }
            
            .hero-content h1 { font-size: 2.5rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .hero-btns { flex-direction: column; }
            
            .logo { font-size: 1.1rem; }
            .logo i { font-size: 1.4rem; }
            
            .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full-width { grid-column: span 1; }
            
            .top-ribbon { display: none; } /* Hide on mobile to save space */
            html { scroll-padding-top: 100px; }
        }

        /* Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-up.visible { opacity: 1; transform: translateY(0); }
        
        /* Toast Notification */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 2000;
        }

        .toast {
            background: var(--bg-secondary);
            border-left: 4px solid var(--primary-color);
            padding: 15px 25px;
            margin-bottom: 10px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 15px;
            transform: translateX(120%);
            transition: transform 0.3s ease-out;
            min-width: 300px;
        }

        .toast.show { transform: translateX(0); }
        .toast i { color: var(--primary-color); font-size: 1.2rem; }
        .toast-content h4 { font-size: 1rem; margin-bottom: 2px; }
        .toast-content p { font-size: 0.85rem; color: var(--text-secondary); }

        /* =========================================
           FAIRY SYSTEM STYLES
           ========================================= */
        .fairy {
            position: fixed;
            top: 0; left: 0;
            width: 24px; height: 24px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: screen;
            transition: width 0.3s, height 0.3s, opacity 0.5s ease;
        }

        .fairy::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 180%; height: 180%;
            border-radius: 50%;
            filter: blur(10px);
        }

        #fairy-blue { background-color: #00f2ff; box-shadow: 0 0 20px 4px rgba(0, 242, 255, 0.6); }
        #fairy-blue::after { background-color: #00f2ff; }

        #fairy-red { background-color: #ff0055; box-shadow: 0 0 20px 4px rgba(255, 0, 85, 0.6); }
        #fairy-red::after { background-color: #ff0055; }

        #fairy-purple { background-color: #7000ff; box-shadow: 0 0 20px 4px rgba(112, 0, 255, 0.6); }
        #fairy-purple::after { background-color: #7000ff; }

        #fairy-green { background-color: #00ff66; box-shadow: 0 0 20px 4px rgba(0, 255, 102, 0.6); }
        #fairy-green::after { background-color: #00ff66; }

        #fairy-pink { background-color: #ff00aa; box-shadow: 0 0 20px 4px rgba(255, 0, 170, 0.6); }
        #fairy-pink::after { background-color: #ff00aa; }

        #fairy-yellow { background-color: #ffcc00; box-shadow: 0 0 20px 4px rgba(255, 204, 0, 0.6); }
        #fairy-yellow::after { background-color: #ffcc00; }

        .fairy.active { width: 30px; height: 30px; }
        body.light-mode .fairy { opacity: 0; }
   