@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
    --orange: #FF9900;
    --orange-glow: rgba(255, 153, 0, 0.5);
    --dark: #0F0F0F;
    --card-bg: #1A1A1A;
    --text-white: #FFFFFF;

    --bg-darker: #080808;
    --accent: var(--orange);
    --accent-light: #FFAB33;
    --text-bright: var(--text-white);
    --fw-bold: 700;
    --radius-full: 999px;
    --t-fast: .15s ease;
    --t-smooth: .25s cubic-bezier(0.4, 0, 0.2, 1);
    --z-base: 1;
    --z-nav: 100;
    --max-width: 1120px;
}

/* --- GLOBAL RESET & OVERFLOW FIX --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    background: var(--dark);
    color: var(--text-white);
}

img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto;
    display: block;
}

.container {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
}

/* --- GLOBAL RESET & BACKGROUND FIX --- */
html {
    background-color: var(--dark) !important;
    color: var(--text-white);
    max-width: 100% !important;
    overflow-x: hidden !important;
}

body {
    background-color: transparent !important; /* WAJIB transparan agar z-index -1 & -2 tidak tertutup warna hitam body */
    color: var(--text-white);
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

/* --- BACKGROUNDS --- */
#starfield, .cosmic-grid {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    inset: 0 !important;
    pointer-events: none !important; /* Agar tidak menghalangi klik pada tombol/tautan web */
}

#starfield {
    z-index: -2 !important;
    opacity: 0.5;
    display: block !important;
}

.cosmic-grid {
    z-index: -1 !important;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    display: block !important;
} 

#loading-screen {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--orange, #f97316);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- NAVBAR --- */
.navbar-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 9999;
}

.nav-content {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.nav-logo img { height: 60px; }

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
    font-weight: 500;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--orange);
    text-shadow: 0 0 10px var(--orange-glow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-search form {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search label { display: none; }

.nav-search input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 40px 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    width: 180px;
    outline: none;
    transition: all 0.4s ease;
}

.nav-search input:focus {
    width: 250px;
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--orange);
    box-shadow: 0 0 15px var(--orange-glow);
}

.nav-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ccc;
    width: 30px; height: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-search button:hover { color: var(--orange); }

.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    padding: 140px 5% 0;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text { flex: 1; padding-right: 40px; }
.orange-text { color: var(--orange); }

.badge-pill {
    display: inline-block;
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--orange);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 150, 0, 0.3);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--orange-glow);
    background: #ffaa33;
}

.social-hero a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    margin-right: 15px;
    transition: 0.3s;
    display: inline-flex;
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.social-hero a:hover {
    background: var(--orange);
    transform: scale(1.1);
}

.hero-img { flex: 1; text-align: right; }

.hero-img img {
    width: 100%;
    max-width: 450px;
    animation: float 6s infinite ease-in-out;
    filter: drop-shadow(0 0 40px rgba(255,153,0,0.15));
}

/* --- SECTIONS --- */
.section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 40px;
    color: var(--orange);
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.pill-title {
    background: var(--orange);
    color: white;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
}

.line-break {
    height: 4px;
    background: var(--orange);
    margin: 20px 0 50px;
    width: 100%;
    border-radius: 2px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

/* CARDS */
.card-glass, .card-wide {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    transition: 0.3s all ease;
}

.card-glass:hover, .card-wide:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 10px 40px rgba(255, 153, 0, 0.25);
}

.card-img, .wide-img {
    height: 220px;
    overflow: hidden;
    background: #222;
}

.card-img img, .wide-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.card-glass:hover img, .card-wide:hover img { transform: scale(1.1); }

.card-info, .wide-info { padding: 30px; }

.card-info h3, .wide-info h3 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 22px;
}

/* ACTIVITY */
.activity-gallery-container { margin-bottom: 80px; }

.activity-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 25px;
}

.activity-row.reverse { flex-direction: row-reverse; }

.activity-img {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.activity-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
    display: block;
}

.activity-img:hover img { transform: scale(1.05); }

.activity-text { flex: 1; }

.activity-text h3 {
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 800;
}

.activity-text p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.activity-gallery {
    display: none;
    padding: 30px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px dashed rgba(255, 153, 0, 0.4);
    border-radius: 20px;
    animation: slideDown 0.4s ease forwards;
}

.activity-gallery.show { display: block; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%; height: 160px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    touch-action: manipulation;
}

.gallery-grid img:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--orange-glow);
}

/* INSTAGRAM */
.header-with-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ig-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.ig-link:hover { color: var(--orange); }

.instagram-widget-container {
    margin-top: 40px;
    width: 100%;
}

