* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    /* Warna abu-abu semen */
    background-color: #dcdcdc;
    
    /* Pola titik-titik halus untuk efek tekstur */
    background-image: radial-gradient(#b0b0b0 1px, transparent 1px);
    background-size: 10px 10px;
    
    color: #111111; /* Teks tetap hitam */
    font-family: 'Courier New', Courier, monospace; /* Font gaya mesin ketik */
    margin: 0;
    padding-bottom: 50px;
}

/* Opsional: Biar judul makin garang */
h1, h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 6px;
}

.hero p {
  margin-top: 10px;
  opacity: 0.7;
}

/* ABOUT */
/* --- STYLE KHUSUS ABOUT (INDUSTRIAL THEME) --- */

.about {
    padding: 80px 20px;
    text-align: center; /* Memastikan semua isi rata tengah */
}

/* Container untuk membatasi lebar teks agar tidak melebar ke pinggir layar */
.about-container {
    max-width: 600px; /* Lebar maksimal hanya 600px */
    margin: 0 auto;   /* Posisi otomatis di tengah */
    border: 2px solid #000; /* Opsional: Memberi bingkai kotak agar kesan teknikal */
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.3); /* Sedikit transparan */
}

.about h2 {
    font-family: 'Courier New', Courier, monospace; /* Font mesin ketik */
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000; /* Warna Hitam Pekat */
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid #000; /* Garis bawah judul */
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    animation: glitch-skew 3s infinite linear alternate-reverse;
}
@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(-2deg); }
    20% { transform: skew(2deg); }
    30% { transform: skew(0deg); }
    90% { transform: skew(0deg); } /* Diam lama */
    92% { transform: skew(5deg); } /* Sentakan tiba-tiba */
    94% { transform: skew(-5deg); }
    100% { transform: skew(0deg); }
}
.about p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: #111111; /* Hitam hampir pekat */
    margin-bottom: 30px;
}

.about strong {
    background-color: #000; /* Highlight hitam */
    color: #fff; /* Teks putih */
    padding: 0 4px; /* Sedikit jarak */
}

/* --- TOMBOL COMMISSION --- */
.btn-contact {
    display: inline-block; /* Agar bisa diatur paddingnya */
    padding: 15px 40px;
    background-color: transparent;
    border: 3px solid #000000; /* Garis pinggir tebal hitam */
    color: #000000;
    font-family: sans-serif; /* Font tegas beda dengan teks */
    font-weight: 900; /* Sangat tebal */
    text-decoration: none; /* Hilangkan garis bawah biru link */
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* Efek saat mouse diarahkan ke tombol */
.btn-contact:hover {
    background-color: #000000;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.5); /* Efek bayangan kasar */
}

/* WORKS */
.works {
  padding: 0 20px 100px;
}

.works h2 {
  max-width: 1200px;
  margin: 0 auto 40px;
  font-size: 1.8rem;
}

.grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* DESIGN CARD */
.design-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.design-card img {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* artwork hidden */
.design-card .artwork {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* HOVER EFFECT */
.design-card:hover .mockup {
  opacity: 0;
  transform: scale(1.03);
}

.design-card:hover .artwork {
  opacity: 1;
  transform: scale(1.03);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  opacity: 0.5;
}
.fade-out {
  opacity: 0;
  transform: scale(1.02);
}

.fade-in {
  opacity: 1;
  transform: scale(1);
}

.idle {
  animation: idleZoom 6s ease-in-out infinite;
}

@keyframes idleZoom {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.015); }
  100% { transform: scale(1); }
}
.design img {
  width: 100%;
  display: block;
  transition: 
    opacity 0.4s ease,
    transform 0.6s ease,
    filter 0.6s ease;
  filter: brightness(0.9) contrast(1.05);
}
.design:hover img {
  filter: brightness(1) contrast(1.2);
}


img {
    /* Mencegah gambar bisa di-select/blok biru */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;

    /* Mencegah gambar ditarik (drag) */
    -webkit-user-drag: none;
    
    /* Mencegah menu download muncul saat ditekan lama di HP (iPhone/Android) */
    -webkit-touch-callout: none;
    img {
    /* Mencegah gambar bisa di-select/blok biru */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;

    /* Mencegah gambar ditarik (drag) ke desktop */
    -webkit-user-drag: none;
    
    /* Mencegah menu download muncul saat ditekan lama di HP */
    -webkit-touch-callout: none;
    
    /* HAPUS BARIS INI: pointer-events: none; */
    /* Agar gambar bisa diklik kiri untuk Zoom */
    cursor: crosshair; /* Ganti kursor jadi bidikan saat diarahkan ke gambar */
}
}
/* Pengaturan Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;     /* Posisi tengah horizontal */
    justify-content: center; /* Posisi tengah vertikal */
    min-height: 90vh;        /* Tinggi hampir satu layar penuh */
    padding: 20px;
    text-align: center;
}

