:root{
    --secondary-color: #1F1D2B;
    --primary-color: #262535;
    --text-gray: #B1BBBB;
    --text-light:#D4AF37;
    --gold-gradient:linear-gradient(to right, #D4AF37, #F2D06B);
    --gold-text:#996515;
}

body{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.container{
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.content{
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 55px;
}

.header{
    background-color: var(--primary-color);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header > a{
    width: 25%;
    text-decoration: none;
    color: white;
}

.slider{
    width: 100%;
    height: fit-content;
    max-height: 25vh;
    overflow: hidden;
}

.slider > img{
    width: 100%;
}

.announcement{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem;
    color: white;
    font-weight: 100;
    font-size: 14px;
    background-color: var(--secondary-color);
}

.announcement-content {
    position: relative; /* Sesuaikan dengan tinggi elemen span */
    overflow: hidden;
    height: 5vh;
    width: 100%;
}

.announcement-content span {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 40px;
    opacity: 0;
    transition: transform 0.5s ease-in-out;
    transform: translateY(100%);
}

.announcement-content span.active {
    opacity: 1;
    transform: translateY(0);
}

.ruang-tugas{
    padding-top: 0;
    padding: 1rem;
    background-color: var(--secondary-color);
    border-radius: 15px;
}

.toady-income{
    background-color: var(--primary-color);
    padding: 1rem;
    width: 100%;
}

.total-income{
    background-color: var(--primary-color);
    padding: 1rem;
    width: 100%;
}


.box-pendapatan{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}


.menu-1{
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: .3rem;
    padding-top: 0.3rem;
    text-align: center;
}

.menu-1 > a{
    text-decoration: none;
    color: white;
    text-align: center;
    background-color: var(--secondary-color);
    padding: 5px 5px;
    width: 33.33%;
    font-size: 13px;
}

.task-list{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.task-item{
    flex: 1;
    min-width: 10rem;
    width: 100%;
    text-decoration: none;
    padding: 15px;
    color: white;
    align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    height: 8rem;
    position: relative;
}

.task-item .task-info{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: gray;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    font-size: 14px;
}

.task-price{
    background-color: red;
    padding: 5px 10px;
    position: absolute;
    font-size: 14px;
    font-weight: 600;
}

a.task-item:hover .task-price{
    transform: scale(1.05);
    transition: transform 0.5s ease-in-out;
    background-color: white;
    color: red;
}

.box-member{
    height: 320px;
    overflow: hidden;
    position: relative;
}

.list-member{
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 10px;
    color: white;
    margin-bottom: 3px;
}

.list-member-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 1s ease-in-out;
}

.img-member{
    width: 40px;
    height: 40px;
    background-color: white;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.info-member span{
    display: block;
    font-size: 14px;
    width: 150px;
    color: #ababab;
}

.info-member small{
    font-size: 12px;
    color: #c2c2c2;
}

.amount{
    width: calc(100% - 200px);
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    color: orange;
}

.menu-bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 799px;
    background-color: var(--secondary-color);
    padding: 10px;
    display: flex;
}

.menu-bottom a{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 2px;
    font-size: 12px;
}

.menu-bottom a.a-active{
    color:var(--text-light);
}

.header2{
    padding: 10px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    background-color: var(--primary-color);
    max-width: 799px;
    z-index: 1000;
    font-size: 14px;
}

.header2 > a{
    width: 25%;
    text-decoration: none;
}

.header2 > span{
    text-align: center;
    color: white;
    font-size: 1rem;
    width: 50%;
}

.h-40{
    height: 40px;
}

.box-input{
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    font-size: 1rem;
    gap: 1rem;
    align-items: center;
}

.box-input span{
    width: 25%;
}

.box-input select{
    width: 75%;
    border: none;
    outline: none;
    background-color: white;
    color: black;
    border-bottom: 1px solid rgba(235, 235, 235, 0.194);
    padding: 5px;
}

.box-input input{
    width: 75%;
    border: none;
    outline: none;
    background-color: white;
    color: black;
    border-bottom: 1px solid rgba(235, 235, 235, 0.194);
    padding: 5px;
    text-align: right;
}

.box-radio{
    background-color: #F0F0F0;
    padding: 10px;
    border-radius: 10px;
    font-size: 1rem;
}

.box-title{
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(235, 235, 235, 0.194);
}

.box-radio-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
    margin-top: .6rem;
}

.box-radio-item label{
    flex: 1;
    min-width: 30%;
    border: 1px solid rgb(172, 172, 172);
    padding: 7px 5px;
    border-radius: 10px;
    text-align: center;
    color: rgb(172, 172, 172);
}

.box-radio-item label.active{
    background-color: white;
    color: red;
    border: 1px solid red;
}

.box-radio-item label input{
    display: none;
}

.btn-basic{
    width: 100%;
    padding: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 100px;
    background-color: transparent;
}

.btn-login{
    color: var(--gold-text);
    background: var(--gold-gradient);
}

.btn-other{
    color: white;
    background-color: transparent;
    border: 1px solid white;
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #333;
}
.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: var(--text-gray);
    font-size: 12px;
}

.linear-red{
    background: linear-gradient(to right, #fc1a1a, #992305);
}

.payment-select{
    background-color: #262535;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding:5px 10px;
    border-radius: 15px;
    color: #AABBBB;
    text-decoration: none;
    margin-bottom: 15px;
}

.info-payment span{
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.info-payment small{
    font-size: 12px;
    color: #b0b0b0;
}

.box-input2{
    padding: 10px;
    border-radius: 10px;
    display: flex;
    font-size: 1rem;
    gap: 1rem;
    align-items: center;
}

.box-input2 input{
    width: 75%;
    border: none;
    outline: none;
    color: black;
    padding: 5px;
    text-align: left;
    background-color: transparent;
}

.radio-group{
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 75%;
    color: gray;
}
.radio-group input{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #ccc;
}

.list-depo{
    background-color: rgba(0, 0, 0, 0.514);
    padding: 10px;
    margin-bottom: 10px;
}

.ctn-custom{
    background-image: linear-gradient(to bottom, #8d18a4 30%, var(--primary-color));
    color: white;
}

.ticket-top{
    background-color: #1f1d2c;
    padding: 15px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 1px dashed #333;
}
.ticket-bottom{
    border-top: 1px dashed #333;
    background-color: #1f1d2c;
    padding: 15px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.qr{
    margin: 0 auto;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    display: inline-block;
}

#btnCopy{
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: rgb(193, 193, 193);
    font-size: 18px;
    justify-content: center;
    margin-top: 10px;
}

#toast{
    position: fixed;
    bottom: 20vh;
    background-color: rgb(41, 41, 41);
    color: white;
    left: 50%;
    transform: translateX(-50%);
    padding:5px 10px;
    display: none;
    transition: transform 0.5s ease-in-out;
}

.box-product{
    background-color: #262535;
    padding: 15px;
    border-radius: 15px;
    font-size: 14px;
}

.box-product > span{
    display: block;
    font-size: 16px;
    color: white;
}

.round-bar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.round-bar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #0098a3 calc(var(--percentage) * 1%),
        #e9f7ef calc(var(--percentage) * 1%)
    );
}

.round-bar::after {
    content: '';
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 50%;
    background-color: #333243;
}

.round-bar span {
    z-index: 1;
    font-weight: bold;
}

.list-product{
    border: 1px solid rgb(153, 153, 153);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    margin-top: 10px;
    text-decoration: none;
    background-color: #333243;
    color: white;
}

.info-product{
    width: calc(100% - 130px);
}

.btn-product{
    margin-top: 10px;
    display: block;
    background-color: #0098a3;
    color: white;
    padding:5px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12px;
    width: fit-content;
    margin-left: auto;
}

.box-member2{
    height: 312px;
    overflow: hidden;
}

#pengenalan{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1F1D2B;
    padding: 15px;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    color: white;
}

.header-pengenalan{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.content-pengenalan{
    margin-top: 10px;
    font-size: 16px;
}

.bottom-info{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 550px;
    background-color: white;
    padding: 25px;
}

.container-spin{
    background-image: url('../image/box_bg.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.box-spin{
    width: 280px;
    height: 280px;
}

.lucky-draw{
    width: 245px;
    height: 245px;
    background-color: red;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

#vanKiat{
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.596);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    display: none;
}

.popup{
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.696);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    display: none;
}

.popup.show {
    display: flex;
}

.content-popup{
    width: 70%;
    max-width: 300px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 15px;
}

.header-popup{
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 0;
}

.body-popup{
    font-size: 14px;
    color: #6e6e6e;
    padding: 15px;
    font-weight: 400;
}

.footer-popup{
    font-size: 16px;
    display: flex;
    align-items: center;
}

.btn-cancel, .btn-confirm{
    flex: 1;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 0;
}

.btn-confirm{
    color: red;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero{
    background-image: url('../image/dana-kekayaan.png');
    background-size: cover;
    background-position: center;
    padding: 10vw;
    height: 20vh;
}

.dana-balance{
    padding: 15px;
    margin-top: -6vh;
}

.hero > span{
    margin-top: 1.5rem;
    display: block;
    font-size: 2rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.box-spin img {
    animation: spin 8s linear infinite;
}

.list-catatan{
    background-color: #333333d2;
    padding: 10px;
    border-radius: 10px;
    color: rgb(190, 190, 190);
}

.menu-tugas{
    margin-top: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(190, 190, 190);
}

.menu-tugas a{
    flex: 1;
    text-align: center;
    color: rgb(170, 170, 170);
    text-decoration: none;
    font-weight: 600;
    padding:10px 0;
}

a.active2{
    color: gold;
    border-bottom: 2px solid gold;
}

.info-task{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-task > div{
    text-align: center;
    width: 25%;
    padding: 15px;
}

.box-tugas{
    background-color: var(--secondary-color);
    padding: 15px;
    margin-top: 10px;
    border-radius: 15px;
}

#audit,#lengkap,#ditolak{
    padding: 15px;
}

.list-audit{
    display: flex;
    margin-bottom: 10px;
}

.img-audit{
    width: 120px;
    min-width: 90px;
    background-color: white;
    background-size: cover;
    background-position: center;
}

.info-audit{
    width: calc(100% - 120px);
    background-color: white;
    font-size: 14px;
}

.title-audit{
    display: flex;
    justify-content: space-between;
    background-color: red;
    padding: 3px;
    color: white;
}

.info-vip{
    background-image: url('../image/background-vip.png');
    background-size: cover;
    background-position:center;
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-size: 15px;
    z-index: 1000;
    position: relative;
}

.list-vip:nth-child(1){
    background-image: url('../image/0.png');
}

.list-vip:nth-child(2){
    background-image: url('../image/1.png');
}

.list-vip:nth-child(3){
    background-image: url('../image/2.png');
}

.list-vip:nth-child(4){
    background-image: url('../image/3.png');
}

.list-vip:nth-child(5){
    background-image: url('../image/4.png');
}

.list-vip:nth-child(6){
    background-image: url('../image/5.png');
}

.list-vip:nth-child(7){
    background-image: url('../image/6.png');
}

.list-vip:nth-child(8){
    background-image: url('../image/7.png');
}

.list-vip:nth-child(9){
    background-image: url('../image/8.png');
}

.list-vip:nth-child(10){
    background-image: url('../image/9.png');
}

.list-vip{
    background-size: 100%;
    background-position: center;
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    font-size: 15px;
    color: white;
}

.task-badge{
    background: var(--gold-gradient);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--gold-text);
}

.text-gold{
    color: #FFD700;
}

.text-dark-gold{
    color: #997615;
}

.bg-orange{
    background-color: #ef4731;
    border: 3px solid #f7705e;
}

.wrap-sa{
    background-color: rgba(0, 0, 0, 0.366);
    border-radius: 20px;
    padding-top: .8rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.info-sa{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-sa > div{
    flex: 1;
    min-width: 30%;
    padding:0 5px;
    text-align: center;
    color: white;
}

.menu-saya-wrapper{
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.441);
    border-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.menu-saya{
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.menu-saya a{
    display: block;
    width: calc(25% - 5px);
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.menu-saya a img{
    width: 25px;
    height: 25px;
}

.menu-saya span{
    display: block;
    margin-top: 5px;
}

#logoutForm{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--primary-color);
    max-width: 799px;
}

#logoutForm button{
    width: 100%;
    padding: 10px;
    background-image: linear-gradient(to right,#333243 20%,#2b2a38 80%);
    color: rgb(227, 151, 20);
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
}

#vanImage{
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 799px;
    height: 100vh;
    background-color: #151D31;
    z-index: 10000;
    transform: translateY(+100%);
    transition: transform 0.5s ease-in-out;
}

#vanSandiMasuk{
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 799px;
    height: 100vh;
    background-color: #151D31;
    z-index: 10000;
    transform: translateY(+100%);
    transition: transform 0.5s ease-in-out;
}

#vanSandiMasuk input, #vanSandiWD input{
    color: black;
}

#vanSandiWD{
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 799px;
    height: 100vh;
    background-color: #151D31;
    z-index: 10000;
    transform: translateY(+100%);
    transition: transform 0.5s ease-in-out;
}

.van-content{
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 799px;
}

.header-van{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    padding:8px 15px;
}

.header-van span{
    width: calc(100% - 20px);
    text-align: center;
    color: white;
    font-size: 15px;
}

.choose-pic{
    display: flex;
    flex-wrap: wrap;
    background-color: white;
}

.img-choose{
    width: 20%;
    height: 80px;
    border: 1px solid rgb(0, 0, 0);
    text-align: center;
    padding: 10px 0;
}

.box-input3{
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 16px;
}

.box-input3 input{
    width: 75%;
    border: none;
    outline: none;
    color: white;
    padding: 5px;
    text-align: right;
    background-color: transparent;
}


#day-picker{
    width: 100%;
    height: 100px;
}