/* NEWSLETTER */
.newsletter {
    padding: 100px 20px;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80') center/cover;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.newsletter-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

.newsletter h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.newsletter p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 40px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    width: 350px;
    outline: none;
    transition: 0.3s;
}

.newsletter input:focus {
    border-color: var(--orange);
    background: rgba(0,0,0,0.6);
}

.newsletter button {
    padding: 15px 40px;
    border-radius: 50px;
    background: var(--orange);
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.newsletter button:hover {
    background: #ffaa33;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--orange-glow);
}

/* =========================
   FOOTER
   ========================= */
.pps-footer {
    padding: 64px 0 48px;
    background:
        radial-gradient(900px 420px at 12% 0%, rgba(230, 230, 230, .08), transparent 58%),
        linear-gradient(180deg, rgba(230, 230, 230, .06), rgba(230, 230, 230, .00) 60%),
        var(--bg-darker, #080808);
    border-top: 1px solid rgba(230, 230, 230, .08);
    position: relative;
    isolation: isolate;
}

.pps-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 150, 0, .04), transparent 50%);
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.pps-footer:hover::before { opacity: 1; }

.pps-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr .9fr;
    gap: 44px;
    align-items: start;
}

.pps-footer-brandline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pps-footer-brandlogo {
    height: 75px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
    transition: filter var(--t-fast), transform var(--t-fast);
}

.pps-footer-brandlogo:hover {
    filter: drop-shadow(0 10px 24px rgba(255, 150, 0, .2));
    transform: translateY(-2px);
}

.pps-footer-desc {
    margin: 0 0 14px;
    max-width: 52ch;
    color: rgba(230, 230, 230, .72);
    font-weight: var(--fw-bold);
    font-size: 13px;
    line-height: 1.75;
    transition: color var(--t-fast);
}

.pps-footer-desc:hover { color: rgba(230, 230, 230, .88); }
.pps-footer-desc-en { font-style: italic; color: rgba(230, 230, 230, .62); }

.pps-footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 34px;
    align-content: start;
    padding-top: 24px;
}

.pps-footer-menuitem {
    font-weight: var(--fw-bold);
    color: rgba(230, 230, 230, .92);
    font-size: clamp(9px, 1vw, 13px);
    transition: color var(--t-smooth), transform var(--t-smooth);
    display: inline-block;
    position: relative;
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.pps-footer-menuitem::before {
    content: "";
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width var(--t-smooth);
    border-radius: var(--radius-full);
}

.pps-footer-menuitem:hover {
    color: var(--text-bright);
    transform: translateX(4px);
}

.pps-footer-menuitem:hover::before { width: 100%; }

.pps-footer-follow {
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.pps-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
    height: 44px;
    min-width: 220px;
    padding: 0 28px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(230, 230, 230, .72);
    color: rgba(230, 230, 230, .95);
    font-weight: var(--fw-bold);
    font-size: 14px;
    letter-spacing: .6px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: background var(--t-smooth), border-color var(--t-smooth),
                transform var(--t-smooth), box-shadow var(--t-smooth);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.pps-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 150, 0, .1), transparent);
    opacity: 0;
    transition: opacity var(--t-smooth);
}

.pps-footer-cta:hover {
    background: rgba(230, 230, 230, .08);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 150, 0, .15);
}

.pps-footer-cta:hover::before { opacity: 1; }
.pps-footer-cta:active { transform: translateY(0); }

.pps-footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pps-footer-social {
    width: 36px; height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: rgba(230, 230, 230, .92);
    border: 1.5px solid rgba(230, 230, 230, .70);
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: transform var(--t-smooth), color var(--t-smooth),
                background var(--t-smooth), border-color var(--t-smooth),
                box-shadow var(--t-smooth);
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.pps-footer-social::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 150, 0, .15), transparent);
    opacity: 0;
    transition: opacity var(--t-smooth);
}

.pps-footer-social svg, .pps-footer-social i {
    width: 22px; height: 22px;
    display: block;
    position: relative;
    z-index: var(--z-base);
    transition: transform var(--t-fast);
}

.pps-footer-social i { font-size: 15px; }

.pps-footer-social:hover {
    transform: translateY(-3px) rotate(5deg);
    background: rgba(230, 230, 230, .08);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 6px 16px rgba(255, 150, 0, .2);
}

.pps-footer-social:hover::before { opacity: 1; }
.pps-footer-social:hover svg,
.pps-footer-social:hover i { transform: scale(1.1); }

