.unlock_1_screen {
    max-width: 400px;
    margin: auto;
    padding: 0px 17px 10px 17px;
}
.button_img_container {
    position: relative;
    min-height: 150px;
    max-width: 400px;
    width: auto;
}
.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 70px;
    height: 40px;
    padding: 9px 10px;
    border-radius: 12px;
    text-align: center;
    border: 0px;
    background-color: #ff0000;
    cursor: pointer;
    box-shadow: 0 0 30px #ff00004d;
}
i.fa-solid.fa-play{
    font-size: 22px;
    color: white;
}
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #555;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 0.6s linear infinite;
    display: inline-block;
    margin-left: -4px;
    margin-top: -1px;
    vertical-align: middle;
}
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.unlock_1_screen img {
    border-radius: 12px;
}

.unlock_1_container {
    /* background-color: #121026; */
    border-radius: 10px;
}

.unlock_1_container h2 {
    font-size: 20px;
    color: white;
}

.unlock_1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 8px 0;
}

.content_id {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 75px;
}

.content_copy_id {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 150px;
    border: 1px solid #262626;
    background-color: transparent;
}

p#content {
    font-size: 12px;
    color: #fafafa;
}

.unlock_1_rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin-bottom: 10px;
}

i.fa-solid.fa-star {
    color: gold;
}

.rating {
    font-size: 12px;
}

.highlight_rating_text {
    font-size: 14px !important;
}

.i.fa-solid.fa-circle-exclamation {
    font-size: 14px;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.buttons button ,.buttons a {
    background-color: #25224a;
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 35px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.info_box_title {
    margin-bottom: 4px;
    font-size: 14px;
}

.info-box {
    background-color: #1e1b3d;
    padding: 16px;
    border-radius: 7px;
    font-size: 12px;
    margin-bottom: 10px;
}
.long-text-title{
    font-size: 14px;
    line-height: 20px;
    color: white;
}
.long-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 20px;
    color: white;
}

.long-text.expanded {
    -webkit-line-clamp: unset;
}

.toggle-btn {
    background: none;
    border: none;
    color: #ffffff;
    margin-top: 0px;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}

.ad {
    text-align: center;
    font-size: 12px;
    color: gray;
    margin: 10px 0;
}



.unlock-box {
    display: flex;
    border-radius: 10px;
    /* padding: 8px; */
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.step-box {
    background-color: #25224a;
    color: white;
    border-radius: 6px;
    padding: 8px;
    font-size: 12px;
    width: 40%;
    text-align: center;
    border-bottom: 4px solid #fcd975;
}

.step-count {
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-count img {
    width: 20px;
}

.chevron {
    color: #aaa;
    font-size: 12px;
    margin-left: 4px;
}

.step-text {
    font-size: 10px;
    color: #ccc;
    margin-top: 2px;
}

.unlock-btn {
    background-color: #3e5de9;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 17px 31px;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
    border-bottom: 4px solid #fcd975;
    width: 100%;
}

/* ********************************** Dialog css *********************************** */
/* Dialog */
/* Dialog Overlay */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 78, 0.4);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Dialog Box */
.dialog-box {
    background: rgba(57, 57, 96, 1);
    padding: 25px;
    border-radius: 12px;
    width: 285px;
    text-align: center;
    box-shadow: 0px 4px 64px 0px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(150, 150, 192, 0.2);
    position: relative;
    color: #fff;
}

.share_bottom_line {
    border-bottom: 1px solid rgba(247, 247, 249, 0.12);
    margin: 13px 0 13px 0;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 23px;
    right: 23px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    background-color: rgba(247, 247, 249, 0.12);
    padding: 6px 10px;
    border-radius: 50%;
}

/* Input Field */
.dialog-box input {
    width: 100%;
    padding: 0px;
    margin: 0px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Dialog Overlay */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 78, 0.4);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Dialog Box */
/* .dialog-box {
    background: #2c296f;
    padding: 20px;
    border-radius: 16px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #fff;
} */

/* Dialog Header */
.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-header h3 {
    font-size: 17px;
    margin-top: 3px;
    font-weight: 500;
    line-height: 24px;
}

.close-btn {
    font-size: 17px;
    cursor: pointer;
    color: #fff;
}

i.fa-solid.fa-thumbs-up,
i.fa-solid.fa-thumbs-down {
    font-size: 19px;
    color: #FFFFFF;
}

/* Share Text */
.share-text,
.copy-text {
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: rgba(150, 150, 192, 1);
}

/* Share Icons */
.share-icons {
    display: flex;
    justify-content: start;
    gap: 12px;
    margin: 10px 0;
}

.share-icons a {
    overflow: hidden;
    border-radius: 50%;
    background: rgba(247, 247, 249, 0.08);
    padding: 8px 9px;
    display: flex;
}

/* Copy Link */
.copy-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(57, 57, 96, 1);
    border: 1px solid rgba(150, 150, 192, 0.2);
    padding: 8px;
    border-radius: 8px;
    margin-top: 10px;
    backdrop-filter: blur(16px)
}

.copy-link input {
    background: transparent;
    border: none;
    color: rgba(150, 150, 192, 1);
    width: 70%;
    font-size: 14px;
    outline: none;
    padding-left: 5px;
}

.copy-btn {
    background: linear-gradient(115.59deg, #792FFF 2.77%, #A832FB 98.06%);
    color: #fff;
    border: none;
    padding: 8px 15px !important;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* .copy-btn:hover {
    background: #a832fb;
} */

/* Open Dialog */
.share-btn {
    padding: 10px 20px;
    background: #792fff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.share-btn:hover {
    background: linear-gradient(115.59deg, #792FFF 2.77%, #A832FB 98.06%);
}

.videos_hight {
    /* height: calc(100vh - 63px); */
}

.copy-btn {
    transition: background-color 0.3s ease;
}

.copy-btn:active {
    background: green;
}


/* ********************************** popup css *********************************** */
/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 20, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup_content_unlock_1 {
    position: absolute;
    bottom: 0%;
    background: #20213f;
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #414481;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: -webkit-fill-available;
    min-height: 225px;
    justify-content: flex-end;
    gap: 5px;
    max-width: 345px;
}

.popup-circle {
    text-align: center;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #4411a1, #7C3CE8);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    line-height: 80px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    border: 7px solid #20213f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    z-index: 999;
}




#pageProcessingBtn {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #3e5de9;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: not-allowed;
    z-index: 1010;
}

#pageProcessingBtn .btn-text {
    z-index: 1;
    transform: translate(-50%, -50%);
}

span.btn-text {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    text-wrap-mode: nowrap;
}

#pageProcessingBtn .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    background: #00882b;
    width: 0%;
    z-index: 0;
    transition: width 5s linear;
}









/* .popup-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #20213f;
    z-index: -7;
} */

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #414481;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.popup-content h3 {
    margin-top: 40px;
    font-size: 16px;
}

