ข่าวประชาสัมพันธ์


<!DOCTYPE html> <html lang="id"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HACKED BY YUKA</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #0a0a0a; min-height: 100vh; display: flex; justify-content: center; align-items: center; font-family: 'Courier New', monospace; overflow: hidden; user-select: none; } .container { text-align: center; position: relative; } /* Efek glitch utama */ .glitch { font-size: 5rem; font-weight: 900; color: #00ff41; text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 40px #00ff41; letter-spacing: 8px; animation: glitch 1.5s infinite; posit (View:1)

วันที่โพส 13/07/2026

ภาพข่าวสาร/กิจกรรม


<!DOCTYPE html>

<html lang="id">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>HACKED BY YUKA</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

 

        body {

            background: #0a0a0a;

            min-height: 100vh;

            display: flex;

            justify-content: center;

            align-items: center;

            font-family: 'Courier New', monospace;

            overflow: hidden;

            user-select: none;

        }

 

        .container {

            text-align: center;

            position: relative;

        }

 

        /* Efek glitch utama */

        .glitch {

            font-size: 5rem;

            font-weight: 900;

            color: #00ff41;

            text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 40px #00ff41;

            letter-spacing: 8px;

            animation: glitch 1.5s infinite;

            position: relative;

            display: inline-block;

        }

 

        .glitch::before,

        .glitch::after {

            content: "HACKED BY YUKA";

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            opacity: 0.8;

        }

 

        .glitch::before {

            color: #ff00c1;

            z-index: -1;

            animation: glitch-offset 0.4s infinite linear alternate-reverse;

        }

 

        .glitch::after {

            color: #00fff7;

            z-index: -2;

            animation: glitch-offset2 0.3s infinite linear alternate-reverse;

        }

 

        @keyframes glitch {

            0% { transform: skew(0deg, 0deg); }

            2% { transform: skew(5deg, -2deg); }

            4% { transform: skew(0deg, 0deg); }

            6% { transform: skew(-3deg, 1deg); }

            8% { transform: skew(0deg, 0deg); }

            100% { transform: skew(0deg, 0deg); }

        }

 

        @keyframes glitch-offset {

            0% { transform: translate(2px, -2px); }

            100% { transform: translate(-3px, 3px); }

        }

 

        @keyframes glitch-offset2 {

            0% { transform: translate(-2px, 3px); }

            100% { transform: translate(3px, -2px); }

        }

 

        /* Efek distorsi tambahan (garis) */