.pps-footer-bottom {
    margin-top: 34px;
    text-align: center;
    color: rgba(230, 230, 230, .65);
    font-weight: var(--fw-bold);
    font-size: 12px;
    transition: color var(--t-fast);
}

.pps-footer-bottom:hover { color: rgba(230, 230, 230, .85); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================
   ARTICLE SYSTEM
   ========================= */
.skip-to-content {
    position: absolute; left: -999px; top: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    background: rgba(230,230,230,.95);
    color: #191919;
    z-index: calc(var(--z-nav) + 100);
    font-weight: var(--fw-bold);
    transition: left var(--t-fast);
}
.skip-to-content:focus { left: 12px; box-shadow: 0 4px 12px rgba(0,0,0,.20); }

.dot {
    display: inline-block; width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .6; transform: scale(1.3); }
}

.loading-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,.12);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin: 0 auto;
}

.text-muted { color: rgba(255,255,255,.58); font-size: 14px; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--orange);
    color: #111;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(0,0,0,.28);
    transition: all .3s ease;
    z-index: 80;
    cursor: pointer;
    border: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.35), 0 0 20px rgba(255,153,0,.30);
}

/* =========================
   TOPIC DROPDOWN
   ========================= */
.topic-dropdown { position: relative; display: inline-block; }

.topic-dropdown-btn {
    height: 40px;
    padding: 0 16px 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.14);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s ease;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.topic-dropdown-btn:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
    color: #fff;
}

.topic-dropdown-btn.is-active {
    background: rgba(255,150,0,.12);
    border-color: rgba(255,150,0,.35);
    color: var(--orange);
}

.dropdown-arrow { width: 12px; height: 12px; opacity: .6; transition: transform .2s ease; flex-shrink: 0; }
.topic-dropdown-btn.is-open .dropdown-arrow { transform: rotate(180deg); opacity: 1; }

.topic-count {
    background: var(--orange);
    color: #111;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 999px;
    min-width: 20px;
    text-align: center;
}

.topic-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    background: #141414;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
    z-index: 50;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform-origin: top right;
    transform: scale(0.95) translateY(-8px);
    opacity: 0;
    transition: transform .2s cubic-bezier(0.34,1.2,0.64,1), opacity .18s ease;
    pointer-events: none;
}

.topic-dropdown-panel.is-open {
    display: block;
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.dropdown-header { padding: 16px 18px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dropdown-header h4 {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0;
}

.dropdown-search { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.06); }
.dropdown-search input {
    width: 100%;
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.10);
    border-radius: 10px;
    padding: 9px 14px 9px 36px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 11px center;
}
.dropdown-search input::placeholder { color: rgba(255,255,255,.28); }
.dropdown-search input:focus {
    border-color: var(--orange);
    background-color: rgba(255,153,0,.05);
    box-shadow: 0 0 0 3px rgba(255,153,0,.12);
}

.dropdown-topics {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.15) transparent;
    -webkit-overflow-scrolling: touch;
}
.dropdown-topics::-webkit-scrollbar { width: 5px; }
.dropdown-topics::-webkit-scrollbar-track { background: transparent; }
.dropdown-topics::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 999px; }
.dropdown-topics::-webkit-scrollbar-thumb:hover { background: rgba(255,153,0,.4); }

.topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    cursor: pointer;
    transition: background .15s ease;
    user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
    min-height: 44px;
}
.topic-item:hover  { background: rgba(255,255,255,.05); }
.topic-item:active { background: rgba(255,153,0,.08); }
.topic-item.is-active { background: rgba(255,153,0,.06); }

.topic-checkbox {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.03);
    position: relative;
    transition: border-color .15s, background .15s, box-shadow .15s, transform .1s;
    display: grid;
    place-items: center;
    pointer-events: none;
}
.topic-item:hover .topic-checkbox {
    border-color: rgba(255,153,0,.6);
    background: rgba(255,153,0,.08);
}
.topic-item.is-active .topic-checkbox {
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: 0 4px 12px rgba(255,153,0,.35);
    transform: scale(1.05);
}
.topic-item.is-active .topic-checkbox::after {
    content: "";
    display: block;
    width: 10px; height: 6px;
    border-left: 2.5px solid #111;
    border-bottom: 2.5px solid #111;
    transform: rotate(-45deg) translateY(-1px);
    border-radius: 1px;
}

.topic-item[data-topic="all"] .topic-checkbox { border-radius: 50%; }
.topic-item[data-topic="all"].is-active .topic-checkbox::after {
    width: 7px; height: 7px;
    border: none;
    background: #111;
    border-radius: 50%;
    transform: none;
}

