

        :root{
            --bg:#0b1220;
            --panel:#0f1724;
            --accent:#3ce0c3;
            --accent-2:#7c5cff;
            --muted:#b6c0d6;
            --box:#121826;
        }

        *{box-sizing:border-box}
        html,body{height:100%}
        body{
            margin:0;
            font-family: "Press Start 2P", monospace;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 60%),
                radial-gradient(circle at 10% 10%, rgba(124,92,255,0.06), transparent 10%),
                var(--bg);
            color:var(--muted);
            -webkit-font-smoothing: none;
            image-rendering: pixelated;
            padding:32px;
            display:flex;
            align-items:center;
            justify-content:center;
        }

        .container{
            width:100%;
            max-width:1100px;
            background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.03));
            border:6px solid #071022;
            padding:28px;
            border-radius:10px;
            box-shadow: 0 16px 40px rgba(2,6,23,0.7);
        }

        header{
            text-align:center;
            margin-bottom:22px;
        }
        header h1{
            margin:0 0 6px 0;
            font-size:18px;
            letter-spacing:1px;
            color:var(--accent);
            text-shadow: 0 0 6px rgba(60,224,195,0.2);
        }
        header p{ margin:0; font-size:10px; color:#93a0c0; }

        .grid{
            display:grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap:18px;
        }

        .box{
            background: linear-gradient(180deg, #0b1320 0%, #0f1625 100%);
            border:6px solid #071022;
            border-radius:6px;
            padding:18px;
            height:160px;
            display:flex;
            flex-direction:column;
            align-items:center;
            justify-content:center;
            cursor:pointer;
            user-select:none;
            position:relative;
            transition: transform .12s ease, box-shadow .12s ease;
            box-shadow:
                0 6px 0 rgba(0,0,0,0.6),
                inset 0 1px 0 rgba(255,255,255,0.02);
        }
        .box.pixel-outline{
            outline: 4px solid transparent;
            box-shadow:
                0 6px 0 rgba(0,0,0,0.6),
                0 0 0 3px rgba(0,0,0,0.45),
                4px 4px 0 0 rgba(0,0,0,0.22);
        }
        .box:active{ transform:translateY(3px) scale(.997); box-shadow: 0 3px 0 rgba(0,0,0,0.6) }
        .box:focus{
            outline: none;
            box-shadow: 0 28px 40px rgba(0,0,0,0.6), 0 0 18px rgba(60,224,195,0.06);
        }

        .icon{
            width:72px;
            height:72px;
            margin-bottom:12px;
            background-image:
                linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(0,0,0,0.08) 25%, transparent 25%);
            background-size: 12px 12px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:30px;
            color:var(--accent-2);
            filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6));
            border-radius:6px;
            border:3px solid rgba(255,255,255,0.02);
            image-rendering: pixelated;
        }
        .title{ font-size:10px;text-transform:uppercase;letter-spacing:1px;color:var(--muted);text-align:center }
        .subtitle{ font-size:9px;color:#9fb1d6;margin-top:6px;opacity:.9 }

        .box:hover{
            transform:translateY(-6px) scale(1.02);
            box-shadow:
                0 20px 30px rgba(0,0,0,0.6),
                0 0 18px rgba(124,92,255,0.08),
                inset 0 0 18px rgba(124,92,255,0.03);
        }
        .box::after{
            content:"";
            position:absolute;
            right:8px;
            top:8px;
            width:10px;
            height:10px;
            background: linear-gradient(180deg,var(--accent),var(--accent-2));
            border-radius:2px;
            box-shadow: 2px 2px 0 rgba(0,0,0,0.6);
            transform:translateZ(0);
        }

        footer{ margin-top:14px; text-align:center; font-size:9px; color:#8ea0c6 }

        @media (max-width:420px){
            .box{height:140px; padding:12px}
            .icon{width:62px;height:62px;font-size:26px}
            header h1{font-size:13px}
        }

        /* Popup modal Saweria */
        .modal{
            display:none;
            position:fixed;
            inset:0;
            background:rgba(0,0,0,0.8);
            justify-content:center;
            align-items:center;
            z-index:999;
        }
        .modal-content{
            background:#0f1724;
            padding:20px;
            border:4px solid var(--accent);
            border-radius:8px;
            text-align:center;
        }
        .modal-content img{
            max-width:300px;
            image-rendering:pixelated;
        }
        .close{
            margin-top:12px;
            display:inline-block;
            padding:6px 10px;
            background:var(--accent-2);
            color:white;
            cursor:pointer;
            font-size:10px;
        }

        /* grid HP kecil -> 2 kolom fix */
        @media (max-width: 768px){
            .grid{
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        #passwordModal .modal-content h3 {
    color: var(--accent);
    text-shadow: 2px 2px 0 #000;
}

#passwordModal .modal-content input {
    background: #0b1220;
    border: none;
    color: var(--accent);
    font-size: 10px;
    image-rendering: pixelated;
    outline: none;
    width: 80%;
    padding: 6px;
    margin-top: 10px;
    caret-color: var(--accent);
    box-shadow: 
        -2px -2px 0 2px var(--panel),
        -4px -4px 0 4px #071022,
        2px 2px 0 2px var(--panel),
        4px 4px 0 4px #071022;
}

#passwordModal .modal-content button {
    font-family: 'Press Start 2P', monospace;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
    box-shadow: 
        2px 2px 0 0 #000, 
        inset 0 0 0 2px var(--accent-2);
}

#passwordModal .modal-content #pwSubmit {
    background: var(--accent-2);
    color: #fff;
}

#passwordModal .modal-content #pwCancel {
    background: #555;
    color: #fff;
}

#passwordModal .modal-content button:hover {
    filter: brightness(1.2);
}

#passwordModal .modal-content button:active {
    transform: translate(2px, 2px);
    box-shadow: 
        1px 1px 0 0 #000, 
        inset 0 0 0 2px var(--accent-2);
}
 