:root {
    --bg-main: #09090b;
    --bg-card: rgba(24, 24, 27, 0.6);
    --border-light: rgba(255, 255, 255, 0.08);
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --gradient-primary: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; position: relative; overflow-x: hidden;}
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; flex: 1; display: flex; flex-direction: column; }

.glow-bg { position: absolute; border-radius: 50%; filter: blur(100px); z-index: -1; }
.glow-1 { width: 400px; height: 400px; background: rgba(239, 68, 68, 0.15); top: -100px; left: -100px; }
.glow-2 { width: 300px; height: 300px; background: rgba(59, 130, 246, 0.15); bottom: 10%; right: -50px; }

.profile-header { text-align: center; padding: 100px 0 60px; }
.profile-badge { display: inline-block; padding: 6px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-light); border-radius: 999px; font-size: 0.9rem; margin-bottom: 20px; }
.gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 3.5rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -1px; }
.subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.projects-section { padding: 40px 0 80px; flex: 1; }
.section-title { font-size: 1.8rem; margin-bottom: 30px; text-align: center; }
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }

.project-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    text-align: center; /* Menengahkan semua teks di dalam kartu */
}
.project-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); }
.project-status { position: absolute; top: 20px; right: 20px; font-size: 0.75rem; padding: 4px 10px; border-radius: 8px; font-weight: 600; }
.status.live { background: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }
.status.dev { background: rgba(234, 179, 8, 0.1); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.2); }

.project-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin-bottom: 20px; }
.project-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.project-card p { color: var(--text-muted); margin-bottom: 30px; font-size: 0.95rem; }

.btn { display: inline-block; padding: 12px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; text-align: center; width: 100%; transition: all 0.3s ease; }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #e4e4e7; transform: scale(1.02); }
.btn-outline { border: 1px solid var(--border-light); color: var(--text-muted); }

footer { text-align: center; padding: 40px 0; border-top: 1px solid var(--border-light); margin-top: auto; }
.legal-links { margin-top: 15px; }
.legal-links a { color: var(--text-muted); text-decoration: none; margin: 0 15px; font-size: 0.9rem; }
.legal-links a:hover { color: #fff; }

.project-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px auto; /* Kunci rahasia untuk menengahkan gambar */
    border-radius: 10px;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.4));
}

.header-banner {
    max-width: 100%;
    height: auto;
    max-height: 100px; /* Sesuaikan angka ini jika banner Anda terlalu besar/kecil */
    display: block;
    margin: 0 auto 20px auto; /* Memastikan banner berada tepat di tengah */
    transition: opacity 0.5s ease-in-out; /* Memberikan efek transisi memudar yang elegan */
}