.topic-label {
    flex: 1;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    transition: color .15s;
    pointer-events: none;
}
.topic-item.is-active .topic-label { color: rgba(255,255,255,.95); }

.topic-article-count {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
    padding: 2px 8px;
    border-radius: 999px;
    transition: background .15s, color .15s;
    min-width: 24px;
    text-align: center;
    pointer-events: none;
}
.topic-item.is-active .topic-article-count {
    background: rgba(255,153,0,.15);
    border-color: rgba(255,153,0,.25);
    color: var(--orange);
}

.dropdown-footer {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.btn-clear {
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.65);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.btn-clear:hover { background: rgba(255,255,255,.11); color: #fff; border-color: rgba(255,255,255,.2); }

.btn-apply {
    padding: 10px;
    border-radius: 10px;
    background: var(--orange);
    border: none;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all .18s;
    letter-spacing: .3px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.btn-apply:hover  { background: #ffaa33; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255,153,0,.3); }
.btn-apply:active { transform: translateY(0); }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
}

.page-btn {
    border: 1px solid rgba(255,255,255,.10);
    cursor: pointer;
    border-radius: 999px;
    height: 38px;
    padding: 0 16px;
    min-width: 40px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    transition: .25s cubic-bezier(0.4,0,0.2,1);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.page-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.16); }
.page-btn.is-active { background: var(--orange); border-color: var(--orange); color: #111; }

/* =========================
   ARTICLE CARDS
   ========================= */
#cards a, #cards a:visited, #cards a:hover, #cards a:active,
.card, .card:visited { text-decoration: none !important; color: inherit; }
.card a { text-decoration: none !important; color: inherit; }
#cards a:focus { outline: none; }
#cards a:focus-visible {
    outline: 2px solid rgba(255,153,0,0.55);
    outline-offset: 4px;
    border-radius: 18px;
}

.card {
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    display: flex;
    flex-direction: column;
    transition: .3s ease;
    cursor: pointer;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.card:hover  { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 10px 40px rgba(255,153,0,.2); }
.card:active { transform: scale(0.98); border-color: var(--orange); }

.card-thumb { aspect-ratio: 16/9; overflow: hidden; background: #222; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; display: block; }
.card:hover .card-thumb img { transform: scale(1.08); }

.card-body    { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-topic   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--orange); margin-bottom: 8px; }
.card-title   { font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: #fff; }
.card-excerpt { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.6; flex: 1; }
.card-meta    { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.38); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.toast {
    position: fixed;
    bottom: 80px; right: 30px;
    min-width: 280px; max-width: 420px;
    padding: 16px 20px;
    border-radius: 18px;
    background: rgba(25,25,25,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .25s cubic-bezier(0.4,0,0.2,1);
    z-index: 200;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================
   EMPTY / ERROR STATES
   ========================= */
.state-empty, .state-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.state-icon  { font-size: 48px; opacity: .5; margin-bottom: 8px; }
.state-title { font-size: 18px; font-weight: 800; color: rgba(255,255,255,.75); }
.state-desc  { font-size: 14px; color: rgba(255,255,255,.38); max-width: 360px; line-height: 1.6; }
.state-error .state-icon  { color: #ff6b6b; opacity: 1; }
.state-error .state-title { color: #ff6b6b; }

#page-detail .section, .page-detail-section { padding-top: 130px; }

/* --- ARTICLE DETAIL OVERFLOW PROTECTED --- */
.article-shell {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}
.article-header { margin-bottom: 8px; }
.article-header h1 { font-size: clamp(26px,4.5vw,46px); font-weight: 800; line-height: 1.2; color: #fff; }

.article-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,153,0,.08);
    border: 1px solid rgba(255,153,0,.18);
    color: var(--orange);
    font-size: 11px; font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase; letter-spacing: .6px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    touch-action: manipulation;
}
.article-tag:hover { background: rgba(255,153,0,.18); transform: translateY(-1px); color: var(--orange); }

.article-meta-bar {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 12px 20px;
    margin: 16px 0 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.article-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.55); font-weight: 600; }
.article-meta-item i { color: var(--orange); font-size: 14px; opacity: .85; }
.article-meta-item strong { color: rgba(255,255,255,.85); font-weight: 700; }

.article-views-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,153,0,.10);
    border: 1px solid rgba(255,153,0,.22);
    color: var(--orange);
    font-size: 12px; font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px; letter-spacing: .3px;
    transition: background .2s;
}
.article-views-badge:hover { background: rgba(255,153,0,.18); }
.article-views-badge i { font-size: 13px; }

.article-stats-bar { display: flex; gap: 16px; flex-wrap: wrap; margin: 0 0 28px; }
.article-stat-item {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 14px 20px; min-width: 90px; gap: 6px;
    transition: background .2s, border-color .2s;
}
.article-stat-item:hover { background: rgba(255,153,0,.06); border-color: rgba(255,153,0,.18); }
.article-stat-value { font-size: 22px; font-weight: 800; color: var(--orange); line-height: 1; }
.article-stat-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .6px; }

.article-author-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    margin: 36px 0;
    transition: background .2s, border-color .2s;
}
.article-author-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,153,0,.18); }

