        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
            height: 100%;
        }

        body {
            font-family: 'Share Tech Mono', monospace;
            background-color: #000;
            color: #0f0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-y: auto;
            position: relative;
            padding: 20px;
        }

        .container {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 40px 30px;
            width: 100%;
            max-width: 800px;
            border: 3px solid #0f0;
            border-radius: 12px;
            background-color: rgba(0, 0, 0, 0.8);
            box-shadow: 0 0 20px #0f0;
            margin: 20px;
        }

        h1 {
            font-size: 8rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 10px #0f0;
            animation: flicker 2s infinite alternate;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            animation: flicker 3s infinite alternate-reverse;
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            max-width: 100%;
            padding: 5px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 15px;
            background: transparent;
            color: #0f0;
            text-decoration: none;
            border: 1px solid #0f0;
            font-weight: normal;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 20px 0 10px;
        }

        .btn:hover {
            background: #0f0;
            color: #000;
            box-shadow: 0 0 20px #0f0;
            text-shadow: none;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(0, 255, 0, 0.4),
                transparent
            );
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .terminal-line {
            border-top: 1px solid #0f0;
            margin: 20px auto;
            width: 80%;
            opacity: 0.5;
        }

        @keyframes flicker {
            0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
                text-shadow: 0 0 10px #0f0;
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }

        /* Tablet and Small Laptop */
        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
                border-width: 2px;
                margin-top: 120px; /* Added top margin */
            }
            
            h1 {
                font-size: 4rem;
                margin-bottom: 0.5rem;
            }
            
            h2 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
            
            p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.8rem;
                margin: 15px 0 8px;
            }
            
            .terminal-line {
                margin: 15px auto;
                width: 90%;
            }
        }

        /* Mobile Phones */
        @media (max-width: 480px) {
            body {
                padding: 15px;
                align-items: flex-start; /* Changed from center to flex-start */
                padding-top: 30px; /* Added top padding */
            }
            
            .container {
                padding: 25px 15px;
                margin-top: 120px; /* Added top margin */
            }
            
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 1.1rem;
            }
        }

        /* Mobile Landscape */
        @media (max-height: 500px) and (orientation: landscape) {
            body {
                padding: 5px;
                align-items: flex-start;
                padding-top: 10px;
            }
            
            .container {
                padding: 15px 10px;
                margin-top: 10px;
                max-width: 90%;
                transform: scale(0.9);
                transform-origin: top center;
            }
            
            h1 {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }
            
            h2 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }
            
            p {
                font-size: 0.8rem;
                margin-bottom: 0.8rem;
                line-height: 1.4;
            }
            
            .btn {
                padding: 8px 15px;
                font-size: 0.7rem;
                margin: 10px 0 5px;
            }
            
            .terminal-line {
                margin: 10px auto;
                width: 85%;
            }
        }

        /* Very Small Screens */
        @media (max-width: 350px) {
            body {
                padding-top: 20px; /* Added top padding */
            }
            
            .container {
                padding: 20px 10px;
                margin-top: 15px; /* Added top margin */
            }
            
            h1 {
                font-size: 2.5rem;
            }
        }