:root {
    --primary-color: #3d3d3d;
    --secondary-color: #007d86;
}

body {
    font-family: Arial, Helvetica, 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-image: url('../image/background.jpg');
    background-size: cover;
    background-position: center;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 55px;
}

.header {
    /* background-color: var(--primary-color); */
    padding: 15px 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 1rem;
    color: white;
    font-weight: 100;
    font-size: 14px;
}

.announcement-content {
    position: relative;
    /* Sesuaikan dengan tinggi elemen span */
    overflow: hidden;
    height: 40px;
    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%);
    font-size: .7rem;
    font-weight: 400;
}

.announcement-content span.active {
    opacity: 1;
    transform: translateY(0);
}

.menu-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    padding-top: 0.5rem;
}

.menu-1>a {
    display: flex;
    flex: 1;
    min-width: 40%;
    width: 100%;
    text-decoration: none;
    padding: 5px;
    color: white;
    align-items: center;
    gap: 1rem;
    min-height: 50px;
    border-radius: 10px;
    justify-content: space-between;
    font-size: 16px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.menu-1>a span {
    text-align: right;
}

.task-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.task-levels>a {
    display: flex;
    flex: 1;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
}

.task-levels>a>span {
    flex: 1;
    padding: 5px;
    background: linear-gradient(-45deg, rgb(196, 167, 0), gold, rgb(204, 134, 3));
    width: calc(100% - 30px);
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
}

.task-levels>a>div {
    width: 30px;
    padding: 5px;
    background-color: rgb(37, 37, 37);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.task-levels>a>div>img {
    width: 16px;
}

.task-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.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;
}

.apps-lists>a {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: rgb(193, 193, 193);
}

.apps-icon {
    width: 15vw;
    height: 15vw;
    min-width: 15vw;
    border-radius: 25%;
    overflow: hidden;
    box-shadow: 2px 2px 8px rgba(52, 52, 52, 0.1);
}

.apps-icon>img {
    width: 110%;
    height: 110%;
    object-fit: cover;
}

.apps-details>span {
    font-size: .9rem;
    font-weight: 500;
    display: block;
    line-height: 1.5;
}

.apps-details>small {
    display: block;
    line-height: 1.2;
    font-weight: 400;
}

.download-button {
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: rgb(215, 146, 9);
    box-shadow: 2px 2px 8px rgba(137, 137, 137, 0.1);
    padding: 5px;
    text-decoration: none;
    font-size: .7rem;
    font-weight: 500;
    color: white;
    gap: .5rem;
}

.download-button>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-blue {
    color: rgb(127, 180, 255);
}

.box-member {
    height: 312px;
    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;
    font-weight: 400;
}

.info-member small {
    font-size: 12px;
    color: #c2c2c2;
}

.amount {
    width: calc(100% - 200px);
    text-align: right;
    font-size: 1rem;
}

.menu-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 799px;
    background-color: var(--primary-color);
    padding: 5px 10px;
    display: flex;
}

.menu-bottom a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #989898;
    gap: 2px;
    font-weight: 400;
}

.menu-bottom a.a-active {
    color: rgb(197, 23, 197);
    font-weight: 400;
}

.header2 {
    padding: 10px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    /* background-color: var(--primary-color); */
    max-width: 799px;
    z-index: 1000;
}

.header2>a {
    width: 25%;
    text-decoration: none;
}

.header2>span {
    text-align: center;
    color: white;
    font-size: 1rem;
    width: 50%;
}

.h-40 {
    height: 40px;
}

.box-black {
    background-color: rgba(57, 57, 57, 0.319);
    padding: 50px 10px;
    border-radius: 10px;
}

.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-custom2 {
    color: white;
    padding: 0px;
    text-decoration: none;
    width: 100%;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    border: none;
    outline: none;
}

.linear-red {
    background: linear-gradient(to right, #fc1a1a, #992305);
}

.payment-select {
    background-color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    color: black;
    text-decoration: none;
}

.info-payment span {
    display: block;
    font-size: 14px;
}

.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;
    border-bottom: 1px solid rgba(235, 235, 235, 0.194);
    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: rgba(0, 0, 0, 0.801);
    color: white;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    display: none;
    transition: transform 0.5s ease-in-out;
}

.box-product {
    background-color: rgb(73, 73, 73);
    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(#32aa66 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: white;
}

.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: white;
    padding: 15px;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}

.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;
}

.header-popup {
    background-color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 0;
}