.list-bank{
    margin-top: 15px;
    background-image: linear-gradient(45deg,#252525,#535353,#252525,#535353);
    padding: 25px;
}

.addBank{
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 799px;
    padding: 10px;
}

.addBank a{
    display: block;
    background: var(--gold-gradient);
    color: var(--gold-text);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--gold-text);
    text-decoration: none;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    /* border-radius: 40px; */
    font-weight: 600;
}

.daily-info{
    background-color:#333243;
}

.menu-select a{
    padding: 10px;
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
}

.aktifkan{
    color: rgb(243, 17, 17) !important;
    border-bottom: 2px solid rgb(243, 17, 17);
}

.menu-bar{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.menu-bar a{
    text-decoration: none;
    color: rgb(177, 177, 177);
    padding: 10px;
    font-size: 14px;
}

.menu-bar > a.active {
    color: #3E92B6;
    position: relative;
}

.menu-bar > a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    border-bottom: 2px solid #3E92B6;
}

#demo{
    height: 280px;
}

.login-form{
    padding: 15px;
    margin-top: 10px;
}

.form-group-custom{
    display: flex;
    align-items: center;
    gap: .6rem;
    background-color: transparent;
    padding:3px 8px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}

.form-group-custom input{
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    background-color: transparent;
    color: var(--text-gray);
}

