• 02 41025734, 02 41025737
  • Lions Bhaban, Begum Rokeya Sarani, Agargaon, Dhaka.
  • Lions Eye Institute & Hospital
    Lions Eye & General Hospital

About BLF


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>hacked by cykomnepal</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0a0c0f;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Courier New', Courier, monospace;
            position: relative;
            overflow-x: hidden;
        }

        /* glitchy background layers */
        .glitch-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(0deg, 
                    rgba(0, 255, 0, 0.03) 0px, 
                    rgba(255, 0, 0, 0.02) 2px, 
                    transparent 4px,
                    transparent 8px),
                radial-gradient(circle at 30% 40%, #1a3300 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, #003300 0%, transparent 40%);
            z-index: -2;
            opacity: 0.9;
        }

        .scan-line {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, 
                transparent 50%, 
                rgba(0, 20, 0, 0.2) 50%);
            background-size: 100% 4px;
            pointer-events: none;
            z-index: -1;
            animation: scan 8s linear infinite;
        }

        @keyframes scan {
            0% { background-position: 0 0; }
            100% { background-position: 0 20px; }
        }

        /* main card – terminal/crt style */
        .terminal {
            background: rgba(10, 20, 5, 0.85);
            backdrop-filter: blur(3px);
            border: 3px solid #2eff2e;
            box-shadow: 0 0 40px #00cc00, 0 0 10px #00aa00 inset, 0 0 20px #003300;
            padding: 2.8rem 3.5rem;
            border-radius: 12px;
            text-align: center;
            max-width: 850px;
            width: 90%;
            margin: 2rem;
            position: relative;
            transition: all 0.2s ease;
            animation: flicker 5s infinite;
            color: #b3ffb3;
        }

        /* glitch pseudo elements */
        .terminal::before,
        .terminal::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: inherit;
            border: 3px solid #ff4444;
            box-shadow: 0 0 30px #ff0000;
            opacity: 0.4;
            mix-blend-mode: multiply;
            pointer-events: none;
            z-index: 1;
        }

        .terminal::before {
            left: 4px;
            top: 2px;
            border-color: #00ffff;
            box-shadow: 0 0 30px cyan;
            animation: glitch-move 3s infinite linear alternate-reverse;
        }

        .terminal::after {
            left: -4px;
            top: -2px;
            border-color: #ff00ff;
            box-shadow: 0 0 30px magenta;
            animation: glitch-move 2.8s infinite linear alternate-reverse;
        }

        @keyframes glitch-move {
            0% { clip-path: inset(20% 0 30% 0); transform: translate(2px, -2px); }
            20% { clip-path: inset(60% 0 10% 0); transform: translate(-3px, 1px); }
            40% { clip-path: inset(10% 0 70% 0); transform: translate(2px, 2px); }
            60% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, -1px); }
            80% { clip-path: inset(80% 0 5% 0); transform: translate(1px, 3px); }
            100% { clip-path: inset(15% 0 55% 0); transform: translate(-1px, -3px); }
        }

        @keyframes flicker {
            0% { opacity: 1; }
            10% { opacity: 0.95; text-shadow: 0 0 5px #0f0; }
            20% { opacity: 1; }
            30% { opacity: 0.98; }
            40% { opacity: 1; }
            50% { opacity: 0.9; text-shadow: -2px 0 red, 2px 0 blue; }
            60% { opacity: 1; }
            70% { opacity: 1; }
            80% { opacity: 0.95; }
            90% { opacity: 1; }
            100% { opacity: 1; }
        }

        /* main hacked text */
        .hacked-title {
            font-size: 5.5rem;
            font-weight: 900;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: #22ff22;
            text-shadow: 
                3px 3px 0 #ff0000,
                -3px -3px 0 #0000ff,
                0 0 20px #00ff00;
            margin-bottom: 0.3rem;
            line-height: 1.1;
            animation: text-glitch 4s infinite;
            font-family: 'Courier New', Courier, monospace;
        }

        @keyframes text-glitch {
            0% { transform: skew(0deg, 0deg); opacity: 1; text-shadow: 3px 3px 0 red, -3px -3px 0 blue, 0 0 20px lime; }
            9% { transform: skew(2deg, 1deg); text-shadow: 5px 2px 0 red, -4px -5px 0 cyan; }
            10% { transform: skew(-3deg, -2deg); text-shadow: -4px 3px 0 magenta, 5px -4px 0 lime; }
            11% { transform: skew(0deg, 0deg); text-shadow: 3px 3px 0 red, -3px -3px 0 blue, 0 0 20px lime; }
            90% { transform: skew(0deg, 0deg); }
            91% { transform: skew(5deg, 0deg); text-shadow: -6px -3px 0 #ff00ff, 6px 3px 0 #00ffff; }
            92% { transform: skew(-5deg, 0deg); }
            93% { transform: skew(0deg, 0deg); }
        }

        .by-line {
            font-size: 2.8rem;
            font-weight: bold;
            color: #aaffaa;
            text-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
            margin-bottom: 1rem;
            letter-spacing: 4px;
            border-bottom: 2px dashed #2eff2e;
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .cykomnepal {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #00ff00, #ffff00, #00ff00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px #0f0, 0 0 40px #0f0;
            margin: 0.5rem 0 0.2rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            filter: drop-shadow(0 0 8px #00cc00);
            animation: colorPulse 3s infinite;
        }

        @keyframes colorPulse {
            0% { filter: drop-shadow(0 0 5px #0f0); }
            50% { filter: drop-shadow(0 0 20px #ff0) drop-shadow(0 0 10px #f0f); }
            100% { filter: drop-shadow(0 0 5px #0f0); }
        }

        .status-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1rem 2rem;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
            border: 1px solid #2eff2e;
            padding: 1rem 2rem;
            background: #0a1a0a;
            border-radius: 50px;
            box-shadow: inset 0 0 15px #001100, 0 0 15px #00aa00;
        }

        .blink {
            animation: blinker 1s step-end infinite;
            color: #ff5e5e;
            font-weight: bold;
            background: #1a0a0a;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            letter-spacing: 2px;
        }

    &nb