.body-popup {
    font-size: 16px;
    color: #6e6e6e;
    background-color: white;
    padding: 15px;
    padding-bottom: 25px;
    font-weight: 400;
}

.footer-popup {
    background-color: white;
    border-radius: 0 0 15px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.btn-cancel,
.btn-confirm {
    border-top: 1px solid #ccc;
    flex: 1;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0;
}

.btn-confirm {
    color: red;
    border-left: 1px solid #ccc;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero {
    background-image: url('../image/savings.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);
    background-color: rgba(0, 0, 0, 0.527);
    justify-content: space-evenly;
}

.menu-tugas a {
    text-align: center;
    color: rgb(170, 170, 170);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
}

a.active2 {
    color: #ebc506;
    border-bottom: 2px solid #ebc506;
}

.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.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-size: 15px;
    margin-top: -7vh;
    z-index: 1000;
    position: relative;
}

.list-vip:nth-child(1) {
    background-color: #2b2b2b;
}

.list-vip:nth-child(2) {
    background: linear-gradient(to right, #ff5d5d, #da39ba);
}

.list-vip:nth-child(3) {
    background: linear-gradient(to right, #dc3bee, #294bd1);
}

.list-vip:nth-child(4) {
    background: linear-gradient(to right, #498bee, #2eb4b6);
}

.list-vip:nth-child(5) {
    background: linear-gradient(to right, #fbba18, #2b2b2b);
}

.list-vip:nth-child(6) {
    background: linear-gradient(to right, #83C7D5, #2b2b2b);
}

.list-vip:nth-child(7) {
    background: linear-gradient(to right, #02A699, #2b2b2b);
}

.list-vip:nth-child(8) {
    background: linear-gradient(to right, #F45C51, #2b2b2b);
}

.list-vip:nth-child(9) {
    background: linear-gradient(to right, #AE2C47, #2b2b2b);
}

.list-vip {
    background-size: 100%;
    background-position: center;
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    font-size: 15px;
    color: white;
}

.img-me {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 4px solid rgba(15, 15, 15, 0.36);
    margin: 0 auto;
}

.info-sa {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-sa>div {
    background-color: rgba(30, 30, 30, 0.555);
    flex: 1;
    min-width: 30%;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    color: white;
}

.menu-saya>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(94, 94, 94, 0.555);
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

#logoutForm {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(30, 30, 30, 0.555);
    max-width: 799px;
}

#logoutForm button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #b98905, #9e6e0e);
    color: white;
    border: none;
    outline: none;
    font-size: 18px;
}

#vanImage {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 799px;
    height: 100vh;
    background-color: rgba(8, 14, 31, 0.962);
    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: rgba(8, 14, 31, 0.962);
    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: rgba(8, 14, 31, 0.962);
    z-index: 10000;
    transform: translateY(+100%);
    transition: transform 0.5s ease-in-out;
}

.van-content {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 799px;
    background-color: white;
}

.header-van {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    padding: 15px;
}

.choose-pic {
    display: flex;
    flex-wrap: wrap;
}

.img-choose {
    width: 20%;
    height: 80px;
    border: 1px solid gray;
    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(to right, #252525, #535353);
    padding: 25px;
}

.addBank {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 799px;
    padding: 10px;
}

.addBank a {
    display: block;
    background-color: rgb(168, 137, 0);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 500;
}

.daily-info {
    background-color: #333243;
    border-radius: 15px;
}

.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: white;
    padding: 10px;
    font-size: 14px;
}

.menu-bar>a.active {
    color: yellow;
    border-bottom: 2px solid yellow;
}

#demo {
    height: 280px;
}

.login-form {
    padding: 15px;
    margin-top: 10px;
}

.form-group-custom {
    display: flex;
    align-items: center;
    gap: .6rem;
    background-color: white;
    padding: 3px 8px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.form-group-custom input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
}

.form-group-custom input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.form-check {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 15px;
}

.form-check label {
    margin-top: 2px;
    margin-bottom: 0;
    color: #777777;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px 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;
}

.bar {
    width: 100%;
    height: 8px;
    background-color: #626262;
    border-radius: 15px;
    margin-top: 5px;
}

.bar-progress {
    height: 100%;
    background-color: #FF8C00;
    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: rgba(0, 0, 0, 0.5);
}

.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;
}

@media screen and (max-width: 568px) {
    #inviteLink {
        font-size: 18px;
    }

    .bar-progress {
        width: 100%;
    }
}