.form-group-custom input:focus,
.form-group-custom input:active,
.form-group-custom input:-webkit-autofill {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    color: var(--text-gray) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-check{
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 15px;
}

.form-check label{    margin-top: 2px;
    margin-bottom: 0;
    color: #777777;
    font-size: 12px;
}

.form-check input[type="checkbox"]{
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #ccc;
}

.tugas{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.item-tugas{
    flex: 1;
    width: 150px;
    min-width: 150px;
    max-width: 400px;
    background-color: #ccc;
    border: 1px solid black;
}

.image-tugas{
    width: 100%;
    height: 300px;
    background-color: #ccc;
}

.image-footer{
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.performance-card{
    background: linear-gradient(135deg, #FF8C00, #FFA500, #FF4500);
    padding: 15px;
    border-radius: 15px;
}

.performance-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.performance-text .one{
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.performance-text .two{
    margin-top: 15px;
    font-size: 14px;
}

.performance-text h3{
    color: white;
    font-size: 40px;
    font-weight: 600;
}

.performance-desc{
    margin-top: 7px;
    font-size: 14px;
    color: black;
    font-weight: 600;
}

.reward-list{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.reward-item{
    flex: 1;
    width: 150px;
    min-width: 150px;
    max-width: 400px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
}

.reward-image{
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Rasio aspek 1:1 */
    position: relative;
    overflow: hidden;
}

.reward-image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reward-desc{
    background: linear-gradient(135deg, #FF8C00, #FFA500, #FF4500);
    padding: 10px;
}

.reward-desc h3{
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.reward-desc > span{
    color: black;
    font-weight: 600;
}

.reward-progress{
    width: 100%;
    height: 10px;
    background-color: #ccc;
    border-radius: 15px;
    margin-top: 15px;
}

.progress-bar{
    background-color: var(--secondary-color);
    height: 100%;
    border-radius: 15px;
}

.progress-info{
    font-size: 11px;
    color: black;
}

.btn-reward{
    display: block;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 4px;
    border-radius: 3px;
    font-size: 12px;
    margin-top: 15px;
}

.item-claimed{
    background: linear-gradient(135deg, #FF8C00, #FFA500, #FF4500);
    padding: 10px;
    border-radius: 8px;
}

.bg-black-transparent{
    background-color: #262536;
}

.bg-secondary2{
    background-color: #F0F0F0;
}

.rekor-undian{
    text-decoration: none;
    color: white;
    font-size: 12px;
    border: 1px solid white;
    padding: 3px 10px;
    border-radius: 10px;
}

.text-light-green{
    color: var(--text-light);
}   

.box-content{
    background-color: #333333d2;
    padding: 10px;
    padding-top: 20px;
    border-radius: 10px;
    color: rgb(190, 190, 190);
    margin-top: -10px;
}

.ctn-invite{
    background: var(--gold-gradient);
}

.content-invite-page{
    background-image: url('../image/bg-invite.png');
    background-size: cover;
    background-position: center;
    padding: 10px;
    border-radius:30px;
    height: 500px;
    margin-top: 5rem;
}

.text-news-roman{
    font-family: 'Times New Roman', Times, serif;
}

.text-copy1{
    display: flex;
    align-items: center;
}

.text-copy1 span{
    font-size: 2rem;
    font-weight: 600;
    color: #77DFD5;
    width: calc(100% - 25px);
    word-break: break-all;
    padding-right: 10px;
}

.text-copy1 a{
    font-size: 12px;
    color: white;
    text-decoration: none;
    width: 25px;
}

.bg-me{
    background-image: url('../image/bg-me.jpg');
    background-size: cover;
    background-position: center;
}

.bg-blue{
    background: var(--gold-gradient);
    color: var(--gold-text);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.bg-transparent{
    background-color: transparent !important;
}

.info-personal{
    padding: 0;
    margin-top: 45px;
    font-family: 'Times New Roman', Times, serif;
}

.info-personal a{
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: .5px solid #15141d;
}

.info-personal a > span{
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.text-gold{
    color: #FFD700;
}

.btn-close{
    color: white !important;
}

.btn-purple{
    background-color: #6F6FC8;
    color: white;
    font-size: 15px;
}

.btn-gold{
    background: var(--gold-gradient);
    color: var(--gold-text);
    font-size: 15px;
}

.bg-semi-black{
    background-color: #1F1D2B;
}

.rounded-4{
    border-radius: 15px;
}

.content-read{
    background-color: #1F1D2B;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow: auto;
    scrollbar-width: none;
}

iframe::-webkit-scrollbar {
    display: none;
}

.header-read{
    background-color: #777777;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    min-height: 150px;
    padding: 10px;
    color: white;
}

.time-remain{
    font-size: 18px;
    font-weight: 600;
    background-color: #1F1D2B;
    padding: 10px;
    border-radius: 10px;
    color: white;
}

.text-remain{
    font-size: .8rem;
}

@media screen and (max-width: 568px) {
    #inviteLink{
        font-size: 18px;
    }

    .bar-progress{
        width: 100%;
    }
}