:root {
    --bg-color: #070a12;
    --neon-green: #00ffcc;
    --neon-glow: rgba(0, 255, 204, 0.4);
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Canvas Background untuk Partikel */
#bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Container utama di atas canvas */
.secure-container {
    position: relative;
    z-index: 2;
    text-align: center;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Badge Status Floating */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border: 1px solid var(--neon-green);
    border-radius: 50px;
    background: rgba(0, 255, 204, 0.05);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2), inset 0 0 10px rgba(0, 255, 204, 0.1);
    animation: float 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-badge:hover {
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.6), inset 0 0 15px rgba(0, 255, 204, 0.3);
    transform: scale(1.05);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
    animation: pulse 1.5s infinite alternate;
}

.badge-text {
    color: var(--neon-green);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Title Keep Secure */
.title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-glow), 0 0 40px rgba(0, 255, 204, 0.2);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-top: 5px;
    cursor: pointer;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Pulse Dot Animation */
@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Spotlight Kursor Mouse */
.cursor-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

@media (max-width: 600px) {
    .title {
        font-size: 3rem;
    }
    .status-badge {
        padding: 6px 18px;
    }
}