.wheel-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.wheel-box {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    width: 300px;
    position: relative;
    z-index: 10001;
}

#wheel {
    width: 200px;
    height: 200px;
    border: 5px solid #333;
    border-radius: 50%;
    line-height: 200px;
    font-size: 30px;
    margin: auto;
}

#spinBtn {
    margin-top: 10px;
    padding: 10px 20px;
}

#closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10002;
    background: red;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 18px;
}
/* VIDEO POPUP */
.video-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.video-content {
    width: 95%;
    max-width: 900px;
    height: auto;
    background: #000;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.video-content video {
    width: 100%;
    height: 500px; /* keep this */
    object-fit: cover;
    border-radius: 8px;
    /* Prevent right-click menu */
    pointer-events: auto;
}

#closeVideo {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 99999; /* add this */
}
.share-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.share-icons a {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #333;
    transition: 0.3s;
}

#wheelContainer {
    position: relative;
    width: 250px;
    margin: auto;
}

#spinWheel {
    border-radius: 50%;
}

.pointer {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid red;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.share-icons a:hover {
    transform: scale(1.1);
}

/* Colors */
#waShare { background: #25D366; color: #000; }
#fbShare { background: #1877F2; color: #000; }
#ttShare { background: #000; color: #000; }

