:root {
    --bg-color: #1a1a1a;
    --text-color: #f0f0f0;
    --graphite: #2c2c2c;
    --graphite-light: #3d3d3d;
    --gold: #D4AF37;
    --gold-hover: #F3E5AB;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
}

/* HERO SECTION */
.hero {
    min-height: 100vh; /* Full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Konten di tengah secara vertikal */
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    box-sizing: border-box;
    /* Menyisakan padding di atas untuk iklan In-Page Push */
    padding-top: 6rem;
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
    margin-bottom: 1.2rem;
    background-color: var(--graphite);
}

.name {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.tagline {
    margin: 0.5rem 0 1rem 0;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
}

.bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    max-width: 90%;
    margin: 0 auto 2rem auto;
}

.scroll-down-btn {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 10px;
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    color: var(--gold-hover);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* LINKS SECTION */
.links-section {
    min-height: 100vh; /* Bagian link juga 100vh agar terlihat fokus */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Link berada di tengah-tengah layar */
    align-items: center;
    padding: 4rem 1.5rem;
    box-sizing: border-box;
}

.links-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-item {
    display: block;
    background-color: var(--graphite);
    color: var(--text-color);
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}

.link-item:hover, .link-item:focus {
    background-color: var(--graphite-light);
    border-color: var(--gold);
    color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1);
}

/* FOOTER */
.footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    background-color: #151515; /* Background sedikit lebih gelap untuk memisahkan footer */
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--gold-hover);
}