/* =========================================
   --- CONFIG & VARIABLES --- 
========================================= */
:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-color: #Eaeaea;
    --accent-color: #C2410C; /* Bonyos Rust */
    --border-color: #333333;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* =========================================
   SPLASH SCREEN (BLUEPRINT SCANNER)
========================================= */
#splash-screen {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    z-index: 9999;
    pointer-events: auto; /* Mengunci layar agar tidak bisa diklik/scroll saat loading */
}

/* Latar belakang hitam dengan garis kotak-kotak (Wireframe) */
.blueprint-wipe {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: #050505;
    background-image:
        linear-gradient(rgba(217, 78, 24, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 78, 24, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    
    /* Animasi memotong layar dari atas ke bawah */
    animation: wipeDown 1.8s ease-in-out forwards;
}

/* Garis Laser Oranye Neon */
.scanner-laser {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 3px;
    background-color: #d94e18;
    box-shadow: 0 0 15px #d94e18, 0 0 30px #d94e18, 0 0 45px #fff;
    
    /* Durasi turunnya laser disamakan persis dengan durasi potong layar */
    animation: scanLaser 1.8s ease-in-out forwards;
}

/* Menyapu layar dari utuh menjadi terpotong penuh ke bawah */
@keyframes wipeDown {
    0% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(100% 0 0 0); }
}

/* Pergerakan laser dari atas 0% ke bawah 100% */
@keyframes scanLaser {
    0% { top: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Class penutup total */
.splash-hidden {
    display: none !important;
}

/* =========================================
   --- RESET & GLOBAL STYLES --- 
========================================= */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
    cursor: none;
}

a { 
    text-decoration: none; 
    color: inherit; 
    cursor: none; 
}

ul { 
    list-style: none; 
}

/* =========================================
   --- CUSTOM CURSOR --- 
========================================= */
.cursor-dot, .cursor-outline {
    position: fixed; 
    top: 0; 
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot { 
    width: 8px; 
    height: 8px; 
    background-color: var(--accent-color); 
}

.cursor-outline {
    width: 40px; 
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body.hovering .cursor-outline {
    width: 70px; 
    height: 70px;
    background-color: rgba(255,255,255,0.05);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

/* =========================================
   --- HERO SECTION (RETRO BRUTALISM) --- 
========================================= */
.hero {
    height: 100vh; 
    width: 100%;
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative; 
    overflow: hidden;
    background-color: #030303;
    border-bottom: 2px dashed #444;
}

/* System Top Bar */
.hero-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 2rem;
    background: rgba(10, 10, 10, 0.85);
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 0.75rem;
    color: #777;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.hero-top-bar .sys-title {
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* Background Image dengan Filter Sepia/Monokrom Retro */
.hero-bg {
    position: absolute; 
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2670&auto=format&fit=crop');
    background-size: cover; 
    background-position: center;
    opacity: 0.2; 
    filter: sepia(30%) contrast(130%) grayscale(70%);
}

/* Overlay Garis Scanline Layar CRT */
.hero-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
}

/* Grid Crosshair Background Overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

/* Content Area */
.hero-content { 
    z-index: 3; 
    text-align: center; 
    padding: 0 1rem; 
    margin-top: 2rem;
}

/* Kotak Subtitle Diperkecil */
.subtitle {
    font-family: monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase; 
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    display: inline-block; 
    font-weight: 600;
    background: rgba(10, 10, 10, 0.8);
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--accent-color);
    box-shadow: 2px 2px 0px #000;
}

.prompt-symbol {
    color: #fff;
    animation: blink 1s step-end infinite;
}

.title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 11vw, 9.5rem);
    line-height: 0.85; 
    font-weight: 400;
    text-shadow: 4px 4px 0px #000;
}

.title span { 
    display: block; 
}

.title .outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7); 
    color: transparent;
}

/* Kotak Footer Diperkecil & Dirapatkan */
.hero-footer {
    margin-top: 1.5rem;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 0.8rem;
}

