* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background: #0A0B0E;
    position: relative;
}

.page-bk {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.act-container {
    width: 100%;
    padding: 24px 17px;
    background: linear-gradient(180deg, #181B24 0%, #12141C 50%, #0D0F14 100%);
    box-shadow: 0 0 1px 1px rgba(212, 175, 55, 0.15), 0px 8 29px 0px rgba(0, 0, 0, 0.5);
    border-radius: 23px;
    border: 1px solid rgba(255, 224, 133, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

.amountbk {
    width: 190px;
    height: 130px;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

.act-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #F5D77F;
}

.divider {
    width: 34px;
    height: 1px;
    background: linear-gradient(to right, transparent, #F5D77F);
    margin: 0 8px;
}

.divider2 {
    width: 34px;
    height: 1px;
    background: linear-gradient(to right, #F5D77F, transparent);
    margin: 0 8px;
}

.amount {
    width: 94%;
}

.progress {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.info {
    width: 47%;
    background: linear-gradient(180deg, #0A0B0E 0%, rgba(83, 91, 116, 0.8) 100%);
    border-radius: 15px;
    border: 1px solid rgba(223, 186, 84, 0.5);
    font-weight: 500;
    font-size: 12px;
    color: #FFFFFF;
    padding: 13px;
}

.detail {
    display: flex;
    align-items: center;
    margin-top: 4px;
    font-weight: bold;
    font-size: 19px;
    color: #FBBF24;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.success {
    background: #d4edda;
    color: #155724;
}

.error {
    background: #f8d7da;
    color: #721c24;
}

.title {
    background-image: linear-gradient(0deg, #FEF3C7 0%, #FADB70 50%, #F1A718 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 500;
    font-size: 29px;
}

.tasks-title {
    display: flex;
    font-weight: 500;
    font-size: 15px;
    color: #F5D77F;
    margin-top: 15px;
    background: #101217;
}

.tasks-title .square {
    width: 6px;
    height: 14px;
    background: linear-gradient(180deg, #FCD34D 0%, #D4AF37 100%);
    border-radius: 10px;
    margin-right: 8px;
    margin-top: 2px;
}


.task-item {
    background: #101217;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-top: 15px;
    border: 1px solid rgba(255, 224, 133, 0.6);
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 13px;
    color: #F1F5F9;
}

.task-item .num {
    width: 31px;
    height: 31px;
    line-height: 31px;
    background: #DFBA54;
    box-shadow: 0 0 24px -3px rgba(223, 186, 84, 0.35);
    border-radius: 12px;
    font-size: 13px;
    color: #060709;
    font-weight: 900;
    text-align: center;
    margin-right: 10px;
}

.btn {
    width: 100%;
    height: 54px;
    background: linear-gradient(92deg, #FAF49C 0%, #FFBE3C 50%, #E89801 100%);
    border-radius: 15px 15px 15px 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn a {
    font-weight: 500;
    font-size: 18px;
    color: #694302;
    text-decoration: none;
}

.btn img {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

/* indexBody */
.indexBody {
    width: 90%;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.idx-title {
    text-align: center;
    background-image: linear-gradient(0deg, #FEF3C7 0%, #FADB70 50%, #F1A718 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 500;
    font-size: 29px;
    margin-bottom: 20px;
}

.idx-btn {
    width: 100%;
    display: block;
    margin-top: 30px;
    padding: 14px 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    background: linear-gradient(92deg, #FAF49C 0%, #FFBE3C 50%, #E89801 100%);
}

.idx-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.spinner {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}