/* Pengaturan Ukuran Logo */
.hero-logo {
    width: 100%;        /* Lebar mengikuti layar HP */
    max-width: 700px;   /* Batas maksimal agar tidak terlalu raksasa di Laptop */
    height: auto;       /* Tinggi menyesuaikan otomatis */
    margin-bottom: 1rem; /* Jarak antara logo dan tulisan tagline */
    
    /* Efek bayangan halus agar logo makin pop-up (opsional) */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); 
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 3px; /* Memberi jarak antar huruf agar elegan */
    margin-top: 10px;
    text-transform: uppercase;
}
/* --- FLOATING SOCIAL MEDIA --- */
.floating-social {
    position: fixed; /* KUNCI FITUR FREEZE */
    bottom: 30px;    /* Jarak dari bawah layar */
    right: 30px;     /* Jarak dari kanan layar */
    z-index: 9999;   /* Pastikan selalu di atas elemen lain */
    display: flex;
    flex-direction: column; /* Tombol disusun vertikal (atas-bawah) */
    gap: 15px;       /* Jarak antar tombol */
}

.socmed-btn {
    width: 50px;
    height: 50px;
    background-color: #000000; /* Hitam pekat */
    color: #ffffff; /* Icon putih */
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Ukuran icon */
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Efek bayangan kasar agar terlihat mengambang */
    box-shadow: 4px 4px 0px rgba(0,0,0,0.3); 
}

/* Efek saat disentuh/hover */
.socmed-btn:hover {
    background-color: #ffffff; /* Warna terbalik jadi putih */
    color: #000000;            /* Icon jadi hitam */
    transform: translate(-3px, -3px); /* Sedikit bergerak ke atas */
    box-shadow: 6px 6px 0px rgba(0,0,0,0.5); /* Bayangan makin panjang */
}

/* Khusus Tampilan HP (Agar tidak menutupi konten) */
@media (max-width: 768px) {
    .floating-social {
        bottom: 20px;
        right: 20px;
        flex-direction: row; /* Di HP tombolnya sejajar (kiri-kanan) */
    }
}
/* --- EFEK DARAH (BLOOD TRAIL) --- */
.blood-drop {
    position: absolute;
    background-color: #8a0303; /* Merah darah pekat/gelap */
    width: 8px; /* Ukuran awal */
    height: 8px;
    border-radius: 50%; /* Bulat */
    pointer-events: none; /* Agar tidak menghalangi klik link */
    transform: translate(-50%, -50%);
    animation: blood-drip 1s forwards; /* Animasi 1 detik lalu hilang */
    z-index: 9999; /* Selalu di paling atas */
}

/* Animasi tetesan jatuh ke bawah dan memudar */
@keyframes blood-drip {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px) scale(0.5); /* Jatuh 20px ke bawah */
        opacity: 0;
    }
}

/* --- HALAMAN PROFILE (THE CRIMINAL RECORD) --- */