.article-author-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,153,0,.15);
    border: 2px solid rgba(255,153,0,.25);
    display: grid; place-items: center;
    font-size: 20px; color: var(--orange);
    flex-shrink: 0; font-weight: 800; overflow: hidden;
}
.article-author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.article-author-info       { flex: 1; }
.article-author-name       { font-size: 15px; font-weight: 800; color: rgba(255,255,255,.92); margin: 0 0 4px; }
.article-author-role       { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 600; margin: 0; }
.article-author-badge      { font-size: 11px; background: var(--orange); color: #111; padding: 3px 10px; border-radius: 999px; font-weight: 800; letter-spacing: .3px; white-space: nowrap; }

.article-cover { border-radius: 18px; overflow: hidden; margin-bottom: 32px; aspect-ratio: 16/9; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

/* CONTENT TYPOGRAPHY & WORD WRAP SAFETY */
.article-content {
    line-height: 1.85;
    font-size: 16px;
    color: rgba(255,255,255,.80);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.article-content > * + * { margin-top: 1.2em; }

.article-content h2, .article-content h3, .article-content h4, .article-content p, .article-content li {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.article-content h2 {
    font-size: 26px; font-weight: 800; color: #fff;
    margin: 40px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,153,0,.2);
    position: relative;
}
.article-content h2::before {
    content: "";
    position: absolute; bottom: -2px; left: 0;
    width: 48px; height: 2px;
    background: var(--orange); border-radius: 2px;
}
.article-content h3   { font-size: 20px; font-weight: 700; color: rgba(255,255,255,.92); margin: 30px 0 10px; }
.article-content p    { margin-bottom: 18px; color: rgba(255,255,255,.78); }
.article-content a    { color: var(--orange); text-decoration: underline; text-decoration-color: rgba(255,153,0,.4); text-underline-offset: 3px; transition: text-decoration-color .15s; }
.article-content a:hover { text-decoration-color: var(--orange); }
.article-content ul,
.article-content ol   { padding-left: 22px; margin-bottom: 18px; }
.article-content li   { margin-bottom: 8px; color: rgba(255,255,255,.78); }
.article-content li::marker { color: var(--orange); }
.article-content strong { color: rgba(255,255,255,.95); font-weight: 700; }
.article-content em     { color: rgba(255,255,255,.70); }
.article-content hr     { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 36px 0; }
.article-content code {
    padding: 2px 6px;
    background: rgba(255,150,0,.15); border: 1px solid rgba(255,150,0,.25);
    border-radius: 4px; color: #FFAB33; font-size: .9em;
    font-family: 'Monaco','Courier New',monospace;
    word-break: break-all;
}
.article-content pre {
    padding: 16px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px; overflow-x: auto; margin: 16px 0;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}
.article-content pre code { padding: 0; background: transparent; border: none; color: #fff; word-break: normal; }
.article-content blockquote {
    border-left: 3px solid var(--orange);
    padding: 12px 20px;
    background: rgba(255,255,255,.06); border-radius: 0 8px 8px 0;
    margin: 20px 0; color: rgba(255,255,255,.78); font-style: italic;
}

/* FIX OVERFLOW TABEL ARTIKEL DI HP */
.article-content table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 14px;
}
.article-content th,
.article-content td { padding: 12px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.10); white-space: nowrap; }
.article-content th { background: rgba(255,150,0,.1); font-weight: 700; }
.article-content tr:hover { background: rgba(255,255,255,.06); }
.article-content img { border-radius: 18px; margin: 20px 0; box-shadow: 0 10px 26px rgba(0,0,0,.28); transition: .3s ease; max-width: 100%; height: auto; }
.article-content img:hover { transform: scale(1.02); }

.article-toc {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px; padding: 20px 24px; margin: 28px 0 36px;
    border-left: 3px solid var(--orange);
}
.article-toc-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.article-toc ol, .article-toc ul { padding-left: 20px; margin: 0; }
.article-toc li { margin-bottom: 8px; }
.article-toc a  { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.65); text-decoration: none; transition: color .15s; touch-action: manipulation; }
.article-toc a:hover { color: var(--orange); }

.article-share {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin: 32px 0;
}
.article-share-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45); margin-right: 4px; }
.article-share-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.75);
    font-size: 13px; font-weight: 700;
    text-decoration: none; cursor: pointer;
    transition: all .2s;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.article-share-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,153,0,.08); transform: translateY(-2px); }
