body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at center, #1a2a3a 0%, #050a0f 100%);
    font-family: "Hind Siliguri", sans-serif;

}

/* Tooltip wrapper */
.copy-wrapper {
    position: relative;
    display: inline-block;
}

/* Tooltip text style */
.copy-tooltip {
    visibility: hidden;
    width: 60px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 3px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /* Icon er upore show korbe */
    left: 50%;
    margin-left: -30px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

/* Tooltip er nicher chotto arrow */
.copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Show hole opacity barbe */
.show-tooltip .copy-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Custom Modal Styling */
.custom-modal-bg {
    background: rgba(18, 18, 18, 0.95);
    /* Dark background like the screenshot */
    border: 2px solid #00d2ff;
    /* Neon blue border */
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
    /* Premium Glow effect */
    position: relative;
    overflow: hidden;
}

/* Glassmorphism effect for modal */
.custom-modal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.modal-title-custom {
    color: #00d2ff;
    /* Sky blue title */
    font-weight: 800;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.modal-text-custom {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
}

/* Modal Buttons Styling */
.btn-modal {
    padding: 10px 35px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    min-width: 140px;
    transition: 0.3s;
    color: white;
}

.btn-yes {
    background: linear-gradient(145deg, #28a745, #1e7e34);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-no {
    background: linear-gradient(145deg, #dc3545, #a71d2a);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.btn-modal:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Modal Backdrop Blur (Optional: Makes background blurry when popup opens) */
.modal-backdrop.show {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.8);
}


.title-top {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.sub-title {
    color: #ffcc00;
    /* Yellow color */
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 15px;
}

.bengali-text {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: -3px;
    font-family: "Hind Siliguri", sans-serif !important;
    font-weight: 700;
}

.amount-text {
    color: #ffcc00;
    font-size: 1.5rem;
    font-family: "Hind Siliguri", sans-serif !important;
    font-weight: 700;
}

/* Button Styling */
.claim-btn {
    background: linear-gradient(to bottom, #ffd700, #ff8c00);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 1rem;
    color: #000;
    width: 100%;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-link {
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

/* Timer Section */
.timer-box {
    border: 2px solid #3dcc3d;
    border-radius: 15px;
    padding: 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.4rem;
    background: rgba(0, 0, 0, 0.4);
    /* Outer and Inner Glow for the box */
    box-shadow: 0 0 10px rgba(61, 204, 61, 0.3), inset 0 0 10px rgba(61, 204, 61, 0.2);
}

.time-unit {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.timer-divider {
    color: #aaa;
}

.green-num {
    color: #a2ff00;
    text-shadow: 0 0 8px rgba(162, 255, 0, 0.8), 0 0 15px rgba(162, 255, 0, 0.5);
}

.purple-num {
    color: #e066ff;
    text-shadow: 0 0 8px rgba(224, 102, 255, 0.8), 0 0 15px rgba(224, 102, 255, 0.5);
}

.yellow-num {
    color: #ffff00;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.8), 0 0 15px rgba(255, 255, 0, 0.5);
}

.entry-count {
    color: #ffcc00;
    font-size: 1.1rem;
    font-weight: bold;
}

.pink-text {
    color: #ff3399;
}

/* Step Section Design */
.step-container {
    border: 1px solid #1a5a8a;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    margin-top: 15px;
    overflow: hidden;
    display: flex;
}

.step-box {
    position: relative;
    flex: 1;
    padding: 12px 5px;
    border-right: 1px solid rgba(0, 150, 255, 0.3);
}

.step-box::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid rgba(0, 150, 255, 0.5);
    /* Glowing blue arrow */
    z-index: 10;
}

.step-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.step-1-color {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 15px rgba(255, 255, 255, 0.4);
}

.step-2-color,
.step-3-color {
    color: #ccff00;
    /* Neon yellow-green */
    text-shadow: 0 0 10px rgba(204, 255, 0, 0.8), 0 0 20px rgba(204, 255, 0, 0.5);
}

.step-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.8rem;
    color: #ddd;
}

/* Proof Section Design */
.proof-card {
    border: 1px solid #1a5a8a;
    border-radius: 15px;
    background: rgba(0, 5, 15, 0.8);


    box-shadow: inset 0 0 15px rgba(0, 150, 255, 0.2);
}

.proof-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.yellow-highlight {
    color: #ffcc00;
}

.result-row {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 8px;
    padding: 10px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-text {
    color: #eee;
    font-weight: 500;
}

.win-text {
    color: #55ff55;
    font-weight: bold;
}

.loss-text {
    color: #ff4444;
    font-weight: bold;
}

.status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.win-icon {
    background: #55ff55;
    color: #000;
}

.loss-icon {
    background: #ff4444;
    color: #fff;
}

/* Eibare apnar deya tin number image-er section-ti design kore dicchi. Eta holo stats (Total Members & Won) ebong ekta premium badge section. Ei code-tuku ager code-er proof-card er thik niche boshate hobe. Updated HTML & CSS Code HTML <style> */

/* Stats Section */
.stats-container {
    border: 1px solid #333;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    margin-top: 20px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.stat-row:first-child {
    border-bottom: 1px solid #222;
    margin-bottom: 5px;
}

.stat-value {
    font-weight: bold;
    font-size: 1.4rem;
}

.yellow-text {
    color: #ffcc00;
}

.green-text {
    color: #55ff55;
}

.stat-label {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.divider-line {
    color: #444;
    margin: 0 10px;
}

/* Badge Section */
.badge-container {
    border: 1px solid #444;
    border-radius: 50px;
    background: linear-gradient(90deg, #001529 0%, #000 100%);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Glow effect for badge border */
.badge-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    box-shadow: inset 0 0 10px rgba(0, 150, 255, 0.3);
    pointer-events: none;
}

.badge-icon-circle {
    background: #ccff00;
    /* Neon yellow-green */
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 15px;
    border: 2px solid #fff;
}

.badge-text {
    text-align: left;
    line-height: 1.2;
}

.badge-text-top {
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
}

.badge-text-bottom {
    color: #ffcc00;
    font-size: 0.85rem;
}

/* Final Claim Button Styling */
.final-claim-btn {
    background: linear-gradient(90deg, #0a2e4e 0%, #1a5a8a 100%);
    border: 1px solid #0096ff;
    border-radius: 50px;
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.watch-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    box-shadow: 0px 0px 20px 0px #ff0000;
    transition: 0.3s;
}

.watch-btn .icon {
    background: #fff;
    color: #ff0000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.watch-btn:hover {
    background: #cc0000;
    color: #fff;
    box-shadow: none;
}

.watch-btn:hover .icon {
    background: #fff;
    color: #000;
    box-shadow: none;
}

/* Review Box Adjustment */
.review-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 150, 255, 0.15);
    border-radius: 12px;
}

.review-short-text {
    color: #ffcc00;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

/* Screenshot Display */
.screenshot-wrapper {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #1a5a8a;
    /* Blue glowing border */
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
}

.screenshot-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Jate screenshot pura dekha jay */
    max-height: 400px;
    /* Mobile e jeno screen er baire na jay */
}

/* Arrow controls adjustment */
.small-icon {
    width: 25px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

/* Custom Close Button Styling */
.btn-close-custom {
    background: linear-gradient(180deg, #ff4444 0%, #cc0000 100%);
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-close-custom:hover {
    background: linear-gradient(180deg, #ff6666 0%, #ff0000 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.btn-close-custom:active {
    transform: translateY(0);
}

/* Modal Content Adjustment */
.modal-content {
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.3);
}

/* Modal text shadow */
#modalText {
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

