    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
        --primary: #1E69B8;
        --gold: #FFD166;
        --dark: #0B0E1A;
        --dark-2: #12172B;
        --glass: rgba(255,255,255,0.05);
        --border: rgba(255,255,255,0.08);
        --text: rgba(255,255,255,0.75);
        --text-dim: rgba(255,255,255,0.45);
        --gradient: linear-gradient(135deg, #1e68b89c 0%, #1E69B8 100%);
        --transition: all 0.38s cubic-bezier(0.23,1,0.32,1);
    }
    body { font-family: 'Poppins', sans-serif; background: var(--dark); color: #fff; line-height: 1.7; }
    a { text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* PAGE HERO */
    .gm-page-hero { background: linear-gradient(135deg, #0B0E1A 0%, #12172B 60%, #1a2040 100%); padding: 70px 0 60px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
    .gm-page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(30,105,184,0.12) 0%, transparent 65%); }
    .gm-page-hero-inner { max-width: 1260px; margin: 0 auto; padding: 0 32px; position: relative; }
    .gm-breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; flex-wrap: wrap; }
    .gm-breadcrumb a { color: var(--primary); }
    .gm-breadcrumb i { font-size: 10px; }
    .gm-page-title { font-size: clamp(24px, 3.5vw, 44px); font-weight: 800; color: #fff; letter-spacing: -0.5px; max-width: 860px; line-height: 1.25; }

    .gm-wrap { max-width: 1260px; margin: 0 auto; padding: 0 32px; }
    .gm-section { padding: 80px 0; }

    /* LAYOUT */
    .gm-detail-layout {
        display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start;
    }
    @media (max-width: 960px) { .gm-detail-layout { grid-template-columns: 1fr; } }

    /* ARTICLE */
    .gm-article-card {
        background: var(--dark-2); border: 1px solid var(--border);
        border-radius: 24px; overflow: hidden;
    }
    .gm-article-hero { width: 100%; height: 420px; object-fit: cover; }
    @media (max-width: 600px) { .gm-article-hero { height: 240px; } }
    .gm-article-body { padding: 44px; }
    @media (max-width: 600px) { .gm-article-body { padding: 24px; } }

    .gm-article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
    .gm-article-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-dim); }
    .gm-article-meta-item i { color: var(--primary); font-size: 12px; }

    .gm-article-title { font-size: clamp(22px,3vw,34px); font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 28px; }
    .gm-article-divider { width: 60px; height: 4px; background: var(--gradient); border-radius: 4px; margin-bottom: 28px; }

    .gm-article-content { font-size: 15px; color: var(--text); line-height: 1.95; }
    .gm-article-content p { margin-bottom: 20px; }
    .gm-article-content strong { color: #fff; }

    /* SHARE */
    .gm-article-share { display: flex; align-items: center; gap: 12px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
    .gm-article-share-label { font-size: 13px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
    .gm-share-btn {
        display: flex; align-items: center; gap: 8px; padding: 9px 18px;
        border-radius: 100px; font-size: 12px; font-weight: 700; color: #fff;
        transition: var(--transition); letter-spacing: 0.5px;
    }
    .gm-share-btn.wa { background: #25D366; }
    .gm-share-btn.wa:hover { background: #1da851; transform: translateY(-2px); }
    .gm-share-btn.fb { background: #1877F2; }
    .gm-share-btn.fb:hover { background: #1260c4; transform: translateY(-2px); }

    /* BACK LINK */
    .gm-back-link {
        display: inline-flex; align-items: center; gap: 8px;
        color: var(--primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
        margin-top: 32px; transition: var(--transition);
    }
    .gm-back-link:hover { color: var(--gold); }

    /* SIDEBAR */
    .gm-sidebar { display: flex; flex-direction: column; gap: 24px; }
    .gm-sidebar-card {
        background: var(--dark-2); border: 1px solid var(--border);
        border-radius: 20px; padding: 28px; overflow: hidden;
    }
    .gm-sidebar-title {
        font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase;
        letter-spacing: 2px; margin-bottom: 22px; padding-bottom: 14px;
        border-bottom: 1px solid var(--border); position: relative;
    }
    .gm-sidebar-title::after {
        content: ''; position: absolute; bottom: -1px; left: 0;
        width: 32px; height: 3px; background: var(--gradient); border-radius: 4px;
    }

    /* LATEST POSTS */
    .gm-latest-posts { display: flex; flex-direction: column; gap: 0; }
    .gm-latest-post {
        display: flex; gap: 14px; align-items: flex-start;
        padding: 14px 0; border-bottom: 1px solid var(--border);
        transition: var(--transition);
    }
    .gm-latest-post:last-child { border-bottom: none; padding-bottom: 0; }
    .gm-latest-post:first-child { padding-top: 0; }
    .gm-latest-thumb {
        width: 70px; height: 70px; border-radius: 10px; flex-shrink: 0;
        overflow: hidden; border: 1px solid var(--border);
    }
    .gm-latest-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .gm-latest-post:hover .gm-latest-thumb img { transform: scale(1.08); }
    .gm-latest-info { flex: 1; min-width: 0; }
    .gm-latest-post-title {
        font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.45;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        transition: var(--transition);
    }
    .gm-latest-post:hover .gm-latest-post-title { color: #fff; }
    .gm-latest-date { font-size: 11px; color: var(--text-dim); margin-top: 5px; }

    /* CTA CARD */
    .gm-cta-sidebar {
        background: var(--gradient); border-radius: 20px;
        padding: 32px 24px; text-align: center;
    }
    .gm-cta-sidebar-icon { font-size: 36px; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
    .gm-cta-sidebar h5 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
    .gm-cta-sidebar p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 20px; line-height: 1.65; }
    .gm-cta-sidebar a {
        display: inline-flex; align-items: center; gap: 8px;
        background: #fff; color: var(--primary); font-size: 12px; font-weight: 800;
        letter-spacing: 1px; text-transform: uppercase; padding: 12px 24px;
        border-radius: 100px; transition: var(--transition);
    }
    .gm-cta-sidebar a:hover { background: var(--dark); color: #fff; }