.article-share-btn i { font-size: 14px; }

.back-link {
    display: inline-flex; align-items: center;
    color: rgba(255,255,255,.78); font-weight: 700; font-size: 14px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    transition: .3s ease;
    margin-bottom: 24px;
    text-decoration: none;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.back-link:hover { color: var(--orange); border-color: var(--orange); background: rgba(255,153,0,.08); transform: translateX(-3px); }

.page-hero { min-height: 40vh; padding: 160px 5% 60px; max-width: 1200px; margin: auto; }

/* =========================
   RELATED ARTICLES
   ========================= */
.article-related { margin-top: 52px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.08); }
.article-related-title {
    font-size: 22px; font-weight: 800; color: #fff;
    margin: 0 0 6px;
    display: flex; align-items: center; gap: 10px;
}
.article-related-title span { color: var(--orange); }
.article-related-title::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.07); }
.article-related-subtitle { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 600; margin: 0 0 24px; }

.article-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

a.article-related-card { text-decoration: none; }
.article-related-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: all .25s; cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.article-related-card:hover  { border-color: rgba(255,153,0,.3); background: rgba(255,255,255,.06); transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.35); text-decoration: none; }
.article-related-card:active { transform: scale(0.98); }
.article-related-thumb { height: 140px; overflow: hidden; background: #1a1a1a; flex-shrink: 0; }
.article-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.article-related-card:hover .article-related-thumb img { transform: scale(1.07); }
.article-related-body       { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.article-related-topic      { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--orange); }
.article-related-title-text { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.88); line-height: 1.4; flex: 1; }
.article-related-meta       { font-size: 11px; color: rgba(255,255,255,.35); font-weight: 600; display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }

.highlight-search {
    background-color: rgba(255, 153, 0, 0.4);
    color: #fff;
    border-radius: 4px;
    padding: 2px 4px;
    transition: background-color 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
}

/* =========================================
   ABOUT PAGE & FOUNDERS
   ========================================= */
.text-center { text-align: center; }

