:root {
            --primary-color: #F50087; 
            --accent-color: #FFB800;
            --background-color: #000000;
            --text-color-main: #F50087;
            --text-color-dim: #aaa;
            --success-color: #00ff00; 
        }

       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--background-color);
            font-family: 'VT323', monospace;
            color: var(--text-color-main);
            overflow: hidden; 
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
        }
        
        
        .crt-effect::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px);
            animation: scanline-anim 15s linear infinite;
            pointer-events: none;
            z-index: 9999;
        }

        @keyframes scanline-anim {
            from { background-position: 0 0; }
            to { background-position: 0 -100vh; }
        }

        .crt-effect::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: inset 0 0 100px 25px rgba(0,0,0,0.85);
            pointer-events: none;
            z-index: 9998;
        }

        
        .container {
            padding: 2rem;
            max-width: 800px;
        }

        .pixel-art-human {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem auto;
            position: relative;
            animation: icon-flicker 4s linear infinite;
        }
        
        .pixel-art-human svg {
            width: 100%;
            height: 100%;
            image-rendering: pixelated; 
        }

        .main-title {
            font-size: 3rem;
            text-transform: uppercase;
            text-shadow: 0 0 10px var(--primary-color);
            margin-bottom: 1rem;
            animation: glitch 1.5s linear infinite;
        }

        .subtitle {
            font-size: 1.5rem;
            color: var(--text-color-dim);
            margin-bottom: 2.5rem;
            min-height: 54px; 
        }

        .reboot-button {
            display: inline-block;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
            background-color: rgba(255, 184, 0, 0.1);
            padding: 0.75rem 1.5rem;
            font-family: inherit;
            font-size: 1.5rem;
            text-decoration: none;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-bottom: 2rem;
            text-shadow: 0 0 8px var(--accent-color);
        }

        .reboot-button:hover {
            background-color: var(--accent-color);
            color: #000000;
            box-shadow: 0 0 20px var(--accent-color);
        }
        
        .reboot-button:disabled {
            cursor: not-allowed;
            opacity: 0.5;
            border-color: var(--text-color-dim);
            color: var(--text-color-dim);
            background-color: rgba(170, 170, 170, 0.1);
            text-shadow: none;
        }
        
        .reboot-sequence {
            text-align: left;
            font-size: 1.25rem;
            color: var(--success-color);
            text-shadow: 0 0 5px var(--success-color);
            height: 150px; 
        }
        
        .reboot-sequence p {
            margin: 0.5rem 0;
            white-space: nowrap;
            overflow: hidden;
            width: 0;
        }
        
        .typing-animation {
            animation: typing 2s steps(40, end) forwards, blink-caret .75s step-end infinite;
        }

        
        .social-links { 
            margin-top: 2rem;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .social-links.visible {
            opacity: 1;
        }

        .social-links a { 
            color: var(--text-color-dim); 
            margin: 0 1rem; 
            display: inline-block; 
            transition: all 0.3s ease; 
        }
        .social-links a:hover { 
            color: var(--text-color-main); 
            transform: scale(1.2); 
            text-shadow: 0 0 5px var(--primary-color);
        }
        .social-links svg { 
            width: 40px; 
            height: 40px; 
        }

        
        @keyframes glitch {
          2%,64% { transform: translate(2px,0) skew(0deg); }
          4%,60% { transform: translate(-2px,0) skew(0deg); }
          62% { transform: translate(0,0) skew(5deg); }
        }

        @keyframes icon-flicker {
          0%, 100% { opacity: 1; }
          50% { opacity: 0.7; }
          52% { opacity: 1; }
          54% { opacity: 0.5; }
          56% { opacity: 1; }
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--success-color); }
        }
        
        
        @media screen and (max-width: 768px) {
            .main-title { font-size: 2.2rem; }
            .subtitle { font-size: 1.2rem; min-height: 44px; }
            .reboot-button { font-size: 1.2rem; }
            .pixel-art-human { width: 100px; height: 100px; }
            .reboot-sequence { font-size: 1rem; height: 120px; }
        }
