body {
    background-color: #0b0116;
    color: #e0d5ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: none; /* Kita akan pakai kursor kustom */
}

.glow-text {
    text-shadow: 0 0 10px #bc13fe, 0 0 20px #bc13fe;
    font-size: 3rem;
    margin-top: 50px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.container {
    display: flex;
    gap: 20px;
    padding: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.magic-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(188, 19, 254, 0.3);
    padding: 20px;
    width: 250px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.magic-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #bc13fe;
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.5);
}

.cast-btn {
    background: transparent;
    border: 2px solid #bc13fe;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.cast-btn:hover {
    background: #bc13fe;
    box-shadow: 0 0 15px #bc13fe;
}

/* Kursor Ajaib */
.magic-cursor {
    width: 20px;
    height: 20px;
    background: #bc13fe;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    box-shadow: 0 0 20px #bc13fe, 0 0 40px #bc13fe;
    z-index: 9999;
    transform: translate(-50%, -50%);
}