.gradient-text {
    background: linear-gradient(90deg, #fff, var(--orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-core-container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 50px; margin-bottom: 80px; }
.about-logo-wrapper { position: relative; width: 250px; height: 250px; display: flex; align-items: center; justify-content: center; }
.logo-glow-ring { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px dashed rgba(255, 153, 0, 0.4); box-shadow: 0 0 50px rgba(255, 153, 0, 0.2); animation: rotateRing 20s linear infinite; z-index: 0; }
.about-main-logo { width: 180px; height: auto; z-index: 1; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.about-logo-wrapper:hover .about-main-logo { transform: scale(1.1); }
@keyframes rotateRing { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.about-intro-text { flex: 1; min-width: 300px; max-width: 600px; }
.about-intro-text p { font-size: 18px; line-height: 1.8; color: #ddd; background: rgba(255, 255, 255, 0.03); padding: 25px; border-left: 4px solid var(--orange); border-radius: 0 16px 16px 0; }

.about-origin-section { margin-bottom: 100px; }
.origin-glass-card { background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(15,15,15,0.9)); border: 1px solid rgba(255, 153, 0, 0.2); border-radius: 24px; padding: 50px; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.origin-icon { position: absolute; top: -20px; right: -20px; font-size: 150px; color: rgba(255, 153, 0, 0.05); transform: rotate(-15deg); }
.origin-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; position: relative; z-index: 1; }
.origin-item { display: flex; align-items: flex-start; gap: 15px; }
.origin-bullet { width: 12px; height: 12px; margin-top: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 10px var(--orange); flex-shrink: 0; }
.origin-item p { color: #ccc; font-size: 16px; line-height: 1.7; }

.vision-mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-bottom: 100px; }
.vm-card { position: relative; padding: 40px; border-radius: 24px; overflow: hidden; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s ease; }
.vm-card:hover { transform: translateY(-10px); border-color: rgba(255, 153, 0, 0.5); box-shadow: 0 15px 40px rgba(255, 153, 0, 0.15); }
.vm-bg-icon { position: absolute; bottom: -30px; right: -20px; font-size: 120px; color: rgba(255,255,255,0.03); transition: 0.4s ease; }
.vm-card:hover .vm-bg-icon { color: rgba(255, 153, 0, 0.1); transform: scale(1.1); }
.vm-title { font-size: 28px; color: var(--orange); margin-bottom: 20px; position: relative; z-index: 1; }
.vm-desc { font-size: 20px; font-weight: 600; color: #fff; line-height: 1.6; position: relative; z-index: 1; }
.mission-list { list-style: none; position: relative; z-index: 1; }
.mission-list li { color: #ccc; font-size: 15px; line-height: 1.6; margin-bottom: 15px; padding-left: 25px; position: relative; }
.mission-list li::before { content: "▹"; position: absolute; left: 0; color: var(--orange); font-size: 18px; font-weight: bold; }

.values-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 100px; }
.value-pillar { background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 40px 30px; text-align: center; transition: 0.4s; position: relative; overflow: hidden; }
.value-pillar::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--orange); transition: 0.4s ease; }
.value-pillar:hover { background: rgba(30, 30, 30, 0.8); transform: translateY(-10px); }
.value-pillar:hover::before { width: 100%; }
.value-icon-box { width: 80px; height: 80px; margin: 0 auto 20px; background: rgba(255, 153, 0, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--orange); box-shadow: inset 0 0 20px rgba(255, 153, 0, 0.2); }
.value-pillar h4 { font-size: 22px; color: #fff; margin-bottom: 5px; }
.value-subtitle { display: block; font-size: 12px; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; font-weight: bold; }
.value-pillar p { font-size: 14px; color: #bbb; line-height: 1.6; }

.aps-founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 60px; }
.aps-founder-card { background: rgba(25, 25, 25, 0.9); border-top: 4px solid var(--orange); border-left: 1px solid rgba(255,255,255,0.05); border-right: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 30px 20px; border-radius: 8px; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px; }
.aps-founder-card:hover { background: rgba(35, 35, 35, 0.9); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.member-info { display: flex; flex-direction: column; gap: 5px; }
.aps-founder-name { font-size: 17px; color: #fff; font-weight: 700; line-height: 1.3; }
.aps-founder-role { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); font-weight: 700; }

.member-tier { margin-bottom: 60px; }
.tier-title { text-align: center; color: #888; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 35px; position: relative; }
.tier-title::after { content: ""; display: block; width: 40px; height: 2px; background: var(--orange); margin: 10px auto 0; }
.member-grid-1 { display: flex; justify-content: center; }
.member-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; justify-items: center; }
.member-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

.member-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 25px 20px; border-radius: 12px; text-align: center; width: 100%; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 15px; position: relative; }
.member-card:hover { background: rgba(255, 153, 0, 0.05); border-color: rgba(255, 153, 0, 0.3); transform: translateY(-3px); }
.member-info-center { display: flex; flex-direction: column; gap: 5px; }
.member-card h4 { font-size: 14px; color: #ddd; font-weight: 600; margin: 0; line-height: 1.4; }
.member-role-badge { display: inline-block; background: rgba(255, 153, 0, 0.15); color: var(--orange); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 20px; margin-top: 5px; }
.member-role-text { font-size: 12px; color: #999; font-weight: 500; }

.member-photo img, .member-photo-large img, .member-photo-medium img, .member-photo-small img, .aps-founder-card img, .member-card img {
    width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: opacity 0.4s ease;
}
.member-photo img.img-loaded, .member-photo-large img.img-loaded, .member-photo-medium img.img-loaded, .member-photo-small img.img-loaded { opacity: 1; }

.img-skeleton { position: absolute; inset: 0; background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%); background-size: 200% 100%; animation: pps-shimmer 1.5s infinite; border-radius: inherit; pointer-events: none; z-index: 1; }
@keyframes pps-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.lead-card { max-width: 320px; border-color: var(--orange); background: rgba(255, 153, 0, 0.05); box-shadow: 0 10px 30px rgba(255, 153, 0, 0.1); }
.lead-card h4 { font-size: 18px; color: #fff; font-weight: 800; }
.bod-card { max-width: 260px; border-color: rgba(255, 255, 255, 0.15); background: rgba(20, 20, 20, 0.8); }
.bod-card h4 { font-size: 15px; color: #eee; }
.staff-card { padding: 20px 15px; }

.badge-f, .badge-af { position: absolute; top: -8px; left: -8px; font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 6px; box-shadow: 0 2px 5px rgba(0,0,0,0.5); z-index: 2; }
.badge-f { background: var(--orange); color: #111; }
.badge-af { background: #444; color: #fff; border: 1px solid #666; }
.avatar-fallback { border-radius: 50%; overflow: hidden; }

/* ========================================================
   MEMPERBAIKI GAMBAR & CAPTION TINYMCE AGAR KE TENGAH
   ======================================================== */
.article-content figure, 
.article-content .img_caption {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px auto !important;
    max-width: 100%;
}

.article-content figure img, 
.article-content .img_caption img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
}

.article-content figure figcaption, 
.article-content .img_caption p.img_caption {
    text-align: center !important;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    line-height: 1.6;
    max-width: 85%;
}

/* ─────────────────────────────────────────────────────────────
   MOBILE RESPONSIVE ≤ 900px (GABUNGAN)
───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hamburger { display: block; }
    .nav-content { padding: 8px 20px; }

    .nav-links {
        position: absolute;
        top: 70px; left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 6px;
        border-radius: 0 0 20px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: 0.4s;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 16px;
        border-radius: 10px;
    }
    .nav-links a:active { background: rgba(255,153,0,0.08); }

    .hero { flex-direction: column-reverse; text-align: center; padding-top: 150px; }
    .hero-text { padding-right: 0; }
    .hero-img { display: none; }
    .hero-buttons { justify-content: center; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }

    .nav-search input { width: 0; padding: 10px 0; opacity: 0; border-color: transparent; }
    .nav-search input:focus { width: 150px; padding: 10px 15px; opacity: 1; border-color: rgba(255,255,255,.2); }
    .nav-search button { position: relative; right: auto; top: auto; transform: none; }

    .pps-footer-grid { grid-template-columns: 1fr; }
    .pps-footer-follow { align-items: flex-start; }
    .pps-footer-menu { grid-template-columns: 1fr 1fr; }

    .activity-row, .activity-row.reverse { flex-direction: column; gap: 30px; }
    .activity-text h3 { font-size: 26px; }

    #page-detail .section, .page-detail-section { padding-top: 110px; }
    .article-meta-bar   { gap: 10px 14px; }
    .article-stats-bar  { gap: 10px; }
    .article-stat-item  { padding: 12px 16px; min-width: 80px; }
    .article-stat-value { font-size: 18px; }
    .article-author-card { flex-direction: column; text-align: center; align-items: center; gap: 12px; }
    .article-author-info { display: flex; flex-direction: column; align-items: center; }
    .article-related-grid { grid-template-columns: 1fr; }
    .article-share      { gap: 8px; }
    .article-share-btn  { padding: 7px 12px; font-size: 12px; }
    .article-toc        { padding: 16px 18px; }
}

/* ─────────────────────────────────────────────────────────────
   MOBILE RESPONSIVE ≤ 620px (GABUNGAN)
───────────────────────────────────────────────────────────── */
@media (max-width: 620px) {
    .grid { grid-template-columns: 1fr; gap: 16px; }
    .back-to-top { bottom: 20px; right: 16px; }
    .toast { bottom: 70px; right: 16px; left: 16px; min-width: auto; max-width: none; }

    .section { padding: 60px 4%; }
    .section-head { flex-direction: column; align-items: stretch; }

    .newsletter { padding: 60px 16px; border-radius: 20px; margin: 40px 0; }
    .newsletter input  { width: 100%; }
    .newsletter form   { flex-direction: column; align-items: stretch; }
    .newsletter button { width: 100%; }

    .topic-dropdown-panel {
        position: fixed;
        top: auto; bottom: 0;
        left: 0; right: 0;
        width: 100%;
        border-radius: 24px 24px 0 0;
        transform-origin: bottom center;
        max-height: 90vh;
        overflow-y: auto;
        z-index: 5000;
        -webkit-overflow-scrolling: touch;
    }
    .topic-dropdown-panel.is-open { transform: scale(1) translateY(0); }
    .dropdown-topics { max-height: 45vh; }
    .topic-dropdown-btn { padding: 0 12px; font-size: 12px; height: 38px; }

    .pps-footer-cta { min-width: 100%; margin-right: 0; }

    #page-detail .section, .page-detail-section { padding-top: 95px; }
    .article-content     { font-size: 15px; }
    .article-content h2  { font-size: 21px; }
    .article-content h3  { font-size: 17px; }
    .article-stats-bar   { display: grid; grid-template-columns: 1fr 1fr; }
    .article-share-btn   { flex: 1 1 auto; justify-content: center; }
    .article-cover       { border-radius: 12px; }
    .article-author-card { flex-direction: column; text-align: center; align-items: center; }
    .article-author-info { display: flex; flex-direction: column; align-items: center; }
    .article-related-grid { grid-template-columns: 1fr; }
}