/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

/* FONTS STYLE DESIGN */
@font-face {
    font-family: 'PhillySans';
    src: url('https://bungdoc.com/fonts/PhillySans.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Timegoing';
    src: url('https://bungdoc.com/fonts/Timegoing-Regular.woff2') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --font-navbar: 'PhillySans', sans-serif;
    --font-profile: 'PhillySans', sans-serif;
    --font-desc: 'Timegoing-Regular', serif;
}


/* BODY */
/* BACKGROUND IMAGE */
body {
    min-height: 100vh;
    background-image:
        linear-gradient(
            rgba(2,6,23,0.75),
            rgba(2,6,23,0.85)
        ),
        url("https://www.bungdoc.com/img/background2.webp"); /* ganti dengan gambar kamu */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1px 7px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    font-family: var(--font-navbar);
}

.nav-logo {
    height: 40px;
}

.nav-marquee {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.nav-marquee span {
    display: inline-block;
    animation: marquee 8s linear infinite;
    font-size: 24px;
    opacity: 0.85;
    font-family: var(--font-navbar);
    font-weight: 600;
    letter-spacing: 0.10em;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* CONTAINER */
.container {
    max-width: 420px;
    margin: 0 auto;
    padding: 24px 16px;
}

/* PROFILE */
.profile {
    text-align: center;
    margin-bottom: 36px;
    
}

.profile img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #fbff00;
}

.profile h1 {
    font-family: var(--font-profile);
    font-size: 26px;
    letter-spacing: 0.22em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.profile p {
    font-family: var(--font-desc);
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.06em;
    max-width: 260px;
    margin: 0 auto;
    opacity: 0.75;
}

/* LINKS */
.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* BUTTON */
.btn {
    display: block;
    width: 100%;
    padding: 16px 18px;
    letter-spacing: 0.06em;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-radius: 14px;
    background: #1d73f383;
    box-shadow: 0 8px 18px rgba(0,0,0,0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}

/* PRIMARY BUTTON */
.btn.primary {
    background: linear-gradient(135deg, #ff0000cb);
    animation: pulse 1.8s infinite;
    color: #fbff00d2;
}

.btn.primary2 {
    background: linear-gradient(135deg, #e5ff00be);
    animation: pulse 1.8s infinite;
    color: #1100fcaf;
}


@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70% { box-shadow: 0 0 0 14px rgba(207, 221, 9, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 11px;
    opacity: 0.8;
}