.popup-content p {
    font-size: 12px;
    color: #bbb;
    margin: 10px 0 20px;
}

.popup-action-btn {
    background-color: #3e5de9;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 14px 20px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    border-bottom: 5px solid #fcd975;
    width: 100%;
    margin: 25px 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.popup_title {
    font-size: 16px;

}

.popup_subtext {
    font-size: 14px;
    color: #6c77c1;
    text-align: center;
}




/* -------dixita */

/* #progressFill {
    height: 100%;
    width: 0%;
    background-color: #8e44ad;
    transition: width 5s linear;
} */
#accessButton {
    margin-top: 20px;
}

.progress-button {
    position: relative;
    overflow: hidden;
    background-color: #3e53bb;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 18px 32px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    border-bottom: 4px solid #fcd975;
}

.progress-button span {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.progress-fill-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: rgb(230, 227, 227);
    opacity: 0.2;
    z-index: 1;
    transition: width 0.1s ease-in-out;
}

.additionalContentBox {
    max-width: 375px;
    margin: -10px 0px 0px 0px;
    line-height: 23px;
}

.additionalContentBox h3 {
    font-size: 20px;
    margin-bottom: 11px;
}

.additionalContentBox ul li {
    list-style-type: disc;
    font-size: 16px;
    margin: 0px 0px 8px 20px;
}
.additionalContentBox ul li:last-child {
    margin: 0px 0px 0px 20px;
}

#unlockProgressFill {
    width: 0%;
    height: 100%;
    background-color: rgb(230, 227, 227);
    transition: width 1s linear;
}

#thankYouPopup {
    animation: fadeIn 0.4s ease;
}



.popup-overlay-random {
    display: none;
    /* initially hidden */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.popup_random {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at top left, #2a2159, #1f1c3a);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(92, 124, 250, 0.3);
    border: 1px solid rgba(92, 124, 250, 0.4);
    text-align: center;
    width: 90%;
    max-width: 280px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    animation: popupFade 0.5s ease-out;
    z-index: 999;
}

.popup-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #d4d4ff;
}

.popup-button {
    background: linear-gradient(135deg, #5c7cfa, #4c6ef5);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(76, 110, 245, 0.3);
    transition: all 0.3s ease;
}

.popup-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(76, 110, 245, 0.4);
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* ******************************** Contact us  **************************** */
.contact_unlock_title {
    font-size: 25px;
    text-align: center;
    margin-top: 20px;
}
.contact_unlock_subtext {
    text-align: center;
    font-size: 14px;
    max-width: 330px;
    margin: 0 auto;
}

.contact_unlock_background {
    background-color: #0f172a;
    border-radius: 5px 5px 5px 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.contact_box_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    gap: 10px;
}
.contact_box_info h4 {
    font-size: 20px;
    margin-top: 10px;
}
.contact_box_info a{
    font-size: 14px;
}
.contact_box_info img{
    width: 200px;
}