    @font-face {
        font-family: 'Myriad Pro';
        src: url('path/to/fonts/MyriadPro-Regular.woff2') format('woff2'),
        url('path/to/fonts/MyriadPro-Regular.woff') format('woff');
        font-weight: normal;
        font-style: normal;
    }

    .text-center {
        text-align: center;
    }

    .makefitparagraph {
        text-align: justify;
        padding-left: 20px;
        padding-right: 20px;
    }

    body {
        font-family: 'Myriad Pro', Arial, sans-serif;
        margin: 0;
        padding: 10px;
        padding-top: 80px;
        background-color: #f1f1f1;
        transition: background-color 0.3s, color 0.3s;
    }

    @media screen and (min-width: 769px) {
        body {
            padding: 20px;
            padding-top: 100px;
        }
    }

    body.night-mode {
        background-color: #333;
        color: #fff;
    }

    .navbar-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1001;
        background-color: #f1f1f1;
        padding: 16px 20px;
        box-sizing: border-box;
    }

    @media screen and (min-width: 769px) {
        .navbar-container {
            padding: 24px 40px;
        }
    }

    .night-mode .navbar-container {
        background-color: #333;
    }

    body.night-mode .links-container a:hover {
        color: lightpink;
    }

    .navbar {
        background-color: white;
        border-radius: 24px;
        box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
        display: flex;
        align-items: center;
        padding: 10px 15px;
        width: 100%;
        position: relative;
        justify-content: space-between;
    }

    .night-mode .navbar {
        background-color: #444;
        box-shadow: 0 1px 6px rgba(255, 255, 255, 0.1);
    }

    body.night-mode .links-container a {
        color: pink;
    }

    .links-container a:hover {
        text-decoration: underline;
    }

    .logo {
        margin-right: 0px;
        z-index: 1001;
        flex: 0 0 auto;
    }

    .logo img {
        height: auto;
        max-height: 36px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        image-rendering: -webkit-optimize-contrast;
    }

    .nav-menu {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex: 1;
        z-index: 1000;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 250px; /* Kasih ruang ekstra ke bawah di dalam kotak scroll biar sub-menu muat */
        margin-bottom: -250px; /* Tarik lagi konten di bawah navbar ke atas biar gak ada ruang kosong aneh */

        margin-left: 10px;
        margin-right: 10px;
        pointer-events: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-menu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        height: 40px;
        /*
        START DARI LOGO
        justify-content: flex-start; */
        /*
        KETENGAH
        justify-content: center;
        width: 100%;
        */

        justify-content: center;
        width: 100%;
        white-space: nowrap;
        pointer-events: auto;
    }

    .nav-menu ul li.dropdown-right .dropdown-content {
        left: auto; /* Membatalkan aturan left: 0 yang sebelumnya */
        right: 0;   /* Memaksa dropdown rata kanan dengan parent-nya */
    }

    .nav-menu li {
        position: relative;
    }

    .dropdown {
        position: relative;
        cursor: pointer;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        min-width: 160px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 8px 0;
        z-index: 1002;
        margin-top: 5px;
    }

    .night-mode .dropdown-content {
        background-color: #444;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 12px 24px;
        display: block;
        white-space: nowrap;
        color: #5f6368;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
    }

    .night-mode .dropdown-content a {
        color: #e0e0e0;
    }

    .dropdown-content a:hover {
        background-color: #f1f3f4;
        color: #202124;
    }

    .night-mode .dropdown-content a:hover {
        background-color: #555;
        color: #fff;
    }

    .dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 5px;
        display: inline-block;
        transition: transform 0.3s;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg);
    }

    @media screen and (max-width: 768px) {
        .dropdown-content {
            position: static;
            box-shadow: none;
            background-color: transparent;
            padding: 0;
            margin-top: 0;
            display: none;
        }

        .dropdown.active .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            padding: 10px 40px;
        }
    }

    .nav-menu a {
        color: #5f6368;
        text-decoration: none;
        font-size: 14px;
        padding: 12px 18px;
        border-radius: 24px;
        transition: background-color 0.3s, color 0.3s;
    }

    .night-mode .nav-menu a {
        color: #e0e0e0;
    }

    .nav-menu a:hover {
        background-color: #f1f3f4;
        color: #202124;
    }

    .night-mode .nav-menu a:hover {
        background-color: #555;
        color: #fff;
    }

    .nav-menu a.active {
        color: #202124;
        font-weight: bold;
    }

    .night-mode .nav-menu a.active {
        color: #fff;
    }

    .nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background-color: black;
        border-radius: 1.5px;
    }

    .night-mode .nav-menu a.active::after {
        background-color: white;
    }

    .night-mode-toggle {
        background: none;
        border: none;
        color: #5f6368;
        font-size: 18px;
        cursor: pointer;
        margin-left: 15px;
    }

    .night-mode .night-mode-toggle {
        color: #e0e0e0;
    }

    .hamburger {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #5f6368;
        padding: 10px;
        margin-left: auto;
        z-index: 1001;
    }

    .night-mode .hamburger {
        color: #e0e0e0;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .overlay.active {
        display: block;
    }
    h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    @media screen and (max-width: 768px) {
        h1 {
            font-size: 1.5rem;
        }
    }

    .strikethrough {
        text-decoration: line-through;
    }

    .blink-cursor {
        border-right: 2px solid currentColor;
        animation: blink 0.7s infinite;
    }

    .stop-blinking {
        animation: none;
        border-right: none;
    }

    @keyframes blink {
        50% { border-color: transparent; }
    }

    @media screen and (min-width: 1025px) {
        .nav-menu-mobile {
            display: none;
        }
    }

    @media screen and (max-width: 1024px) {
        .dropdown.active .dropdown-content {
            display: block !important;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        .nav-menu-desktop {
            display: none;
        }

        .hamburger {
            display: block;
        }

        .nav-menu-mobile {
            position: fixed;
            left: -100%;
            transform: none;
            top: 100px;
            width: 80%;
            max-width: 300px;
            height: calc(100dvh - 100px);
            background-color: white;
            margin-left: 0;
            transition: 0.3s;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            padding-top: 0;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .nav-scroll-indicator {
            display: none;
        }

        .night-mode .nav-menu-mobile {
            background-color: #444;
        }

        .nav-menu-mobile.active {
            left: 0;
        }

        .nav-menu-mobile ul {
            flex-direction: column;
            height: auto;
            width: 100%;
            padding: 20px 0;
        }

        .nav-menu-mobile li {
            width: 100%;
            margin: 10px 0;
        }

        .nav-menu-mobile a {
            display: block;
            padding: 15px 30px;
            width: 100%;
            box-sizing: border-box;
        }

        .dropdown-content {
            position: static;
            box-shadow: none;
            background-color: transparent;
            padding-left: 20px;
        }

        .dropdown-content a {
            padding: 10px 40px;
        }

        .nav-menu-mobile a.active::after {
            display: none;
        }

        .logo.centered-on-mobile {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            display: flex;
            justify-content: center;
        }

        .logo.centered-on-mobile img {
            max-width: 200px;
        }
    }

    .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

    @media (min-width: 768px) {
        .bd-placeholder-img-lg {
            font-size: 3.5rem;
        }
    }

    .container-fluid {
        position: relative;
        /* Allow text to be on top of the background */
        z-index: 1;
    }

    /* Default style for anchor tags with href */
    .hyperlink {
        text-decoration: none;
        transition: color 0.3s;
    }

    /* Dark mode adjustments for anchor tags with href */
    .body.night-mode hyperlink {
        color: lightpink !important; /* Apply lightpink color for dark mode */
    }

    /* Optional: Dark mode hover effect */
    .body.night-mode hyperlink:hover {
        color: #ff1493; /* A darker pink for hover */
    }

    /* --- LAYOUT LOCKER GLOBAL --- */
    .unsupported-screen-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: #f1f1f1 !important;
        z-index: 2147483647 !important; /* Z-index tertinggi di browser */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        overflow: hidden !important;
    }

    body.night-mode .unsupported-screen-overlay {
        background-color: #1a1a1a !important;
        color: #ffffff !important;
    }

    .unsupported-message-box {
        width: 100% !important;
        max-width: 280px !important;
        box-sizing: border-box !important;
    }

    .unsupported-message-box h2 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
        color: #e74c3c !important;
    }

    .unsupported-message-box p {
        font-size: 11px !important;
        line-height: 1.4 !important;
        color: #555555 !important;
        margin: 0 !important;
    }

    body.night-mode .unsupported-message-box p {
        color: #cccccc !important;
    }

    /* --- FOOTER --- */
    .site-footer {
        text-align: center;
        padding: 30px 20px;
        font-size: 0.9rem;
        opacity: 0.9;
        margin-top: 60px;
    }

    .site-footer a {
        color: inherit;
        text-decoration: none;
        font-weight: 500;
    }

    .site-footer a:hover {
        text-decoration: underline;
    }

    .night-mode .site-footer {
        border-color: rgba(255, 255, 255, 0.05);
    }

    .site-footer p {
        margin: 0;
        opacity: 0.8;
    }

    /* --- SOSMED --- */

    .footer-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    /* Styling Tombol / Link Icon */
    .footer-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: #f1f3f4;
        color: #3c4043;
        font-size: 1rem;
        text-decoration: none !important;
        transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }

    /* Efek saat kursor diarahkan ke icon */
    .footer-socials a:hover {
        background-color: #007bff;
        color: #fff;
        transform: translateY(-3px);
    }

    /* Night Mode untuk Icon Sosial Media */
    .night-mode .footer-socials a {
        background-color: #2d2d2d;
        color: #e0e0e0;
    }

    .night-mode .footer-socials a:hover {
        background-color: #58a6ff;
        color: #0d1117;
    }

    .site-footer a:not(.footer-socials a) {
        color: inherit;
        text-decoration: none;
        font-weight: 500;
    }

    .site-footer a:not(.footer-socials a):hover {
        text-decoration: underline;
    }
