    .m-design__subtitles {
        font-size: 20px;
        font-weight: 600;
        margin: 48px 0 20px;
        text-align: center;
        color: #ffffff;
    }

    .m-search__related-results {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .vc-pill {
        display: inline-block;
        padding: 8px 20px;
        background: #1a1a1a;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 40px;
        text-decoration: none;
        font-size: 13px;
        color: #ffffff;
        transition: all 0.2s;
    }

    .vc-pill:hover {
        background: #ffffff;
        color: #0a0a0a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(253,4,4,0.25);
    }

    .text-note {
        text-align: center;
        font-size: 11px;
        color: #888;
        margin-bottom: 40px;
    }

    /* ==================== EXTERNAL LINKS ==================== */
    .external-links {
        text-align: center;
        margin: 48px 0;
        padding: 24px;
        background: #1a1a1a;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .external-links p {
        font-weight: 600;
        margin-bottom: 16px;
        color: #ffffff;
    }

    .link-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .external-links a {
        color: #e0e0e0;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.2s;
    }

    .external-links a:hover {
        color: #ffffff;
    }

    /* ==================== FOOTER ==================== */
    .footer {
        background: #1a1a1a;
        text-align: center;
        padding: 48px 20px 32px;
        margin-top: 48px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer a {
        color: #e0e0e0;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.2s;
    }

    .footer a:hover {
        color: #ffffff;
    }

    .footer p {
        margin-top: 24px;
        color: #888;
        font-size: 12px;
    }

    /* ==================== FIXED FOOTER ==================== */
    .togel-fixed-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-around;
        background: #1a1a1a;
        padding: 10px 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 99;
    }

    .togel-fixed-footer a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        gap: 4px;
        transition: all 0.2s;
    }

    .togel-fixed-footer img {
        width: 22px;
        height: 22px;
        filter: brightness(0) invert(1);
    }

    .togel-fixed-footer span {
        font-size: 10px;
        color: #e0e0e0;
    }

    .togel-fixed-footer a:hover {
        transform: translateY(-2px);
    }

    .togel-fixed-footer a:hover span {
        color: #ffffff;
    }

    /* ==================== SNOW EFFECT ==================== */
    .snow-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
        overflow: hidden;
    }

    .snowflake {
        position: absolute;
        top: -50px;
        color: white;
        font-size: 20px;
        user-select: none;
        pointer-events: none;
        opacity: 0.8;
        animation: fall linear infinite;
    }

    @keyframes fall {
        0% {
            top: -50px;
            transform: translateX(0);
        }
        100% {
            top: 100vh;
            transform: translateX(30px);
        }
    }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 768px) {
        .header-content {
            flex-direction: column;
            text-align: center;
        }
        
        .hero {
            flex-direction: column;
            text-align: center;
            padding: 32px 0;
        }
        
        .hero-text h1 {
            font-size: 28px;
        }
        
        .two-columns {
            grid-template-columns: 1fr;
        }
        
        .btn-group {
            justify-content: center;
        }
        
        .main-title {
            font-size: 22px;
        }
        
        .testimoni-section h2,
        .artikel-section h2 {
            font-size: 22px;
        }
        
        .section-title {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 16px;
        }
        
        .hero-text h1 {
            font-size: 24px;
        }
        
        .testimoni-grid {
            grid-template-columns: 1fr;
        }
        
        .nav-links {
            justify-content: center;
            gap: 16px;
        }
        
        .nav-links a {
            font-size: 12px;
        }
    }
    /* ==================== EXTERNAL LINKS CENTERED ==================== */
    .external-links {
        text-align: center;
        margin: 48px auto;
        padding: 24px;
        background: #1a1a1a;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.1);
        max-width: 600px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .external-links p {
        font-weight: 600;
        margin-bottom: 16px;
        color: #ffffff;
        text-align: center;
    }
    
    .link-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }
    
    .external-links a {
        color: #e0e0e0;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.2s;
        display: inline-block;
    }
    
    .external-links a:hover {
        color: #ffffff;
        transform: translateY(-2px);
    }