/* Retro Tags */
.retro-tag-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.retro-tag {
    font-family: monospace;
    font-size: 0.55rem;
    color: #888;
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 0.2rem 0.4rem;
    letter-spacing: 0.05em;
}

.retro-tag.highlight {
    color: #fff;
    border-color: #555;
}

/* Retro Scroll Indicator */
.scroll-indicator.retro-scroll {
    font-family: monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    background: #000;
    border: 1px solid var(--accent-color);
    padding: 0.25rem 0.6rem;
    box-shadow: 2px 2px 0px var(--accent-color); 
    animation: bounceRetro 2s infinite;
}

@keyframes bounceRetro {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
    60% { transform: translateY(-2px); }
}

@media (max-width: 768px) {
    .hero-top-bar .sys-loc { display: none; }
    .hero-top-bar { justify-content: center; gap: 1rem; }
    .title { font-size: clamp(3rem, 12vw, 5rem); }
}

/* =========================================
   --- PROFILE SECTION (ABOUT ME) --- 
========================================= */
.manifesto {
    padding: 15vh 5vw; 
    background: var(--bg-color);
    position: relative; 
    z-index: 5;
    border-top: 1px solid var(--border-color);
}

.manifesto-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Hanging ID Card System */
.profile-side {
    position: sticky;
    top: 2rem;
    height: fit-content;
    perspective: 1000px;
    z-index: 20;
    display: flex;
    justify-content: center;
}

.hanging-system {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.lanyard-string {
    width: 4px;
    height: 150vh;
    background: #111;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background-image: repeating-linear-gradient(45deg, #222 0, #222 2px, #111 2px, #111 4px);
}

.lanyard-clip {
    width: 40px;
    height: 20px;
    background: #333;
    border-radius: 4px;
    margin-bottom: -10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.id-card-body {
    background: #0a0a0a;
    width: 100%;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
    
    /* KEMBALIKAN INI: Agar kartu berayun/miring dari titik klip di atas */
    transform-origin: top center !important; 
    
    cursor: grab;
    user-select: none;
    position: relative;
    
    /* MENGAKTIFKAN 3D */
    transform-style: preserve-3d; 
    will-change: transform; 
    
    /* PENTING: Batasi transisi HANYA untuk shadow. Jangan biarkan CSS mengontrol 'transform' */
    transition: box-shadow 0.3s ease !important;
}

.id-card-body:active {
    cursor: grabbing;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

.card-slot {
    width: 60px;
    height: 8px;
    background: #050505;
    border-radius: 10px;
    margin: -10px auto 20px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,1);
}

.profile-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    border: 2px solid #222;
    background-color: #111;
}

.profile-img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s, transform 0.5s;
}

.id-card-body:hover .profile-img { 
    filter: grayscale(0%); 
    transform: scale(1.02); 
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1) 40%, transparent 50%);
    pointer-events: none;
}

