html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
    cursor: none;
}

/* CURSOR */
.custom-cursor {
    position: fixed;
    width: 48px;
    height: 48px;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.custom-cursor.is-hover {
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.9)) drop-shadow(0 0 14px rgba(0, 255, 255, 0.6));
}

/* BACKGROUND */
.video-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -2;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* LAYOUT */
.content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* BUTTON BASE */
.links a,
.sound-toggle,
#spinBtn {
    padding: 10px 18px;
    border: 1px solid #fff;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

/* hover shared */
.links a:hover,
.sound-toggle:hover,
#spinBtn:hover {
    background: #fff;
    color: #000;
}

/* LINKS */
.links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0;
    padding: 0;
}

/* SLOT MACHINE */
.slot-machine {
    margin-top: 50px;
    padding: 20px;
    width: 360px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    border: 2px solid #fff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
}

.slot-machine h2,
.slot-machine p {
    margin: 10px 0;
}

.reels {
    flex-direction: row;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 20px 0;
}

.reel {
    width: 80px;
    height: 80px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 48px;

    border: 2px solid #fff;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

/* animation */
.spin {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {

    0%,
    100% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }
}