.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.profile-card {
    display: flex;
    flex-direction: row; /* Kiri Foto, Kanan Teks */
    background-color: #0f0f0f; /* Hitam Pekat */
    border: 4px solid #ffffff; /* Bingkai Putih Tebal */
    max-width: 900px;
    width: 100%;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.5); /* Bayangan kasar */
}

/* Bagian Foto */
.profile-img {
    flex: 1;
    min-width: 300px;
    border-right: 4px solid #ffffff;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%); /* Efek Hitam Putih Kontras Tinggi */
}

/* Bagian Teks Info */
.profile-info {
    flex: 1.5;
    padding: 40px;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace; /* Font mesin ketik */
}

.profile-info h1 {
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.subtitle {
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Grid Statistik (Seperti data game) */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    border: 1px dashed #555;
    padding: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .label {
    font-size: 0.8rem;
    color: #8a0303; /* Merah gelap untuk label */
    font-weight: bold;
}

.stat-item .value {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Cerita Bio */
.bio-text h3 {
    background-color: #ffffff;
    color: #000;
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.bio-text p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}

/* Tombol Back */
.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-family: sans-serif;
    border: 2px solid #000;
    padding: 10px 20px;
    background: transparent;
    transition: 0.3s;
    z-index: 100;
}

.back-btn:hover {
    background: #000;
    color: #fff;
}

/* Responsif untuk HP (Foto jadi di atas) */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
    }
    .profile-img {
        border-right: none;
        border-bottom: 4px solid #ffffff;
        max-height: 300px;
    }
}

/* --- ACTION BUTTONS CONTAINER --- */
.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* INI KUNCINYA: Memberi jarak 20px antar tombol (Kiri-Kanan atau Atas-Bawah) */
    gap: 30px; 
    
    /* Memberi jarak dari teks paragraf di atasnya */
    margin-top: 60px; 
    
    /* Agar responsif: Kalau di HP layar sempit, tombol otomatis turun ke bawah */
    flex-wrap: wrap; 
}

/* --- TOMBOL SECRET (PROFILE) --- */
.btn-secret {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px; /* Samakan tingginya dengan tombol Commission */
    background-color: transparent;
    border: 3px solid #000; /* Border tebal sama seperti tombol sebelah */
    color: #000;
    text-decoration: none;
    padding: 0 18px; /* Padding awal hanya cukup untuk icon */
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    overflow: hidden; /* Sembunyikan teks yang keluar jalur */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efek membal (bouncy) */
    position: relative;
    width: auto;
    display: inline-flex;
}

.btn-secret i {
    font-size: 1.5rem;
    transition: 0.3s;
}

/* Teks Rahasia (Awalnya lebar 0 dan transparan) */
.secret-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap; /* Teks dilarang turun baris */
    margin-left: 0;
    transition: all 0.4s ease;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- EFEK HOVER (SAAT KURSOR MENDEKAT) --- */
.btn-secret:hover {
    background-color: #000; /* Jadi blok hitam */
    padding-right: 25px;    /* Tambah ruang untuk teks */
}

.btn-secret:hover i {
    color: #fff; /* Icon jadi putih */
}

.btn-secret:hover .secret-text {
    max-width: 150px; /* Lebarkan area teks */
    opacity: 1;       /* Munculkan teks */
    margin-left: 10px; /* Beri jarak dari icon */
    color: #fff;      /* Teks jadi putih */
}
/* --- EFEK NOISE / TV STATIC (YANG KETINGGALAN) --- */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Membuat pola bintik-bintik */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
    
    /* Mengatur ketebalan noise */
    opacity: 0.05; 
    pointer-events: none; /* Agar tetap bisa diklik tembus ke belakang */
    z-index: 99999; /* Paling depan */
}

/* --- THE WARNING GATE (LOADING SCREEN) --- */
#warning-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000; /* Hitam total */
    z-index: 999999; /* Pastikan menutupi segalanya */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ff0000; /* Merah Danger */
    font-family: 'Courier New', monospace;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1); /* Efek slide up halus */
}