.profile-identity { 
    text-align: center; 
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.profile-role {
    font-size: 0.75rem;
    background: var(--accent-color);
    color: #000;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.card-barcode {
    margin: 1.5rem 0;
    opacity: 0.5;
    text-align: center;
}

.barcode-lines {
    height: 30px;
    background-image: linear-gradient(90deg, #fff 0%, #fff 2%, transparent 2%, transparent 4%, #fff 4%, #fff 8%, transparent 8%);
    background-size: 100% 100%;
    margin-bottom: 5px;
}

.id-code { 
    font-family: monospace; 
    font-size: 0.7rem; 
    color: #666; 
    letter-spacing: 0.2em; 
}

.profile-quote {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    text-align: center;
    color: #888;
    font-style: italic;
    border-top: 1px dashed #333;
    padding-top: 1rem;
    line-height: 1.4;
}

/* About Content */
.content-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.text-box { 
    max-width: 800px; 
}

.label {
    display: block; 
    font-size: 0.75rem; 
    color: var(--accent-color);
    margin-bottom: 1.2rem; 
    text-transform: uppercase;
    letter-spacing: 0.15em; 
    font-weight: 600;
}

.text-box h2 {
    font-family: var(--font-serif); 
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin-bottom: 2rem; 
    line-height: 1.1;
}

.text-box p { 
    color: #999; 
    line-height: 1.7; 
    font-size: 1.15rem; 
}

.skill-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.skill-list li {
    font-size: 1.2rem;
    color: #ccc;
    padding-bottom: 1rem;
    border-bottom: 1px solid #222;
}

.xp-row {
    display: flex; 
    align-items: center; 
    gap: 1.5rem;
}

.big-number {
    font-family: var(--font-serif); 
    font-size: 4rem; 
    font-weight: 700; 
    color: #fff;
}

.xp-desc {
    font-size: 0.9rem; 
    color: #888; 
    text-transform: uppercase; 
    letter-spacing: 0.1em;
}

@media (max-width: 900px) {
    .manifesto-container { grid-template-columns: 1fr; gap: 3rem; }
    .profile-side { position: relative; top: 0; width: 100%; margin-bottom: 3rem; }
    .hanging-system { width: 100%; max-width: 350px; margin: 0 auto; }
    .lanyard-string { display: none; }
}

/* =========================================
   CV DOWNLOAD BUTTON (ID CARD)
========================================= */
.cv-dl-btn {
    display: block;
    margin-top: 15px;
    padding: 10px;
    font-size: 0.75rem;
    font-family: monospace; /* Font gaya kode */
    text-align: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    background: transparent;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cv-dl-btn:hover {
    background: #d94e18; /* Warna oranye aksen khas retro Anda */
    color: #000;
    border: 1px solid #d94e18;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(217, 78, 24, 0.5); /* Efek glow tipis */
}

/* =========================================
   --- EDITORIAL RETRO BRUTALISM (PROJECTS) --- 
========================================= */
.editorial-section {
    padding: 15vh 5vw;
    background: var(--bg-color);
    position: relative;
    z-index: 5;
    border-top: 2px dashed #444;
}

/* Header Retro */
.retro-header {
    margin-bottom: 5rem;
    font-family: monospace;
    text-transform: uppercase;
}

.retro-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px #000;
}

.retro-header p {
    color: #888;
    letter-spacing: 0.1em;
    font-size: 1rem;
}

.typing-effect::after {
    content: '_';
    animation: blink 1s step-end infinite;
}

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

/* Grid Projects */
.retro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Retro Card (OS Window Style) */
.retro-card {
    background: #0a0a0a;
    border: 2px solid #555;
    box-shadow: 10px 10px 0px var(--accent-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.retro-card:hover {
    transform: translate(5px, 5px);
    box-shadow: 5px 5px 0px var(--accent-color);
    border-color: #fff;
}

/* Window Title Bar */
.window-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    background: #222;
    border-bottom: 2px solid #555;
    font-family: monospace;
    font-size: 0.75rem;
    color: #aaa;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
    font-weight: bold;
    color: #666;
}

.retro-card:hover .window-bar {
    background: #333;
    color: #fff;
}

/* Image Wrapper */
.retro-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 2px solid #555;
}

.retro-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(40%) contrast(120%) grayscale(80%);
    transition: filter 0.4s;
}

.retro-card:hover .retro-img-wrapper img {
    filter: sepia(0%) contrast(100%) grayscale(0%);
}

/* Content Area */
.retro-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.retro-badge {
    align-self: flex-start;
    font-family: monospace;
    background: #222;
    color: var(--accent-color);
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
    border: 1px solid var(--accent-color);
    margin-bottom: 1.2rem;
}

.retro-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.retro-desc {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Retro Button */
.retro-btn {
    align-self: flex-start;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: bold;
    color: #000;
    background: var(--accent-color);
    padding: 0.6rem 1.2rem;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
    border: 2px solid transparent;
}

.retro-btn:hover {
    background: #000;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 1024px) {
    .retro-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .retro-grid { grid-template-columns: 1fr; }
}

/* =========================================
   VIEW MORE PROJECTS BUTTON (COMPACT & LEFT ALIGNED)
========================================= */
.view-more-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; /* Memastikan isi tidak memanjang */
    margin-top: 40px;
    width: 100%;
    height: max-content; /* Mengunci tinggi wadah agar pas dengan isi */
}

.view-more-btn {
    display: inline-block;
    padding: 10px 24px; /* Ukuran padding (ruang dalam) diperkecil */
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff; 
    font-family: monospace;
    font-size: 0.8rem; /* Ukuran teks diperkecil */
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 4px 4px 0px #d94e18; /* Efek bayangan juga disesuaikan ukurannya */
    transition: all 0.2s ease;
}

.view-more-btn:hover {
    background-color: #d94e18; 
    color: #000; 
    border-color: #d94e18;
    box-shadow: 4px 4px 0px #fff; 
    transform: translate(-2px, -2px); 
}

.view-more-btn:active {
    transform: translate(4px, 4px); /* Efek klik disesuaikan */
    box-shadow: 0px 0px 0px transparent; 
}

/* =========================================
   --- RETRO TOOLS / BRANDS SECTION --- 
========================================= */
.tools-section {
    padding: 8rem 5vw;
    background: #020202;
    border-top: 2px dashed #333;
}

.tools-header {
    text-align: center;
    margin-bottom: 5rem; /* Jarak diperbesar sedikit agar lebih lega */
}

.tools-header h2 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #888;
}

