.simulasi-card {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.05); /* Tambahan border tipis agar lebih rapi */
}

.active-sim:hover {
	transform: translateY(-12px);
	box-shadow: 0 15px 35px rgba(13, 110, 253, 0.12) !important;
	border-color: rgba(13, 110, 253, 0.2);
}

.icon-box {
	font-size: 45px;
	display: inline-block;
	animation: float-sim 3s infinite ease-in-out;
}

@keyframes float-sim {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Overlay gelap */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Box tengah */
.hacker-box {
    color: white;
    width: 300px;
}

/* Glitch effect */
.glitch {
    position: relative;
    font-weight: bold;
    animation: glitch 0.8s infinite;
}

@keyframes glitch {
    0% { text-shadow: 2px 2px red; }
    25% { text-shadow: -2px -2px blue; }
    50% { text-shadow: 2px -2px red; }
    75% { text-shadow: -2px 2px blue; }
    100% { text-shadow: 2px 2px red; }
}

/* Animasi aman */
.safe-box {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tombol hover effect */
.btn-primary:hover {
	background-color: #0b5ed7;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}