/* Jika kelas ini ditambahkan, gerbang akan naik ke atas */
#warning-gate.gate-open {
    transform: translateY(-100%);
}

.gate-content {
    text-align: center;
    max-width: 80%;
}

.gate-logo {
    width: 150px;
    margin-bottom: 30px;
    filter: grayscale(100%) contrast(150%);
    animation: pulse-red 2s infinite; /* Logo berdenyut */
}

.gate-warning {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7); /* Efek neon rusak */
    animation: glitch-text 0.3s infinite; /* Teks bergetar */
}

.gate-text {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* Loading Bar Keren */
.loading-bar {
    width: 300px;
    height: 4px;
    background: #333;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.loading-progress {
    width: 100%;
    height: 100%;
    background: #ff0000;
    position: absolute;
    left: -100%; /* Mulai dari kiri luar */
    animation: load-scan 3s linear forwards; /* Animasi loading 3 detik */
}

.gate-status {
    font-size: 0.8rem;
    color: #fff;
    animation: blink 0.5s infinite;
}

/* --- ANIMASI KEYFRAMES --- */
@keyframes pulse-red {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 red); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 15px darkred); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 red); }
}

@keyframes load-scan {
    0% { left: -100%; }
    100% { left: 0%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsif HP */
@media (max-width: 600px) {
    .loading-bar { width: 200px; }
    .gate-warning { font-size: 1rem; letter-spacing: 2px; }
}
/* --- FORENSIC ZOOM (LIGHTBOX) --- */
.modal {
    display: none; /* Sembunyi dulu */
    position: fixed;
    z-index: 99999; /* Di atas segalanya (kecuali loading screen) */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95); /* Hitam pekat 95% */
    backdrop-filter: blur(5px); /* Efek blur background */
}

/* Gambar yang diperbesar */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border: 2px solid #333;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

/* Wrapper agar garis scan bisa menimpa gambar */
.modal-wrapper {
    position: relative;
    width: fit-content;
    margin: auto;
}

/* Efek Garis Scanner Hijau/Merah */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(0, 255, 0, 0.5); /* Warna Hijau Hacker */
    box-shadow: 0 0 10px #00ff00;
    animation: scan-move 2s linear infinite;
    pointer-events: none;
}

.modal-overlay-text {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    background: rgba(0,0,0,0.7);
    padding: 2px 5px;
}

/* Tombol Close (X) */
.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #ff0000;
    text-decoration: none;
    cursor: pointer;
}

/* Caption di bawah gambar */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Animasi Zoom saat muncul */
.modal-content, #caption {  
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