.tools-header h2 span {
    color: #fff;
    font-weight: 800;
}

.tools-sub {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

/* Grid Layout */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem 1.5rem; /* Jarak vertikal diperbesar agar lebih elegan */
    max-width: 1200px;
    margin: 0 auto;
}

/* Tool Card Style (Elegan, Tanpa Kotak) */
.tool-card {
    background: transparent; /* Menghilangkan background */
    border: none;            /* Menghilangkan garis tepi */
    box-shadow: none;        /* Menghilangkan bayangan */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    transition: all 0.4s ease; /* Transisi diperhalus */
    cursor: pointer;
    text-align: center; 
}

/* Tool Logo Fix */
.tool-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    /* UPDATE: Menampilkan warna asli, tapi diredupkan (transparan 50%) */
    filter: opacity(0.5); 
    transition: all 0.4s ease;
    margin: 0 auto; 
}

/* Label Nama Tool */
.tool-name {
    font-family: monospace;
    font-size: 0.75rem; 
    color: #888; 
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    text-align: center; 
    line-height: 1.4;
}

/* Hover Effect (Floating & Glowing) */
.tool-card:hover {
    background: transparent;
    transform: translateY(-8px); 
}

.tool-card:hover img {
    /* UPDATE: Mengembalikan kecerahan warna asli ke 100% penuh */
    filter: opacity(1); 
    transform: scale(1.15); 
}

.tool-card:hover .tool-name {
    color: var(--accent-color); 
    font-weight: 600;
    letter-spacing: 0.2em; 
}

/* Responsive */
@media (max-width: 1024px) {
    .tools-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 3rem 1.5rem; 
    }
}

@media (max-width: 600px) {
    .tools-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 2rem 1rem; 
    }
}
/* =========================================
   --- BASECAMP / CONTACT (TERMINAL MINIMALIS) --- 
========================================= */
.basecamp {
    padding: 6rem 5vw; 
    background: #020202; 
    border-top: 1px solid #111;
}

.basecamp-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom dibagi rata sempurna */
    gap: 3rem; /* Jarak antar kolom sama rata */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Pengaturan dasar untuk setiap kolom */
.bc-col {
    display: flex;
    flex-direction: column;
}

.bc-col h4 {
    color: #555; 
    text-transform: uppercase; 
    font-size: 0.75rem;
    letter-spacing: 0.15em; 
    margin-bottom: 2rem;
    font-family: monospace; 
    font-weight: 600;
}

/* --- 1. KOLOM KIRI (SOSIAL MEDIA): Rata Kiri --- */
.basecamp-grid .bc-col:nth-child(1) {
    align-items: flex-start;
    text-align: left;
}

.social-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-list li {
    margin-bottom: 1rem;
}

.social-list a {
    font-family: monospace;
    font-size: 0.9rem;
    color: #999;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
    text-decoration: none;
}

