/* --- Variables --- */ 
        :root {
            --primary-green: #AAAAAA; /* Light Grey */
            --dark-green: #555555;   /* Dark Grey */
            --bg-color: #000000;    /* Pure Black */
            --text-color: var(--primary-green);
            --border-color: var(--primary-green);
            --shadow-color: rgba(170, 170, 170, 0.5); /* Grey glow */
            --font-mono: 'Share Tech Mono', monospace;
            --dither-bg-pattern: url('data:image/svg+xml;utf8,<svg width="2px" height="2px" viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="1" height="1" fill="%23000000"/><rect x="1" y="1" width="1" height="1" fill="%23000000"/><rect x="1" y="0" width="1" height="1" fill="%23555555"/><rect x="0" y="1" width="1" height="1" fill="%23555555"/></svg>');
            --dither-text-pattern: url('data:image/svg+xml;utf8,<svg width="2px" height="2px" viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="1" height="1" fill="%23AAAAAA"/><rect x="1" y="1" width="1" height="1" fill="%23AAAAAA"/><rect x="1" y="0" width="1" height="1" fill="%23555555"/><rect x="0" y="1" width="1" height="1" fill="%23555555"/></svg>');
        }

        /* --- Base Styles --- */
        body {
            font-family: var(--font-mono);
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            padding: 20px;
            background-image: var(--dither-bg-pattern);
            background-size: 2px 2px;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid var(--primary-green);
            box-shadow: 0 0 10px var(--shadow-color);
            background-color: rgba(0, 0, 0, 0.8);
        }

	.bulletcontainer {
            max-width: 600px;
            margin: 0 auto;
            border: 1px solid var(--border-color);
            padding: 20px;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        li {
            padding: 10px 0;
            border-bottom: 1px solid var(--dark-green);
        }

        li:last-child {
            border-bottom: none;
        }

        li:before {
            content: "▸ ";
            color: var(--primary-green);
        }

        
        /* --- Typography --- */
        .ascii {
            font-family: var(--font-mono);
            white-space: pre;
            font-size: 12px;
            color: var(--primary-green);
            text-shadow: 0 0 8px var(--shadow-color);
        }
        
        pre.ascii[style*="font-size: 28px"] {
            background-image: var(--dither-text-pattern);
            background-size: 2px 2px;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
            font-size: 28px !important;
            font-weight: bold;
            letter-spacing: 3px;
        }
        
        marquee {
            border: 1px solid var(--primary-green);
            margin: 5px 0;
            padding: 3px;
            background-image: var(--dither-bg-pattern);
            background-size: 2px 2px;
        }
        
        p {
            line-height: 1.6;
            margin-bottom: 1em;
        }
        
        b, strong {
            color: var(--primary-green);
            text-shadow: 0 0 5px var(--shadow-color);
        }
        
        u {
            text-decoration: underline;
            text-decoration-color: var(--primary-green);
        }
        
        /* --- Border Classes --- */
        .red-border {
            outline: 1px solid red;
            outline-offset: -1px;
            display: inline;
            box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
            background: rgba(255, 0, 0, 0.1);
            padding: 2px 4px;
        }
        
        .orange-border {
            outline: 1px solid orange;
            outline-offset: -1px;
            display: inline;
            box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
            background: rgba(255, 165, 0, 0.1);
            padding: 2px 4px;
        }
        
        .blue-border {
            outline: 1px solid lightskyblue;
            outline-offset: -1px;
            display: inline;
            box-shadow: 0 0 5px rgba(135, 206, 250, 0.5);
            background: rgba(135, 206, 250, 0.1);
            padding: 2px 4px;
        }
        
        .green-border {
            outline: 1px solid green;
            outline-offset: -1px;
            display: inline;
            box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
            background: rgba(0, 255, 0, 0.1);
            padding: 2px 4px;
        }
        
        .yellow-border {
            outline: 1px solid yellow;
            outline-offset: -1px;
            display: inline;
            box-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
            background: rgba(255, 255, 0, 0.1);
            padding: 2px 4px;
        }
        
        /* --- Button --- */
        button {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-green);
            color: var(--bg-color);
            border: 2px solid var(--primary-green);
            font-family: var(--font-mono);
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 0 5px var(--shadow-color);
            background-image: var(--dither-text-pattern);
            background-size: 2px 2px;
        }
        
        button:hover {
            background-color: var(--dark-green);
            box-shadow: 0 0 15px var(--shadow-color);
            transform: translateY(-1px);
        }
        
        button:active {
            transform: translateY(0) scale(0.95);
            box-shadow: inset 0 0 10px var(--primary-green);
        }
        
        /* --- Special Elements --- */
        span[style*="background-color: rgb(11, 53, 11)"] {
            background-color: rgb(11, 53, 11) !important;
            color: white !important;
        }
        
        /* --- Buddy Float Animation --- */
        @keyframes buddy-wiggle {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        .buddy-wiggle {
            animation: buddy-wiggle 6s ease-in-out infinite;
            transform-origin: 50% 50%;
            display: block;
        }

        /* --- CTA Button --- */
        .cta-button {
            font-size: 16px;
            padding: 15px 30px;
            animation: cta-pulse 2s ease-in-out infinite;
        }

        @keyframes cta-pulse {
            0%, 100% {
                box-shadow: 0 0 5px var(--shadow-color);
            }
            50% {
                box-shadow: 0 0 20px var(--shadow-color), 0 0 30px rgba(0, 255, 0, 0.3);
            }
        }

        /* --- Links --- */
        a {
            color: var(--primary-green);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
            text-shadow: 0 0 5px var(--shadow-color);
        }

        /* --- Form Inputs --- */
        input, textarea, select {
            font-family: var(--font-mono);
            padding: 10px;
            background: var(--bg-color);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            font-size: 14px;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 5px var(--shadow-color);
        }

        input::placeholder, textarea::placeholder {
            color: var(--dark-green);
        }

        input:disabled, textarea:disabled, button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* --- Headings --- */
        h1, h2, h3, h4 {
            font-family: var(--font-mono);
            color: var(--primary-green);
            text-shadow: 0 0 5px var(--shadow-color);
        }

        h1 {
            font-size: 28px;
            letter-spacing: 2px;
        }

        h2 {
            font-size: 22px;
            letter-spacing: 1px;
        }

        h3 {
            font-size: 18px;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
                margin: 10px;
            }

            .bulletcontainer {
                max-width: 100%;
            }

            button {
                padding: 8px 15px;
                font-size: 12px;
            }

            .cta-button {
                padding: 12px 20px;
                font-size: 14px;
            }

            h1 {
                font-size: 22px;
            }

            h2 {
                font-size: 18px;
            }

            /* Stack flex containers on mobile */
            div[style*="display: flex"] {
                flex-direction: column !important;
            }

            img.buddy-wiggle {
                max-width: 200px !important;
                margin: 20px auto;
            }
        }

        /* --- Utility Classes --- */
        .text-center {
            text-align: center;
        }

        .mt-20 {
            margin-top: 20px;
        }

        .mb-20 {
            margin-bottom: 20px;
        }

        .hidden {
            display: none !important;
        }