@keyframes scan-move {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Responsif HP */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
/* --- GUESTBOOK / TERMINAL FORM HACKER STYLE --- */

/* Container Utama Terminal (Kotak Hitam Penuh) */
.guestbook-container {
    max-width: 600px;
    margin: 0 auto;
    /* Latar belakang hitam pekat */
    background-color: #000000; 
    padding: 30px;
    /* Border hijau neon khas terminal */
    border: 2px solid #00ff00;
    /* Hilangkan bayangan untuk tampilan terminal yang datar */
    box-shadow: none; 
    font-family: 'Courier New', monospace;
}

/* Judul Utama Terminal */
.guestbook h2 {
    /* Warna hijau neon */
    color: #00ff00; 
    font-size: 1.5rem;
    margin-bottom: 5px;
    /* Garis bawah hijau putus-putus */
    border-bottom: 1px dashed #00ff00;
    padding-bottom: 15px;
    text-transform: uppercase;
}

/* Subtitle Terminal */
.guestbook-subtitle {
    /* Warna hijau neon lebih gelap atau pudar */
    color: #00cc00; 
    font-size: 0.8rem;
    margin-bottom: 30px;
}

/* Tampilan Form Terminal */
.terminal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

/* Gaya Input & Textarea (Di dalam Kotak Hitam) */
.input-group {
    /* Latar belakang hitam untuk area input */
    background: #000; 
    /* Border hijau neon */
    border: 1px solid #00ff00; 
    padding: 10px;
    display: flex;
    align-items: flex-start;
}

/* Prompt Terminal (e.g., > USER:) */
.prefix {
    /* Warna hijau neon menyala */
    color: #00ff00; 
    font-weight: bold;
    margin-right: 10px;
    white-space: nowrap;
}

/* Teks Input & Textarea */
.terminal-form input, 
.terminal-form textarea {
    background: transparent;
    border: none;
    /* Teks yang diketik juga berwarna hijau neon */
    color: #00ff00; 
    width: 100%;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    outline: none;
}

/* Textarea (Tinggi & Resize) */
.terminal-form textarea {
    height: 80px;
    resize: none;
}

/* Placeholder (Teks Bayangan - Ubah agar lebih samar atau hilangkan) */
::placeholder {
    /* Warna hijau sangat pudar untuk placeholder, atau kosongkan */
    color: #005500; 
    opacity: 0.7;
}

/* Tombol Kirim (Gaya Terminal) */
.transmit-btn {
    /* Latar belakang hitam */
    background: #000;
    /* Teks hijau neon */
    color: #00ff00;
    /* Border hijau neon */
    border: 2px solid #00ff00;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 10px;
}

/* Efek Hover Tombol */
.transmit-btn:hover {
    /* Warna latar terbalik jadi hijau */
    background: #00ff00;
    /* Teks jadi hitam */
    color: #000; 
}
/* --- INFINITE MARQUEE (TEKS BERJALAN) --- */
.marquee-container {
    width: 100%;
    overflow: hidden; /* Sembunyikan teks yang lewat batas layar */
    background: #000; /* Latar Hitam */
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    padding: 15px 0;
    margin: 40px 0; /* Jarak atas bawah */
    transform: rotate(-2deg); /* Miringkan sedikit biar rebel! */
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    position: relative;
    z-index: 10;
}

.marquee-wrapper {
    display: flex;
    width: fit-content; /* Lebar menyesuaikan isi */
}

.marquee-text {
    white-space: nowrap; /* Teks jangan turun baris */
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    animation: scroll-left 20s linear infinite; /* Animasi jalan 20 detik */
    padding-right: 50px; /* Jarak antar duplikat */
}

/* Icon di dalam teks */
.marquee-text i {
    color: #ff0000; /* Icon warna merah */
    margin: 0 10px;
    font-size: 1.2rem;
}

/* Animasi Keyframes */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsif HP: Font agak dikecilkan */
@media (max-width: 768px) {
    .marquee-text { font-size: 1rem; }
    .marquee-container { transform: rotate(-1deg); margin: 20px 0; }
}
/* --- CUSTOM INDUSTRIAL SCROLLBAR --- */

/* 1. Lebar Scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Lebar batang */
}

/* 2. Jalur Scrollbar (Track) - Latar Belakang */
::-webkit-scrollbar-track {
    background: #0f0f0f; /* Hitam hampir pekat */
    border-left: 1px solid #333; /* Garis pemisah tipis */
}

/* 3. Pegangan Scrollbar (Thumb) - Bagian yang digerakkan */
::-webkit-scrollbar-thumb {
    background-color: #333; /* Abu-abu gelap (warna besi) */
    border: 2px solid #0f0f0f; /* Memberi jarak/border hitam */
    border-radius: 0; /* Kotak tajam (jangan bulat!) */
}

/* 4. Efek saat Pegangan Disorot Mouse */
::-webkit-scrollbar-thumb:hover {
    background-color: #8a0303; /* Berubah jadi MERAH DARAH saat disentuh */
    cursor: pointer;
}
/* --- DIGITAL DOSSIER (LIVE CV) STYLES --- */

.cv-dossier {
    max-width: 900px;
    margin: 40px auto;
    background-color: #0a0a0a; /* Hitam hampir pekat */
    border: 2px solid #333;
    padding: 2px; /* Untuk efek border ganda */
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    font-family: 'Courier New', monospace;
    color: #ccc;
    position: relative;
}