.social-list a:hover {
    color: var(--accent-color, #ff4500); /* Ganti var jika tidak pakai variabel CSS */
    transform: translateX(8px);
}

/* --- 2. KOLOM TENGAH (PESAN): Rata Tengah --- */
.center-prompt {
    align-items: center; /* Menengahkan judul, teks, dan tombol */
    text-align: center;
}

.prompt-text {
    font-family: monospace; 
    font-size: 0.9rem; 
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.email-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--accent-color, #ff4500);
    background: transparent;
    border: 1px solid var(--accent-color, #ff4500); 
    padding: 0.5rem 1rem; 
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer; 
}

.email-cta:hover {
    background: var(--accent-color, #ff4500);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 2px 2px 0px #000; 
}

.email-cta .cta-icon {
    animation: blink 1s step-end infinite;
}

/* --- 3. KOLOM KANAN (ALAMAT): Rata Kanan --- */
.basecamp-grid .bc-col:nth-child(3) {
    align-items: flex-end; /* Memaksa konten menempel ke kanan */
    text-align: right;     /* Teks rata kanan */
}

address {
    font-family: monospace; 
    font-style: normal;
    font-size: 0.9rem; 
    color: #888;
    line-height: 1.8;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .basecamp-grid { 
        grid-template-columns: 1fr; /* Jadi 1 kolom bersusun ke bawah di HP */
        gap: 4rem; 
    }
    
    /* Mengembalikan semua kolom jadi rata tengah saat di HP agar lebih rapi */
    .basecamp-grid .bc-col:nth-child(1),
    .basecamp-grid .bc-col:nth-child(3) {
        align-items: center;
        text-align: center;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .basecamp-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
}

/* =========================================
   --- RETRO FOOTER / SYSTEM STATUS BAR --- 
========================================= */
.retro-footer {
    padding: 1.5rem 5vw;
    background: #050505; 
    border-top: 2px dashed #333; 
    font-family: monospace;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Indikator Status */
.sys-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #666;
    letter-spacing: 0.1em;
}

/* Animasi Lampu Menyala (Blinking Dot) */
.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.7); } 
    70% { box-shadow: 0 0 0 8px rgba(194, 65, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0); }
}

/* Teks Copyright Utama */
.copyright-text {
    color: #888;
    letter-spacing: 0.15em;
    text-align: center;
}

.copyright-text .copy-symbol {
    color: var(--accent-color);
    font-size: 1.1em;
}

.copyright-text .year {
    color: #fff;
    font-weight: bold;
}

.copyright-text .separator {
    color: #444;
    margin: 0 0.5rem;
}

/* Teks Status Ujung Kanan */
.footer-code {
    color: #555;
    letter-spacing: 0.2em;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.2rem;
    }
    
    .sys-status, .footer-code {
        justify-content: center;
        font-size: 0.75rem;
    }
}

/* =========================================
   RESPONSIVE MOBILE STYLES (RETRO BRUTALISM)
========================================= */
@media (max-width: 768px) {

    /* 1. Atur Kursor Custom (Nonaktifkan di HP agar tidak mengganggu touch) */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
    body {
        cursor: auto !important;
    }

    /* 2. DYNAMIC VIEWPORT HEIGHT (Agar tinggi pas di layar HP) */
    .hero {
        height: 100dvh !important; 
        /* Coba ubah ke 85dvh atau 90dvh jika ingin Hero sedikit lebih pendek */
    }
    /* ... sisa kode responsive lainnya ... */

    /* 2. Hero Section */
    .hero-top-bar {
        font-size: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .hero-content h1.title {
        font-size: 2.8rem !important; /* Perkecil ukuran nama agar tidak terpotong */
        line-height: 1.1;
    }
    .retro-tag-group {
        flex-wrap: wrap;
        gap: 8px;
    }
    .retro-tag {
        font-size: 0.8rem;
    }

    /* 3. Section About / Manifesto */
    .manifesto-container {
        flex-direction: column !important; /* Tumpuk ID Card dan Teks secara vertikal */
        gap: 30px;
    }
    .profile-side {
        width: 100% !important;
    }
    .hanging-system {
        transform: scale(0.9); /* Sedikit atur skala ID card agar pas di layar HP */
    }
    .content-side.retro-panel {
        width: 100% !important;
        padding: 20px 15px !important;
    }
    .content-grid h2 {
        font-size: 1.5rem !important;
    }

    /* 4. Section Projects (Grid ke 1 Kolom) */
    .retro-grid {
        grid-template-columns: 1fr !important; /* Paksa kartu proyek berbaris 1 kolom ke bawah */
        gap: 20px;
    }
    .retro-card {
        width: 100% !important;
    }
    .retro-title {
        font-size: 1.25rem !important;
    }

    /* 5. Section Tools (Grid 2 Kolom untuk HP) */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Buat kotak tools 2 kolom */
        gap: 12px;
    }
    .tool-card {
        padding: 15px 10px !important;
    }

    /* 6. Basecamp / Contact & Footer */
    .basecamp-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .bc-bottom h1 {
        font-size: 2rem !important;
    }

    /* Memaksa baris atas hero sejajar kiri semua di HP */
    .hero-top-bar span {
        text-align: left !important;
        flex: none !important;
        width: 100%;
    }

}

