:root {
            --color-gold: #b059f7;
            --color-dark: #0e0e0e;
            --color-black: #000;
            --color-light-gold: #ffcc33;
            --color-white: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--color-black);
            color: #080707;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        /* --- HEADER & HERO SECTION STYLES --- */
        header {
            background-color: var(--color-dark);
            padding: 15px 5%;
            border-bottom: 2px solid var(--color-gold);
            text-align: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: 700;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--color-gold);
        }

        .hero {
            padding: 100px 5%;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://via.placeholder.com/1920x800.png?text=HERO+BACKGROUND+IMAGE') no-repeat center center/cover;
        }

        .hero h1 {
            font-size: 3em;
            color: var(--color-light-gold);
            text-shadow: 0 0 10px rgba(255, 181, 71, 0.5);
            margin-bottom: 20px;
        }

        .cta-button {
            background: linear-gradient(90deg, #b059f7, #d59000);
            color: var(--color-black);
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 900;
            font-size: 1.2em;
            box-shadow: 0 5px 20px rgba(255, 181, 71, 0.5);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 181, 71, 0.8);
        }
        
        /* --- KODE CSS WIDGET SAMPING (Side-Widget) DIBUAT GLOBAL --- */
        
        /* Hapus display: none; dari aturan ini dan aturan media query */
        .side-widget {
            display: block; /* Selalu tampil */
            position: fixed;
            left: -100px; /* Tersembunyi di awal */
            top: 55%;
            transform: translateY(-50%);
            z-index: 9999;
            transition: left 0.3s ease;
        }

        .side-widget.open {
            left: 0;
        }

        .widget-container {
            display: flex;
            align-items: center;
        }
        
        .widget-toggle {
            background: linear-gradient(180deg, #b059f7, #a86b00);
            color: #fff;
            border: none;
            padding: 12px 6px 20px 6px;
            cursor: pointer;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 0 25px rgba(255, 181, 71, 0.4), 0 0 10px rgba(0,0,0,0.6);
            transition: all 0.3s ease;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-weight: 900;
            font-size: 12px;
            letter-spacing: 1px;
            border: 3px solid #ffcc33;
            position: relative;
            animation: pulseGold 2s infinite;
        }

        @keyframes pulseGold {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 204, 51, 0.5); }
            50% { box-shadow: 0 0 35px rgba(255, 204, 51, 0.9); }
        }

        .widget-toggle:hover {
            background: linear-gradient(180deg, #ffd467, #d59000);
            box-shadow: 0 0 40px rgba(255, 204, 51, 0.8), 0 0 25px rgba(0,0,0,0.6);
            transform: scale(1.05);
        }

       .widget-toggle::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 18px;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='black'><path d='M8 5v14l11-7z'/></svg>");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            animation: pointLeft 1.2s infinite ease-in-out;
            filter: drop-shadow(0 0 3px rgba(0,0,0,0.6));
        }

        @keyframes pointLeft {
            0%, 100% { transform: translateX(-50%) translateX(0); }
            50% { transform: translateX(-50%) translateX(5px); }
        }

        .widget-content {
            background: linear-gradient(135deg, #0e0e0e 0%, #000 100%);
            width: 100px;
            padding: 0;
            box-shadow: 0 0 25px rgba(0,0,0,0.8);
            border-radius: 0 12px 12px 0;
            border: 2px solid #b059f7;
            overflow-y: auto;
            max-height: calc(100vh - 40px);
            scrollbar-width: thin;
            scrollbar-color: #b059f7 #111;
        }

        .widget-content::-webkit-scrollbar {
            width: 6px;
        }

        .widget-content::-webkit-scrollbar-thumb {
            background: #b059f7;
            border-radius: 10px;
        }

        .widget-content::-webkit-scrollbar-track {
            background: #111;
        }

        .widget-header {
            background: linear-gradient(90deg, #b059f7, #a86b00);
            padding: 10px;
            text-align: center;
            border-radius: 0 10px 0 0;
            border-bottom: 3px solid #6b4700;
        }

        .widget-header img {
            max-width: 70px;
            height: auto;
            filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
        }

        .widget-links {
            padding: 5px 4px;
        }

        .widget-link {
            display: block;
            background: rgba(255, 204, 51, 0.05);
            text-decoration: none;
            padding: 2px;
            margin-bottom: 4px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 204, 51, 0.2);
        }

        .widget-link img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 6px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.4);
        }

        .widget-link:hover {
            background: rgba(255, 204, 51, 0.15);
            border-color: #b059f7;
            transform: translateX(5px);
        }

        .widget-link:hover img {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 204, 51, 0.5);
        }

        .tooltip-fixed {
            position: fixed;
            background: linear-gradient(135deg, #b059f7 0%, #a86b00 100%);
            color: #fff;
            padding: 10px 18px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 13px;
            border: 2px solid #ffcc33;
            box-shadow: 0 0 25px rgba(255, 204, 51, 0.5);
            z-index: 99999;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tooltip-fixed.show {
            opacity: 1;
            animation: goldPulse 1.5s infinite ease-in-out;
        }

        .tooltip-fixed::before {
            content: '';
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid #b059f7;
        }

        @keyframes goldPulse {
            0%, 100% { box-shadow: 0 0 15px rgba(255, 204, 51, 0.6); }
            50% { box-shadow: 0 0 30px rgba(255, 204, 51, 1); }
        }