.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 {
    position: relative;
}

/* CLOSE BUTTON FIX */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    border: none;
    font-size: 22px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: #cc0000;
}


.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;
	background: rgb(28, 90, 35);
    color: white;
}

#closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10002;
    color: #000;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 18px;
}

.wheel-heading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 22px; /* 🔥 bigger */
    white-space: nowrap;
    color: rgb(28, 90, 35)
}

/* TOP */

/* VIDEO POPUP */

.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;
    margin-top: 70px;
}

#spinWheel {
    border-radius: 50%;
}

.pointer {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid red;
    position: absolute;
    top: 0; /* 🔥 fix */
    left: 50%;
    transform: translate(-50%, -50%); /* 🔥 perfect alignment */
    z-index: 10;
}

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* MAIN BOX */
.video-content {
    width: 100%;
    max-width: 420px; /* 🔥 mobile friendly */
    margin: auto;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    background: #111;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

/* VIDEO */
.video-content video {
    
    width: 100%;
    height: auto;
    max-height: 80vh; /* 🔥 full screen feel */
    object-fit: contain;
    border-radius: 10px;
}

/* CLOSE BUTTON */
#closeVideo {
    position: absolute;
    top: 10px;
    right: 15px;
    background: red;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
}





/* COMMENT BOX */
.comment-box {
    margin-top: 15px;
    background: #000; /* 🔥 black */
    color: #fff;
    padding: 12px;
    border-radius: 10px;
}

/* TITLE */
.comment-box h3 {
    margin-bottom: 8px;
    text-align: center;
}

/* TEXTAREA */
.comment-box textarea {
    width: 100%;
    height: 20px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
}

/* BUTTON */
.comment-box button {
    margin-top: 8px;
    width: 100%;
    padding: 8px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* COMMENTS LIST */
#commentList {
    margin-top: 10px;
    max-height: 150px;
    overflow-y: auto;
}

/* SINGLE COMMENT */
.comment-item {
    background: #000;   /* 🔥 black */
    color: #fff;        /* 🔥 white text */
    padding: 8px;
    margin-top: 6px;
    border-radius: 6px;
    border-left: 3px solid #FFC605;
}

.comment-user {
    font-weight: bold;
    font-size: 12px;
    color: #fff; /* light grey */
}

.comment-text {
    font-size: 13px;
	color: #fff;
}

#commentList {
    margin-bottom: 10px;
}

#shareBtn {
    width: 100%;
    padding: 12px;
    background: rgb(28, 90, 35);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}


/* Colors */
#waShare { background: #25D366; color: #fff; }
#fbShare { background: #1877F2; color: #fff; }
#ttShare { background: #000; color: #fff; }