/* =========================================
   EASTER EGG: FULL BODY SKULL & WOLF CHASE
========================================= */
.pixel-chase-container {
    width: 100%;
    overflow: hidden; 
    position: relative;
    height: 60px; /* Tinggi wadah dinaikkan agar muat untuk gambar full body */
    
    /* Menarik wadah ke atas agar karakter pas berlari di atas garis */
    margin-top: -60px; 
    pointer-events: none; 
}

.pixel-chase-run {
    display: flex;
    align-items: flex-end; /* Memastikan kaki kedua karakter sejajar menapak di bawah */
    gap: 30px; /* Jarak antara serigala dan tengkorak diperlebar sedikit */
    position: absolute;
    bottom: 0;
    
    /* Kecepatan lari (10 detik dari ujung ke ujung) */
    animation: runChase 10s linear infinite; 
}

/* Mengatur ukuran gambar karakter */
.pixel-wolf, .pixel-skull {
    height: 50px; /* Atur seberapa besar karakter yang Anda inginkan (sesuaikan jika kurang pas) */
    width: auto;
    
    /* 💡 TRIK RAHASIA: Memastikan gambar pixel tetap tajam (kotak-kotak), tidak blur! */
    image-rendering: pixelated; 
    
    /* Membalikkan arah menghadap ke kiri. 
       (HAPUS BARIS INI JIKA GAMBAR ASLI ANDA SUDAH MENGHADAP KIRI) */
    transform: scaleX(-1); 
}

@keyframes runChase {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-300px); /* Ditarik lebih jauh ke kiri agar gambar benar-benar hilang dari layar */
    }
}

/* ============================================================
   EFEK 3D VANILLA-TILT UNTUK ID CARD (ID: BONYOS-001)
   ============================================================ */

/* 1. Mengaktifkan ruang 3D pada kartu */
#swing-card {
    transform-style: preserve-3d;
    /* Catatan: Pastikan tidak ada 'overflow: hidden;' di kelas .retro-id 
       karena bisa memotong efek 3D-nya */
}

/* 2. Mengatur ketinggian melayang (Depth) untuk masing-masing elemen */

/* Foto profil melayang paling tinggi agar mencolok */
#swing-card .profile-img-wrapper {
    transform: translateZ(50px);
}

/* Nama dan Role (Dev_Design) melayang di tingkat menengah */
#swing-card .profile-identity {
    transform: translateZ(40px);
}

/* Barcode dan Quote melayang tipis di atas dasar kartu */
#swing-card .card-barcode,
#swing-card .profile-quote {
    transform: translateZ(20px);
}

/* Tombol Download CV melayang cukup tinggi agar mengundang interaksi klik */
#swing-card .cv-dl-btn {
    transform: translateZ(45px);
    /* Opsional: Tambahkan sedikit bayangan agar efek melayangnya lebih terasa */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); 
}