/* Garis Scanline halus di atas CV */
.cv-dossier::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.dossier-header {
    background: #111;
    padding: 20px;
    border-bottom: 2px solid #00ff00; /* Hijau neon */
    text-align: left;
}

.dossier-header h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.role-tag {
    color: #00ff00;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Grid Layout: Sidebar & Main */
.dossier-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Sidebar 1 bagian, Main 2 bagian */
    gap: 0;
}

.dossier-sidebar {
    background: #0f0f0f;
    padding: 20px;
    border-right: 1px dashed #333;
}

.dossier-main {
    padding: 20px;
}

.dossier-section {
    margin-bottom: 30px;
}

.dossier-section h3 {
    color: #00ff00;
    font-size: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 15px;
    display: inline-block;
}

/* List Kontak */
.dossier-sidebar ul {
    list-style: none;
    padding: 0;
}

.dossier-sidebar ul li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Timeline Pendidikan */
.timeline-item {
    margin-bottom: 15px;
    border-left: 2px solid #333;
    padding-left: 10px;
}

.timeline-item .year {
    font-size: 0.7rem;
    color: #666;
    display: block;
}

.timeline-item strong {
    color: #fff;
    font-size: 0.9rem;
}

/* Skill Bar ala RPG/Game */
.skill-bar {
    margin-bottom: 10px;
}
.skill-bar span {
    font-size: 0.8rem;
    display: block;
    margin-bottom: 3px;
}
.skill-bar .bar {
    height: 6px;
    background: #222;
    width: 100%;
}
.skill-bar .fill {
    height: 100%;
    background: #00ff00;
    box-shadow: 0 0 5px #00ff00; /* Glow */
}

/* Job Cards */
.job-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid #8a0303; /* Aksen Merah Darah untuk Pengalaman */
    transition: 0.3s;
}

.job-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #00ff00; /* Berubah hijau saat hover */
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.job-header h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.job-year {
    font-size: 0.75rem;
    background: #222;
    padding: 2px 5px;
    border-radius: 3px;
}

.company {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.bio-desc {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #ddd;
}

.dossier-footer {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #444;
}

.blink {
    animation: blinker 1s linear infinite;
    color: #00ff00;
    font-size: 0.8rem;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* Responsif HP */
@media (max-width: 768px) {
    .dossier-grid {
        grid-template-columns: 1fr; /* Tumpuk ke bawah di HP */
    }
    .dossier-sidebar {
        border-right: none;
        border-bottom: 1px dashed #333;
    }
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- UPDATE PROFILE STYLE --- */

.profile-container {
    display: flex;
    flex-direction: column; /* Susun ke bawah: Kartu Atas, CV Bawah */
    align-items: center;
    padding: 100px 20px;
}

/* KOREKSI: Kartu Profil jangan terlalu lebar */
.profile-card {
    display: flex;
    flex-direction: row;
    background-color: #0f0f0f;
    border: 4px solid #fff;
    max-width: 900px;
    width: 100%;
    margin-bottom: 50px; /* Jarak dengan CV */
    position: relative;
    z-index: 10;
}

/* EFEK HOLOGRAM PADA FOTO */
.profile-img {
    position: relative;
    overflow: hidden;
}

.holo-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 255, 0, 0) 50%, 
        rgba(0, 255, 0, 0.2) 50%, 
        rgba(0, 255, 0, 0.2) 51%, 
        rgba(0, 255, 0, 0) 51%);
    background-size: 100% 4px;
    animation: holoScan 4s linear infinite;
    pointer-events: none;
    z-index: 5;
}

@keyframes holoScan {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* CSS KHUSUS CV (Agar responsif) */
.cv-dossier {
    width: 100%;
    max-width: 900px; /* Samakan lebarnya dengan kartu atas */
    background-color: #050505;
    border: 1px solid #333;
    /* Efek Glow Hijau Samar */
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.05); 
}

/* Responsif HP */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
    }
    .cv-dossier {
        margin-top: 20px;
    }
}