:root {
    --blue: #007bff;
    --indigo: #0072CE;
    --purple: #004B87;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #00A3E0;
    --yellow: #ffc107;
    --green: #7AB800;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #2a4a62;
    --primary: #004B87;
    --secondary: #0072CE;
    --primary-color: #004B87;
    --secondary-color: #0072CE;
    --accent-color: #00A3E0;
    --success: #7AB800;
    --info: #00A3E0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #2a4a62;
}

body{
    font-family: 'Times New Roman', Times, serif;
    font-weight: 300;
    font-size: 12px;
}

.container{
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.content{
    border: 1px solid var(--primary-color);
    width: 100%;
    height: 100vh;
    background: linear-gradient(-45deg, #004B87, #0072CE, #9B30FF, #FF1493, #FF4500, #FFD700);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 50px;
}

.header{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 75, 135, 0.1);
    border-bottom: 1px solid rgba(0, 114, 206, 0.1);
}

.header > a{
    width: 25%;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.slider{
    width: calc(100% - 20px);
    height: fit-content;
    max-height: 25vh;
    overflow: hidden;
    border-radius: 16px;
    margin: 10px;
    box-shadow: 0 4px 20px rgba(0, 75, 135, 0.15);
}

.slider > img{
    width: 100%;
    display: block;
}

.menu-1{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 15px;
    padding-top: 20px;
}

.menu-1 > a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.95), rgba(0, 114, 206, 0.85));
    backdrop-filter: blur(10px);
    text-decoration: none;
    padding: 20px 15px;
    color: white;
    border-radius: 16px;
    min-height: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 75, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-1 > a::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-1 > a:hover::before{
    opacity: 1;
}

.menu-1 > a:hover{
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 114, 206, 0.4), 0 0 20px rgba(0, 163, 224, 0.2);
    background: linear-gradient(135deg, rgba(0, 114, 206, 0.95), rgba(0, 163, 224, 0.85));
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-1 > a:active{
    transform: translateY(-4px) scale(0.98);
}

.menu-1 > a img{
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.menu-1 > a:hover img{
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.menu-1 > a span{
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.announcement{
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(0, 75, 135, 0.95), rgba(0, 114, 206, 0.9));
    padding: 15px;
    margin: 0 10px;
    margin-top: 10px;
    border-radius: 12px;
    color: white;
    font-weight: 400;
    font-size: 12px;
    box-shadow: 0 3px 12px rgba(0, 75, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.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%);
}

.announcement-content span.active {
    opacity: 1;
    transform: translateY(0);
}

.box{
    display: flex;
    gap: 12px;
}

.isi-box{
    background: linear-gradient(135deg, rgba(0, 114, 206, 0.9), rgba(0, 163, 224, 0.8));
    padding: 18px 15px;
    width: 50%;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 75, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.isi-box:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 114, 206, 0.3);
}

.isi-box span{
    font-size: 12px;
    opacity: 0.9;
}

.isi-box h3{
    margin-top: 8px;
    font-weight: 600;
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-custom1{
    display: block;
    margin-top: 12px;
    background: linear-gradient(135deg, #0072CE, #00A3E0);
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 114, 206, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

.btn-custom1:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.4);
    background: linear-gradient(135deg, #00A3E0, #0072CE);
}

.box-member{
    border-radius: 14px;
    height: 312px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.list-member{
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, rgba(0, 75, 135, 0.85), rgba(0, 114, 206, 0.75));
    backdrop-filter: blur(5px);
    padding: 12px 15px;
    color: white;
    margin-bottom: 3px;
    border-left: 3px solid rgba(0, 163, 224, 0.5);
    transition: all 0.3s ease;
}

.list-member:hover{
    background: linear-gradient(90deg, rgba(0, 114, 206, 0.9), rgba(0, 163, 224, 0.8));
    border-left-color: #00A3E0;
    padding-left: 18px;
}

.list-member-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 1s ease-in-out;
}

.img-member{
    width: 45px;
    height: 45px;
    background-color: white;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.list-member:hover .img-member{
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 163, 224, 0.4);
    border-color: rgba(0, 163, 224, 0.6);
}

.info-member{
    flex: 1;
}

.info-member span{
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
}

.info-member small{
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.amount{
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    background: linear-gradient(135deg, #00A3E0, #7AB800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    min-width: 80px;
}

.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-input{
    background-color: var(--secondary-color);
    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: var(--secondary-color);
    color: white;
    border-bottom: 1px solid rgba(235, 235, 235, 0.194);
    padding: 5px;
}

.box-input input{
    width: 75%;
    border: none;
    outline: none;
    background-color: var(--secondary-color);
    color: white;
    border-bottom: 1px solid rgba(235, 235, 235, 0.194);
    padding: 5px;
    text-align: right;
}

.box-radio{
    background-color: var(--secondary-color);
    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 rgba(235, 235, 235, 0.194);
    padding: 7px 5px;
    border-radius: 10px;
    text-align: center;
    color: rgb(172, 172, 172);
}

.box-radio-item label.active{
    background-color: white;
    color: var(--secondary-color);
}

.box-radio-item label input{
    display: none;
}

.btn-custom2{
    background-color: var(--secondary-color);
    color: white;
    padding: 12px;
    text-decoration: none;
    width: 100%;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    outline: none;
    border: none;
}

.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: white;
    border-bottom: 1px solid rgba(235, 235, 235, 0.194);
    padding: 5px;
    text-align: right;
    background-color: transparent;
}

.list-depo{
    background-image: linear-gradient(to right, #0072CE, #004B87);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.ctn-custom{
    background-image: linear-gradient(to bottom, #004B87 30%, var(--primary-color));
    color: white;
}

.ticket-top{
    background-color: #1a3a52;
    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: #1a3a52;
    padding: 15px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.qr{
    margin: 0 auto;
}

#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: black;
    color: white;
    left: 50%;
    transform: translateX(-50%);
    padding:5px 10px;
    border-radius:10px;
    display: none;
    transition: transform 0.5s ease-in-out;
}

.box-product{
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    font-size: 14px;
}

.box-product > span{
    display: block;
    font-size: 16px;
}

.list-product{
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 10px;
}

.bg-product{
    width: 130px;
    height: 130px;
    background-color: #1a3a52;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.info-product{
    width: calc(100% - 130px);
}

.bar-progress{
    width: 50%;
    height: 10px;
    background-color: #2a4a62;
    border-radius: 10px;
}
.inner-prog{
    height: 100%;
    background-color: #00A3E0;
    border-radius: 10px;
}

.btn-product{
    margin-top: 10px;
    display: block;
    background-color: #00A3E0;
    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('../img/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;
}

#vipConfirm{
    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;
}

.btn-cancel, .btn-confirm{
    flex: 1;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-left: 1px solid #ccc;
    font-size: 16px;
    cursor: pointer;
}

.btn-confirm{
    color: var(--secondary-color);
}

.box-kiat{
    width: 60%;
    max-width: 300px;
    text-align: center;
}

.body-kiat{
    background-color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #afafaf;
}

.title{
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.body-kiat p{
    font-size: 16px;
    color: #6e6e6e;
}

.footer-kiat{
    background-color: white;
    padding: 15px;
    border-radius: 0 0 15px 15px;
    font-size: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.box-spin img {
    animation: spin 8s linear infinite;
}

.list-catatan{
    background-color: #333333d2;
    padding: 10px;
    border-radius: 10px;
    color: rgb(190, 190, 190);
}

.menu-bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 799px;
    background: linear-gradient(180deg, rgba(0, 75, 135, 0.98), rgba(0, 75, 135, 1));
    backdrop-filter: blur(10px);
    padding: 10px 5px 12px 5px;
    display: flex;
    box-shadow: 0 -4px 20px rgba(0, 75, 135, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-bottom a{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 5px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-bottom a span{
    font-size: 11px;
    margin-top: 5px;
    font-weight: 500;
}

.menu-bottom a img{
    transition: all 0.3s ease;
}

.menu-bottom a:hover{
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.menu-bottom a.a-active{
    color: #00A3E0;
    background: rgba(0, 163, 224, 0.15);
}

.menu-bottom a.a-active::before{
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00A3E0, transparent);
    border-radius: 0 0 3px 3px;
}

.menu-bottom a.a-active img{
    transform: scale(1.1);
}

.menu-tugas{
    margin-top: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(190, 190, 190);
    background-color: var(--secondary-color);
    justify-content: space-evenly;
}

.menu-tugas a{
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding:10px 0;
}

a.active2{
    color: #00A3E0;
    border-bottom: 2px solid #00A3E0;
}

/* ========== TUGAS PAGE - MODERN & EYE-CATCHING ========== */

/* Animated Background Gradient */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Info Task Cards - Modern & Animated */
.info-task{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.info-task > div{
    flex: 1;
    min-width: calc(50% - 10px);
    text-align: center;
    padding: 20px 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease-out backwards;
    color: white;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.info-task > div:nth-child(1) { animation-delay: 0.1s; }
.info-task > div:nth-child(2) { animation-delay: 0.2s; }
.info-task > div:nth-child(3) { animation-delay: 0.3s; }
.info-task > div:nth-child(4) { animation-delay: 0.4s; }

.info-task > div::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-task > div:hover::before {
    opacity: 1;
}

.info-task > div:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.4);
    border-color: rgba(0, 163, 224, 0.6);
}

.info-task > div h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.info-task > div span {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Menu Tugas - Modern Tabs */
.menu-tugas{
    margin-top: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(190, 190, 190);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    justify-content: space-evenly;
    padding: 8px;
    border-radius: 20px;
    margin: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.menu-tugas::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 3px;
    background: linear-gradient(90deg, #00A3E0, #7AB800);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 3px 3px 0 0;
}

.menu-tugas a{
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.menu-tugas a:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.menu-tugas a.active2{
    color: #FFFFFF !important;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.3), rgba(0, 114, 206, 0.3));
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    border: 1px solid rgba(0, 163, 224, 0.5);
}

/* Box Tugas - Modern Card Design */
.box-tugas{
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.95), rgba(0, 114, 206, 0.9));
    backdrop-filter: blur(15px);
    padding: 25px;
    margin-top: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 75, 135, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box-tugas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.1), transparent 60%);
    animation: rotate 20s linear infinite;
}

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

.box-tugas > * {
    position: relative;
    z-index: 1;
}

.box-tugas h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-tugas h3::before {
    content: '🎯';
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.box-tugas .text-warning {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
    font-weight: 700;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.box-tugas .form-control {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.box-tugas .form-control:hover {
    border-color: #00A3E0;
    background: rgba(0, 163, 224, 0.1);
    transform: scale(1.02);
}

.box-tugas .btn-warning {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    border: none;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.box-tugas .btn-warning::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.box-tugas .btn-warning:hover::before {
    width: 300px;
    height: 300px;
}

.box-tugas .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.6);
}

.box-tugas .btn-warning:active {
    transform: translateY(-1px);
}

/* List Audit - Modern Cards */
.list-audit{
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.85), rgba(0, 114, 206, 0.75));
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 16px;
    color: white;
    margin: 15px;
    margin-bottom: 12px;
    box-shadow: 0 6px 25px rgba(0, 75, 135, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.list-audit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #00A3E0, #7AB800);
    transition: width 0.3s ease;
}

.list-audit:hover::before {
    width: 8px;
}

.list-audit:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 163, 224, 0.4);
    border-color: rgba(0, 163, 224, 0.4);
}

.img-audit{
    width: 100px;
    height: 100px;
    min-width: 100px;
    background-color: white;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.list-audit:hover .img-audit {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.4);
    border-color: #00A3E0;
}

.info-audit > span{
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    line-height: 1.4;
}

.info-audit h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Countdown Timer */
.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(255, 140, 0, 0.2));
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 10px;
    border: 1px solid rgba(255, 140, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.countdown-timer::before {
    content: '⏰';
    font-size: 18px;
}

.countdown-timer span {
    font-weight: 600;
    color: #FFD700;
    font-size: 14px;
}

/* File Upload Components */
.file-upload-wrapper {
    position: relative;
}

.file-preview {
    margin-top: 15px;
    text-align: center;
}

.file-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(0, 163, 224, 0.5);
}

/* Upload Progress Bar */
.upload-progress {
    margin-top: 15px;
    text-align: center;
}

.progress-bar-wrapper {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00A3E0, #7AB800, #FFD700);
    width: 0;
    transition: width 0.3s ease;
    position: relative;
    border-radius: 15px;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

/* Modern List */
.modern-list {
    padding-left: 20px;
}

.modern-list li {
    margin-bottom: 10px;
    padding-left: 10px;
    line-height: 1.6;
    list-style: none;
    position: relative;
}

.modern-list li::marker {
    content: none;
}

/* Floating Particles Background */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Custom Notification */
.custom-notification {
    position: fixed;
    top: 80px;
    right: -400px;
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.95), rgba(0, 114, 206, 0.95));
    backdrop-filter: blur(15px);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 300px;
    max-width: 90%;
    font-weight: 500;
}

.custom-notification.show {
    right: 20px;
}

.custom-notification.success {
    background: linear-gradient(135deg, rgba(122, 184, 0, 0.95), rgba(40, 167, 69, 0.95));
}

.custom-notification.warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.95), rgba(255, 140, 0, 0.95));
}

.custom-notification.error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(255, 0, 0, 0.95));
}

/* ========== SAYA (PROFILE) PAGE - MODERN DESIGN ========== */

/* Profile Header */
.profile-header {
    padding: 20px 15px;
    animation: fadeInScale 0.6s ease-out;
}

.profile-header .img-me {
    animation: pulse 2s ease-in-out infinite;
}

.user-phone {
    margin-top: 15px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Balance Cards */
.balance-cards {
    display: flex;
    gap: 12px;
    padding: 0 15px 15px 15px;
}

.balance-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInScale 0.6s ease-out 0.2s backwards;
    display: block !important;
}

.balance-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.3);
    border-color: rgba(0, 163, 224, 0.5);
}

.balance-label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 500;
}

.balance-amount, .balance-identity {
    font-size: 28px !important;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
}

/* Section Title */
.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 163, 224, 0.3);
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 163, 224, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #00A3E0, transparent);
}

/* Modern Stats Grid */
.modern-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.85), rgba(0, 114, 206, 0.75));
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 75, 135, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.5s ease-out backwards;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 163, 224, 0.4);
    border-color: rgba(0, 163, 224, 0.4);
}

.stat-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
    animation: bounce 2s ease-in-out infinite;
}

.stat-label {
    display: block;
    font-size: 10px;
    margin-bottom: 8px;
    opacity: 0.8;
    line-height: 1.2;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Modern Menu */
.modern-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(0, 75, 135, 0.8), rgba(0, 114, 206, 0.7));
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 75, 135, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.5s ease-out backwards;
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #00A3E0, #7AB800);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.menu-item:hover::before {
    transform: scaleY(1);
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.4);
    border-color: rgba(0, 163, 224, 0.3);
    background: linear-gradient(90deg, rgba(0, 114, 206, 0.85), rgba(0, 163, 224, 0.75));
}

.menu-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 163, 224, 0.2);
}

.menu-text {
    font-size: 14px;
    font-weight: 500;
}

.menu-arrow {
    transition: all 0.3s ease;
    opacity: 0.6;
}

.menu-item:hover .menu-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Old info-sa styling override */
.info-sa > div {
    background: none;
    border-radius: 0;
    padding: 0;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .info-task > div {
        min-width: calc(50% - 5px);
        padding: 15px 10px;
    }
    
    .info-task > div h3 {
        font-size: 24px;
    }
    
    .custom-notification {
        min-width: auto;
        max-width: calc(100% - 40px);
        font-size: 14px;
    }
    
    .modern-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .stat-card {
        padding: 12px 8px;
    }
    
    .stat-icon {
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 18px;
    }
}

/* ========== CATATAN PAGE - MODERN WALLET ========== */

/* Wallet Balance Card */
.wallet-balance-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.7));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 163, 224, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 0.6s ease-out;
}

.wallet-balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.15), transparent 60%);
    animation: rotate 20s linear infinite;
}

.balance-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    filter: blur(40px);
}

.balance-icon {
    font-size: 48px;
    margin-bottom: 10px;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
    position: relative;
    z-index: 1;
}

.balance-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.balance-amount {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 
                 0 0 30px rgba(255, 215, 0, 0.6),
                 0 0 50px rgba(255, 165, 0, 0.4);
    animation: glow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.balance-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.balance-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.balance-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.balance-btn:hover::before {
    width: 300px;
    height: 300px;
}

.balance-btn-deposit {
    background: linear-gradient(135deg, #7AB800, #28a745);
    color: white;
    box-shadow: 0 8px 20px rgba(122, 184, 0, 0.4);
}

.balance-btn-deposit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(122, 184, 0, 0.6);
}

.balance-btn-withdraw {
    background: linear-gradient(135deg, #FF4500, #DC143C);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
}

.balance-btn-withdraw:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 69, 0, 0.6);
}

.btn-icon {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.balance-btn span {
    position: relative;
    z-index: 1;
}

/* Modern Tabs */
.catatan-tabs {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    padding: 5px;
    border-radius: 15px;
    margin: 15px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.tab-indicator {
    position: absolute;
    bottom: 5px;
    height: calc(100% - 10px);
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.4), rgba(0, 114, 206, 0.4));
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 163, 224, 0.6);
    box-shadow: 0 0 20px rgba(0, 163, 224, 0.5);
}

.catatan-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.catatan-tab.active {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.catatan-tab:hover {
    color: white;
}

.tab-icon {
    font-size: 18px;
}

/* Transaction Cards */
.transaction-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.6));
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.transaction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00A3E0, #0072CE, #004B87);
}

.transaction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 163, 224, 0.3);
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-id {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.transaction-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.transaction-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-amount {
    display: flex;
    flex-direction: column;
}

.amount-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.amount-value {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 
                 0 0 15px rgba(255, 215, 0, 0.5);
}

.transaction-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.5);
    color: #FFC107;
}

.status-success {
    background: rgba(122, 184, 0, 0.2);
    border: 1px solid rgba(122, 184, 0, 0.5);
    color: #7AB800;
}

.status-icon {
    font-size: 14px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 75, 135, 0.5));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInScale 0.6s ease-out;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.empty-img {
    opacity: 0.5;
    margin: 20px 0;
}

.empty-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.empty-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.tab-content-fade {
    animation: fadeIn 0.5s ease-out;
}

/* ========== PENARIKAN PAGE - MODERN WITHDRAWAL ========== */

/* Withdraw Balance Card */
.withdraw-balance-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.7));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 69, 0, 0.4);
    box-shadow: 0 15px 50px rgba(255, 69, 0, 0.3);
    animation: fadeInScale 0.6s ease-out;
}

.withdraw-balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.15), transparent 60%);
    animation: rotate 20s linear infinite;
}

.balance-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.balance-info .balance-icon {
    font-size: 42px;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
}

.balance-info .balance-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.balance-info .balance-display {
    font-size: 28px;
    font-weight: 900;
    margin: 0;
    color: #FFD700;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 
                 0 0 30px rgba(255, 215, 0, 0.6);
    animation: glow 2s ease-in-out infinite;
}

/* Modern Input Group */
.modern-input-group {
    margin-bottom: 20px;
}

.modern-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.label-icon {
    font-size: 18px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.modern-select {
    width: 100%;
    padding: 15px 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.modern-select:hover {
    border-color: rgba(0, 163, 224, 0.5);
    box-shadow: 0 8px 30px rgba(0, 163, 224, 0.3);
    transform: translateY(-2px);
}

.modern-select:focus {
    outline: none;
    border-color: rgba(0, 163, 224, 0.8);
    box-shadow: 0 8px 30px rgba(0, 163, 224, 0.5);
}

.modern-select option {
    background: #1a1a2e;
    color: white;
    padding: 10px;
}

/* Amount Chips Grid */
.amount-chips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.amount-chip {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.amount-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.chip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    min-height: 75px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: slideInUp 0.6s ease-out backwards;
}

.chip-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.1), rgba(0, 114, 206, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 13px;
}

.amount-chip:hover .chip-content {
    transform: translateY(-5px);
    border-color: rgba(0, 163, 224, 0.5);
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.3);
}

.amount-chip:hover .chip-content::before {
    opacity: 1;
}

.amount-chip.selected .chip-content {
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.4), rgba(0, 114, 206, 0.4));
    border-color: rgba(0, 163, 224, 0.8);
    box-shadow: 0 10px 35px rgba(0, 163, 224, 0.5), inset 0 0 30px rgba(0, 163, 224, 0.2);
    transform: scale(1.05);
}

.chip-badge {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 5px;
    padding: 3px 8px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #FFD700;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.chip-amount {
    font-size: 18px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Popular Chip */
.amount-chip-popular .chip-content {
    border-color: rgba(255, 215, 0, 0.3);
}

.amount-chip-popular:hover .chip-content,
.amount-chip-popular.selected .chip-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.5);
}

/* VIP Chip */
.amount-chip-vip .chip-content {
    border-color: rgba(155, 48, 255, 0.3);
}

.amount-chip-vip .chip-badge {
    background: rgba(155, 48, 255, 0.2);
    color: #9B30FF;
    border-color: rgba(155, 48, 255, 0.4);
}

.amount-chip-vip:hover .chip-content,
.amount-chip-vip.selected .chip-content {
    background: linear-gradient(135deg, rgba(155, 48, 255, 0.3), rgba(106, 13, 173, 0.3));
    border-color: rgba(155, 48, 255, 0.8);
    box-shadow: 0 10px 35px rgba(155, 48, 255, 0.5);
}

/* Chip Ripple Effect */
@keyframes chipRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.chip-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.5), transparent 70%);
    border-radius: 15px;
    animation: chipRipple 0.6s ease-out;
    pointer-events: none;
}

/* Modern Withdraw Button */
.modern-withdraw-btn {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #FF4500, #DC143C);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modern-withdraw-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-withdraw-btn:hover::before {
    width: 400px;
    height: 400px;
}

.modern-withdraw-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 69, 0, 0.7);
}

.modern-withdraw-btn:active {
    transform: translateY(-2px);
}

.modern-withdraw-btn .btn-icon,
.modern-withdraw-btn .btn-text {
    position: relative;
    z-index: 1;
}

.modern-withdraw-btn .btn-icon {
    font-size: 24px;
    animation: bounce 3s ease-in-out infinite;
}

.modern-withdraw-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

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

/* Withdraw Note */
.withdraw-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.note-icon {
    font-size: 14px;
}

/* ========== DEPOSIT PAGES - MODERN TOPUP ========== */

/* Deposit Balance Card */
.deposit-balance-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.7));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(122, 184, 0, 0.4);
    box-shadow: 0 15px 50px rgba(122, 184, 0, 0.3);
    animation: fadeInScale 0.6s ease-out;
}

.deposit-balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 184, 0, 0.15), transparent 60%);
    animation: rotate 20s linear infinite;
}

.deposit-balance-card .balance-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.deposit-balance-card .balance-icon {
    font-size: 42px;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(122, 184, 0, 0.5));
}

.title-icon {
    font-size: 20px;
    margin-right: 5px;
}

/* Modern Payment Card */
.modern-payment-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.6s ease-out backwards;
}

.modern-payment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-payment-card:hover::before {
    opacity: 1;
}

.modern-payment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 163, 224, 0.5);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.3);
}

.payment-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.payment-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-info {
    flex: 1;
}

.payment-name {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.payment-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.detail-icon {
    font-size: 13px;
}

.payment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    background: rgba(122, 184, 0, 0.2);
    border: 1px solid rgba(122, 184, 0, 0.4);
    border-radius: 8px;
    color: #7AB800;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.payment-arrow {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.modern-payment-card:hover .payment-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Quick Amount Grid */
.quick-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.quick-amount-btn {
    padding: 15px 10px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.6s ease-out backwards;
}

.quick-amount-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122, 184, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-amount-btn:hover::before {
    opacity: 1;
}

.quick-amount-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(122, 184, 0, 0.5);
    box-shadow: 0 10px 30px rgba(122, 184, 0, 0.3);
}

.quick-amount-btn.active {
    background: linear-gradient(135deg, rgba(122, 184, 0, 0.4), rgba(40, 167, 69, 0.4));
    border-color: rgba(122, 184, 0, 0.8);
    box-shadow: 0 10px 35px rgba(122, 184, 0, 0.5);
    transform: scale(1.05);
}

.quick-amount-popular {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
    animation: bounce 3s ease-in-out infinite;
}

.btn-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(122, 184, 0, 0.5), transparent 70%);
    border-radius: 15px;
    animation: chipRipple 0.6s ease-out;
    pointer-events: none;
}

/* Modern Amount Input */
.modern-amount-input {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.modern-amount-input:focus-within {
    border-color: rgba(122, 184, 0, 0.8);
    box-shadow: 0 8px 30px rgba(122, 184, 0, 0.5);
}

.input-prefix {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.amount-input-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.amount-input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.amount-limits {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}

.limit-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.limit-icon {
    font-size: 14px;
}

/* Modern Deposit Button */
.modern-deposit-btn {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #7AB800, #28a745);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(122, 184, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modern-deposit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-deposit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.modern-deposit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(122, 184, 0, 0.7);
}

.modern-deposit-btn .btn-icon {
    font-size: 24px;
    animation: bounce 3s ease-in-out infinite;
}

.modern-deposit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Modern Back Button */
.modern-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 25px;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-back-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Info Accordion */
.info-accordion {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: fadeInScale 0.6s ease-out;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 193, 7, 0.1);
}

.accordion-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.accordion-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: 1000px;
}

.notice-list {
    list-style: none;
    padding: 0 18px 18px 18px;
    margin: 0;
}

.notice-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-icon {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 2px;
}

/* ========== PERSONAL INFO PAGE - MODERN SETTINGS ========== */

/* Settings Menu */
.settings-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: slideInRight 0.6s ease-out backwards;
    cursor: pointer;
}

.settings-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00A3E0, #0072CE);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.settings-item:hover::before {
    opacity: 1;
}

.settings-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 163, 224, 0.5);
    box-shadow: 0 12px 35px rgba(0, 163, 224, 0.3);
}

.settings-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.settings-icon img {
    max-width: 100%;
    max-height: 100%;
}

.settings-icon-emoji {
    font-size: 28px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.settings-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.settings-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.settings-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.settings-arrow {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.settings-item:hover .settings-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.settings-badge {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.settings-badge.verified {
    background: rgba(122, 184, 0, 0.2);
    border: 1px solid rgba(122, 184, 0, 0.5);
    color: #7AB800;
}

.settings-item-danger:hover {
    border-color: rgba(255, 69, 0, 0.5);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.3);
}

.settings-item-danger:hover::before {
    background: linear-gradient(180deg, #FF4500, #DC143C);
}

/* Modern Logout Button */
.modern-logout-btn {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #FF4500, #DC143C);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.modern-logout-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modern-logout-btn:hover::before {
    width: 400px;
    height: 400px;
}

.modern-logout-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 69, 0, 0.7);
}

.modern-logout-btn .btn-icon {
    font-size: 24px;
}

.modern-logout-btn .btn-text {
    position: relative;
    z-index: 1;
}

/* Modern Modal */
.modern-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modern-modal.show {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 75, 135, 0.8));
    backdrop-filter: blur(20px);
    border-radius: 25px 25px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 75, 135, 0.8));
    backdrop-filter: blur(20px);
    z-index: 10;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.modal-icon {
    font-size: 24px;
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 69, 0, 0.3);
    border-color: rgba(255, 69, 0, 0.5);
    transform: rotate(90deg);
}

/* Avatar Grid */
.avatar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px;
}

.avatar-item {
    position: relative;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-item:hover {
    transform: scale(1.1);
    border-color: rgba(0, 163, 224, 0.5);
    box-shadow: 0 5px 20px rgba(0, 163, 224, 0.3);
}

.avatar-check {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: rgba(122, 184, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.avatar-item.selected {
    border-color: rgba(122, 184, 0, 0.8);
    box-shadow: 0 5px 25px rgba(122, 184, 0, 0.5);
    transform: scale(1.05);
}

.avatar-item.selected .avatar-check {
    opacity: 1;
    transform: scale(1);
}

.avatar-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(122, 184, 0, 0.5), transparent 70%);
    animation: chipRipple 0.6s ease-out;
    pointer-events: none;
}

/* Modal Form */
.modal-form {
    padding: 20px;
}

.modern-form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.modern-form-input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.modern-form-input:focus {
    outline: none;
    border-color: rgba(0, 163, 224, 0.8);
    box-shadow: 0 5px 25px rgba(0, 163, 224, 0.5);
}

.modern-form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.modal-submit-btn {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #7AB800, #28a745);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(122, 184, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modal-submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.modal-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(122, 184, 0, 0.7);
}

.modal-submit-btn .btn-icon {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.modal-submit-btn span {
    position: relative;
    z-index: 1;
}

/* ========== VIP PAGE - GAMING STYLE ========== */

/* VIP Content Background - now applied to all .content */

/* Current VIP Card */
.current-vip-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 75, 135, 0.7));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid rgba(0, 163, 224, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 163, 224, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease-out;
    color: white;
}

.current-vip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.15), transparent 60%);
    animation: rotate 20s linear infinite;
}

.vip-badge-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.vip-badge-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.4), transparent 70%);
    animation: pulse 2s ease-in-out infinite;
    filter: blur(20px);
}

.vip-badge {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #00A3E0, #0072CE);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.5);
}

.vip-badge-icon {
    font-size: 32px;
}

.vip-badge-level {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.current-vip-content {
    position: relative;
    z-index: 1;
}

.current-vip-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 163, 224, 0.5);
}

.current-vip-stats {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.vip-stat-item {
    flex: 1;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vip-stat-label {
    display: block;
    font-size: 11px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.vip-stat-value {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 215, 0, 0.5);
}

/* VIP Tier Cards - GAMING STYLE */
.vip-tier-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInUp 0.6s ease-out backwards;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    color: white;
}

.vip-tier-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vip-tier-card:hover::before {
    opacity: 1;
}

.vip-tier-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* VIP Tier Pattern Background */
.vip-tier-pattern {
    height: 120px;
    position: relative;
    overflow: hidden;
}

.vip-tier-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.vip-tier-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

/* VIP Tier Header */
.vip-tier-header {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 2;
}

.vip-tier-level {
    position: relative;
}

.vip-level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 900;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 2;
}

.vip-tier-info {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.vip-tier-icon {
    font-size: 48px;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.vip-tier-name {
    font-size: 28px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 20px currentColor);
}

/* VIP Tier Content */
.vip-tier-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.vip-tier-reward {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.vip-tier-reward-label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.vip-tier-reward-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 
                 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 30px rgba(255, 165, 0, 0.5);
    animation: glow 2s ease-in-out infinite;
}

.vip-tier-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.vip-tier-stat {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.vip-tier-stat:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.vip-tier-stat .stat-icon {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

/* VIP Benefits */
.vip-tier-benefits {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.vip-benefit-item:last-child {
    border-bottom: none;
}

.benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #7AB800, #28a745);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

/* VIP Tier Button */
.vip-tier-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-tier-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.vip-tier-btn:hover::before {
    width: 400px;
    height: 400px;
}

.vip-tier-btn:hover {
    transform: translateY(-3px);
}

.vip-tier-btn:active {
    transform: translateY(-1px);
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* Old VIP styles (fallback) */
.info-vip{
    background-image: url('../img/vipt.png');
    background-size: 100%;
    background-position: top;
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-size: 15px;
}

.list-vip{
    background-size: 100%;
    background-position: center;
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    font-size: 15px;
}

.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: 3px;
}

.info-sa > div{
    background-color: #0072CE;
    flex: 1;
    min-width: 30%;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
}

.menu-saya >a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Old logout form styles - removed, using modern-logout-btn instead */

/* Old van styles - removed, replaced by modern-modal */
/* Old box-input3 styles - removed, using modern-form-group instead */


#day-picker{
    width: 100%;
    height: 100px;
}

.list-bank{
    margin-top: 15px;
    background-image: linear-gradient(to right,#0072CE,#00A3E0);
    padding: 25px;
    border-radius: 15px;
}

.addBank{
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 799px;
    padding: 10px;
}

.addBank a{
    display: block;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    border-radius: 50px;
    border: 2px solid gray;
}

.daily-info{
    background-color: #ffffff;
    padding: 15px;
    border-radius: 15px;
}

.menu-select a{
    padding: 10px;
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
}

.aktifkan{
    color: #00A3E0 !important;
    border-bottom: 2px solid #00A3E0;
}

.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: #00A3E0;
    border-bottom: 2px solid #00A3E0;
}

#demo{
    height: 280px;
}

.login-form{
    padding: 15px;
    margin-top: 10px;
}

.form-group-custom{
    display: flex;
    align-items: center;
    gap: .6rem;
    background-color: white;
    padding:10px 15px;
    border-radius: 15px;
    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;
}

.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, #004B87, #0072CE, #00A3E0);
    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, #004B87, #0072CE, #00A3E0);
    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, #004B87, #0072CE, #00A3E0);
    padding: 10px;
    border-radius: 8px;
}

@media screen and (max-width: 568px) {
    #inviteLink{
        font-size: 18px;
    }

.bar-progress{
    width: 100%;
}
}

.logo-auth{
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.toggle-password{
    cursor: pointer;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.toggle-password:hover{
    opacity: 0.7;
}

.toggle-password img{
    width: 24px;
    height: 24px;
}

/* Menu Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-1 > a {
    animation: fadeInUp 0.6s ease-out backwards;
}

.menu-1 > a:nth-child(1) { animation-delay: 0.1s; }
.menu-1 > a:nth-child(2) { animation-delay: 0.15s; }
.menu-1 > a:nth-child(3) { animation-delay: 0.2s; }
.menu-1 > a:nth-child(4) { animation-delay: 0.25s; }
.menu-1 > a:nth-child(5) { animation-delay: 0.3s; }
.menu-1 > a:nth-child(6) { animation-delay: 0.35s; }
.menu-1 > a:nth-child(7) { animation-delay: 0.4s; }
.menu-1 > a:nth-child(8) { animation-delay: 0.45s; }

/* Modern Headings */
.p-3.ps-1.pe-1.text-white h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 163, 224, 0.3);
    position: relative;
    letter-spacing: 0.5px;
}

.p-3.ps-1.pe-1.text-white h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00A3E0, transparent);
}

/* Platform Section Spacing */
.p-3.ps-1.pe-1.text-white {
    padding: 20px 15px !important;
}

/* ============================================
   LAPORAN HARIAN (Daily Report) STYLES
   ============================================ */

/* Report Summary Card */
.report-summary-card {
    background: linear-gradient(135deg, 
        rgba(0, 163, 224, 0.25) 0%, 
        rgba(0, 114, 206, 0.25) 50%, 
        rgba(155, 48, 255, 0.25) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 163, 224, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 50px rgba(255, 255, 255, 0.05);
    animation: fadeInScale 0.6s ease-out;
    text-align: center;
}

.report-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 163, 224, 0.3), transparent 70%);
    animation: rotateGradient 8s linear infinite;
    pointer-events: none;
}

.summary-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.4), transparent 70%);
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.summary-icon {
    font-size: 60px;
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(0, 163, 224, 0.5));
    margin-bottom: 15px;
}

.summary-content {
    position: relative;
    z-index: 2;
}

.summary-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.summary-amount {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.4));
}

.summary-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.date-icon {
    font-size: 16px;
}

/* Report Stats Grid */
.report-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.report-stat-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.5s ease-out backwards;
    transition: all 0.3s ease;
}

.report-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00A3E0, #0072CE, #9B30FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.report-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 163, 224, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.report-stat-card:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.3), rgba(155, 48, 255, 0.3));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.3);
}

.stat-icon {
    font-size: 26px;
}

.stat-info {
    text-align: left;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0;
    text-shadow: 0 2px 15px rgba(0, 163, 224, 0.5);
}

.stat-desc {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-top: 5px;
}

/* Modern Table */
.modern-table-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.modern-table thead {
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.3), rgba(0, 114, 206, 0.3));
    border-radius: 12px;
}

.modern-table thead tr {
    border-radius: 12px;
}

.modern-table thead th {
    padding: 15px 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border: none;
}

.modern-table thead th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.modern-table thead th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.modern-table tbody .table-row {
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out backwards;
}

.modern-table tbody .table-row:hover {
    background: rgba(0, 163, 224, 0.15);
    transform: translateX(5px);
}

.modern-table tbody td {
    padding: 15px 12px;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-table tbody tr:last-child td {
    border-bottom: none;
}

.badge-value {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.3), rgba(155, 48, 255, 0.3));
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 163, 224, 0.3);
}

/* Table Empty State */
.table-empty-state {
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.5s ease-out;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 163, 224, 0.3));
}

.empty-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.empty-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design for Table */
@media (max-width: 576px) {
    .modern-table thead th {
        font-size: 10px;
        padding: 12px 8px;
    }
    
    .modern-table tbody td {
        font-size: 12px;
        padding: 12px 8px;
    }
    
    .badge-value {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .summary-amount {
        font-size: 32px;
    }
    
    .stat-value {
        font-size: 20px;
    }
}

/* ============================================
   LAPORAN TEAM (Team Report) STYLES
   ============================================ */

/* Top Tabs */
.team-top-tabs {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    margin-top: 15px;
}

.team-tab-item {
    flex: 1;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00A3E0, #0072CE);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-tab-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 163, 224, 0.3);
}

.team-tab-item.active {
    background: linear-gradient(135deg, 
        rgba(0, 163, 224, 0.3) 0%, 
        rgba(0, 114, 206, 0.3) 100%);
}

.team-tab-item.active::before {
    opacity: 1;
}

.tab-icon {
    font-size: 20px;
}

.tab-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Date Filter Card */
.date-filter-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: fadeInScale 0.5s ease-out;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-icon {
    font-size: 24px;
}

.filter-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.date-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-input-wrapper {
    flex: 1;
}

.modern-date-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.modern-date-input:focus {
    outline: none;
    border-color: #00A3E0;
    background: rgba(0, 163, 224, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.2);
}

.modern-date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.date-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 600;
}

.filter-search-btn {
    background: linear-gradient(135deg, #00A3E0, #0072CE);
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.4);
    position: relative;
    overflow: hidden;
}

.filter-search-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.filter-search-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 163, 224, 0.6);
}

.filter-search-btn:active {
    transform: translateY(0);
}

.filter-search-btn.loading .btn-text::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

.btn-icon {
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* Team Stats Grid */
.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.team-stat-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 18px 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.5s ease-out backwards;
    transition: all 0.3s ease;
    text-align: center;
}

.team-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00A3E0, #9B30FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 163, 224, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.team-stat-card:hover::before {
    opacity: 1;
}

.team-stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.team-stat-value {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 8px 0;
    text-shadow: 0 2px 15px rgba(0, 163, 224, 0.5);
}

.team-stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Level Tabs */
.level-tabs-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: fadeInScale 0.5s ease-out;
}

.level-tabs {
    display: flex;
    position: relative;
    z-index: 2;
}

.level-tab-item {
    flex: 1;
    padding: 12px 15px;
    text-align: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.level-number {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.3), rgba(155, 48, 255, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.level-tab-item.active {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.level-tab-item.active .level-number {
    background: linear-gradient(135deg, #00A3E0, #0072CE);
    box-shadow: 0 2px 10px rgba(0, 163, 224, 0.5);
}

.level-indicator {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: calc(33.333% - 16px);
    height: calc(100% - 16px);
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.3), rgba(0, 114, 206, 0.3));
    border-radius: 12px;
    transition: left 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.4);
}

/* Level Content */
.level-content-wrapper {
    position: relative;
}

.level-content-panel {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.level-content-panel.active {
    display: block;
}

/* Recharge Summary */
.recharge-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.recharge-summary-card {
    background: linear-gradient(135deg, 
        rgba(0, 163, 224, 0.25) 0%, 
        rgba(0, 114, 206, 0.25) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 4px 20px rgba(0, 163, 224, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.5s ease-out;
    transition: all 0.3s ease;
}

.recharge-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 163, 224, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.recharge-icon {
    font-size: 36px;
    animation: bounce 2s ease-in-out infinite;
}

.recharge-info {
    flex: 1;
}

.recharge-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.recharge-value {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 5px 0;
    text-shadow: 0 2px 15px rgba(0, 163, 224, 0.5);
}

.recharge-unit {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-top: 3px;
}

/* Level Table */
.level-table-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.level-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.level-table thead {
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.3), rgba(0, 114, 206, 0.3));
    border-radius: 12px;
}

.level-table thead th {
    padding: 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border: none;
}

.level-table thead th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.level-table thead th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.level-table-row {
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out backwards;
}

.level-table-row:hover {
    background: rgba(0, 163, 224, 0.15);
    transform: translateX(5px);
}

.level-table td {
    padding: 15px 12px;
    color: #ffffff;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.level-table tbody tr:last-child td {
    border-bottom: none;
}

.level-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.4), rgba(155, 48, 255, 0.4));
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 163, 224, 0.3);
}

.table-value {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.table-value.success {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* Empty Level State */
.empty-level-state {
    text-align: center;
    padding: 80px 20px;
    animation: fadeIn 0.5s ease-out;
}

.empty-level-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 163, 224, 0.3));
}

.empty-level-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.empty-level-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Top Tab Content Panels */
.top-tab-content {
    position: relative;
}

.top-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.top-tab-panel.active {
    display: block;
}

/* Team Members Grid */
.team-members-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-member-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.5s ease-out;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00A3E0, #0072CE, #9B30FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 163, 224, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.team-member-card:hover::before {
    opacity: 1;
}

.member-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 163, 224, 0.5);
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.3);
}

.member-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.5);
}

.member-status.online {
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
}

.member-status.offline {
    background: #757575;
}

.member-info {
    flex: 1;
    min-width: 0;
}

.member-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.member-id {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 10px;
}

.member-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.member-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 163, 224, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.member-stat .stat-icon {
    font-size: 14px;
}

.member-stat .stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.member-level {
    flex-shrink: 0;
}

.level-badge-sm {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.4), rgba(155, 48, 255, 0.4));
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 163, 224, 0.3);
}

/* Empty Team State */
.empty-team-state {
    text-align: center;
    padding: 80px 20px;
    animation: fadeIn 0.5s ease-out;
}

.empty-team-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 163, 224, 0.3));
}

.empty-team-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.empty-team-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 30px;
}

.btn-invite-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00A3E0, #0072CE);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 163, 224, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-invite-team::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.btn-invite-team:hover::before {
    width: 300px;
    height: 300px;
}

.btn-invite-team:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 163, 224, 0.7);
}

.btn-invite-team .btn-icon {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.btn-invite-team .btn-text {
    position: relative;
    z-index: 1;
}

/* Responsive Design for Team Report */
@media (max-width: 576px) {
    .team-tab-item {
        padding: 12px 15px;
    }
    
    .tab-text {
        font-size: 12px;
    }
    
    .date-filter-form {
        flex-wrap: wrap;
    }
    
    .date-input-wrapper {
        flex: 1 1 calc(50% - 5px);
    }
    
    .filter-search-btn {
        flex: 1 1 100%;
        justify-content: center;
        margin-top: 5px;
    }
    
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .team-stat-card {
        padding: 15px 12px;
    }
    
    .team-stat-icon {
        font-size: 28px;
    }
    
    .team-stat-value {
        font-size: 18px;
    }
    
    .team-stat-label {
        font-size: 10px;
    }
    
    .level-tab-item {
        padding: 10px;
        font-size: 11px;
    }
    
    .level-text {
        display: none;
    }
    
    .recharge-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .level-table thead th {
        font-size: 10px;
        padding: 10px 8px;
    }
    
    .level-table td {
        font-size: 12px;
        padding: 12px 8px;
    }
    
    .team-member-card {
        flex-direction: row;
        padding: 15px;
    }
    
    .member-avatar {
        width: 60px;
        height: 60px;
    }
    
    .member-name {
        font-size: 14px;
    }
    
    .member-stats {
        gap: 8px;
    }
    
    .member-stat {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .level-badge-sm {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ============================================
   PUSAT KREDIT (Credit Center) STYLES
   ============================================ */

/* Credit Score Card */
.credit-score-card {
    background: linear-gradient(135deg, 
        rgba(0, 163, 224, 0.25) 0%, 
        rgba(0, 114, 206, 0.25) 50%, 
        rgba(155, 48, 255, 0.25) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 163, 224, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
    animation: fadeInScale 0.6s ease-out;
    text-align: center;
}

.credit-score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 163, 224, 0.3), transparent 70%);
    animation: rotateGradient 10s linear infinite;
    pointer-events: none;
}

.credit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.5), transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.credit-header {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.credit-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 10px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 20px rgba(255, 215, 0, 0.5));
}

.credit-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.gauge-container {
    position: relative;
    z-index: 2;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px 0;
}

.gauge-container canvas {
    width: 100% !important;
    height: auto !important;
}

.credit-value-wrapper {
    position: relative;
    z-index: 2;
    margin: 20px 0;
}

.credit-score-value {
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 5px 20px rgba(255, 215, 0, 0.5));
}

.credit-score-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Credit Status Badge */
.credit-status-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(67, 160, 71, 0.3));
    padding: 12px 25px;
    border-radius: 30px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.credit-status-badge .status-icon {
    font-size: 24px;
}

.credit-status-badge .status-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Status variations */
.credit-status-badge.status-danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.4), rgba(229, 57, 53, 0.4));
    box-shadow: 0 4px 20px rgba(244, 67, 54, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.credit-status-badge.status-warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.4), rgba(251, 140, 0, 0.4));
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.5);
}

.credit-status-badge.status-moderate {
    background: linear-gradient(135deg, rgba(255, 221, 0, 0.4), rgba(253, 216, 53, 0.4));
    box-shadow: 0 4px 20px rgba(255, 221, 0, 0.5);
}

.credit-status-badge.status-good {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(67, 160, 71, 0.3));
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.credit-status-badge.status-excellent {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 193, 7, 0.4));
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* Credit Levels Grid */
.credit-levels-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credit-level-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInRight 0.5s ease-out backwards;
    transition: all 0.3s ease;
}

.credit-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    transition: width 0.3s ease;
}

.credit-level-card.danger::before {
    background: linear-gradient(180deg, #F44336, #E53935);
}

.credit-level-card.warning::before {
    background: linear-gradient(180deg, #FF9800, #FB8C00);
}

.credit-level-card.moderate::before {
    background: linear-gradient(180deg, #FFDD00, #FDD835);
}

.credit-level-card.good::before {
    background: linear-gradient(180deg, #4CAF50, #43A047);
}

.credit-level-card.excellent::before {
    background: linear-gradient(180deg, #FFD700, #FFC107);
}

.credit-level-card:hover {
    transform: translateX(10px);
    box-shadow: 
        0 8px 30px rgba(0, 163, 224, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.credit-level-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.level-icon {
    font-size: 28px;
}

.level-range {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 15px;
}

.level-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.level-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Credit Guidelines Card */
.credit-guidelines-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: fadeInScale 0.6s ease-out;
}

.guidelines-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 163, 224, 0.3);
}

.guidelines-icon {
    font-size: 32px;
}

.guidelines-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guideline-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out backwards;
}

.guideline-item:hover {
    background: rgba(0, 163, 224, 0.2);
    transform: translateX(5px);
}

.item-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00A3E0, #0072CE);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.4);
}

.item-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

/* Responsive Design for Credit Center */
@media (max-width: 576px) {
    .credit-score-card {
        padding: 30px 20px;
    }
    
    .credit-icon {
        font-size: 40px;
    }
    
    .credit-title {
        font-size: 18px;
    }
    
    .credit-score-value {
        font-size: 48px;
    }
    
    .credit-score-label {
        font-size: 14px;
    }
    
    .credit-status-badge {
        padding: 10px 20px;
    }
    
    .credit-status-badge .status-icon {
        font-size: 20px;
    }
    
    .credit-status-badge .status-text {
        font-size: 14px;
    }
    
    .level-icon {
        font-size: 24px;
    }
    
    .level-title {
        font-size: 16px;
    }
    
    .level-desc {
        font-size: 12px;
    }
    
    .guidelines-icon {
        font-size: 28px;
    }
    
    .guidelines-title {
        font-size: 18px;
    }
    
    .guideline-item {
        padding: 12px;
        gap: 12px;
    }
    
    .item-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .item-text {
        font-size: 13px;
    }
}

/* ============================================
   UNDANG (Invitation) STYLES
   ============================================ */

/* Invite Header Card */
.invite-header-card {
    background: linear-gradient(135deg, 
        rgba(0, 163, 224, 0.25) 0%, 
        rgba(155, 48, 255, 0.25) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 163, 224, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: fadeInScale 0.6s ease-out;
}

.invite-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(155, 48, 255, 0.3), transparent 70%);
    animation: rotateGradient 10s linear infinite;
    pointer-events: none;
}

.invite-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(155, 48, 255, 0.4), transparent 70%);
    filter: blur(50px);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.invite-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 20px rgba(155, 48, 255, 0.5));
    position: relative;
    z-index: 2;
}

.invite-header-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.invite-header-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Modern Invite Card */
.modern-invite-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: fadeInScale 0.6s ease-out 0.2s backwards;
}

.invite-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.3), transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

/* Sender Info */
.sender-info {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.sender-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sender-name {
    color: #00A3E0;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 15px rgba(0, 163, 224, 0.5);
}

.sender-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

/* QR Section */
.qr-section {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.qr-container {
    display: inline-block;
    position: relative;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 163, 224, 0.3);
    margin-bottom: 15px;
}

.qr-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: #00A3E0;
    border-style: solid;
}

.qr-corner.top-left {
    top: 5px;
    left: 5px;
    border-width: 3px 0 0 3px;
    border-radius: 15px 0 0 0;
}

.qr-corner.top-right {
    top: 5px;
    right: 5px;
    border-width: 3px 3px 0 0;
    border-radius: 0 15px 0 0;
}

.qr-corner.bottom-left {
    bottom: 5px;
    left: 5px;
    border-width: 0 0 3px 3px;
    border-radius: 0 0 0 15px;
}

.qr-corner.bottom-right {
    bottom: 5px;
    right: 5px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 15px 0;
}

.qr-image {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.qr-instruction {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
}

/* Invitation Code */
.invitation-code-section {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.code-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.invitation-code {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.code-digit {
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.3), rgba(0, 114, 206, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 4px 15px rgba(0, 163, 224, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.1);
    animation: scaleIn 0.5s ease-out backwards;
    transition: transform 0.3s ease;
}

.code-digit:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(0, 163, 224, 0.5),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
}

/* Divider */
.invite-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
    z-index: 2;
}

.invite-divider::before,
.invite-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 40px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.invite-divider::before {
    left: 0;
}

.invite-divider::after {
    right: 0;
}

.divider-text {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

/* Link Section */
.link-section {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.link-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

.link-container {
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.invite-link-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    padding: 10px 15px;
    outline: none;
    text-overflow: ellipsis;
}

.copy-link-btn {
    background: linear-gradient(135deg, #00A3E0, #0072CE);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.4);
    position: relative;
    overflow: hidden;
}

.copy-link-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.copy-link-btn:hover::before {
    width: 200px;
    height: 200px;
}

.copy-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 163, 224, 0.6);
}

.copy-link-btn.copied {
    background: linear-gradient(135deg, #4CAF50, #43A047);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5);
}

.copy-icon,
.copy-text {
    position: relative;
    z-index: 1;
}

/* Share Section */
.share-section {
    position: relative;
    z-index: 2;
}

.share-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.share-btn {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-btn.whatsapp::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.share-btn.telegram::before {
    background: linear-gradient(90deg, #0088cc, #229ED9);
}

.share-btn.more::before {
    background: linear-gradient(90deg, #00A3E0, #0072CE);
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.4);
}

.share-btn:hover::before {
    opacity: 1;
}

.share-btn-icon {
    font-size: 28px;
}

.share-btn-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.benefit-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.5s ease-out backwards;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 12px 35px rgba(0, 163, 224, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    animation: bounce 2s ease-in-out infinite;
}

.benefit-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.benefit-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Invitation */
@media (max-width: 576px) {
    .invite-header-card {
        padding: 25px 20px;
    }
    
    .invite-icon {
        font-size: 40px;
    }
    
    .invite-header-title {
        font-size: 18px;
    }
    
    .invite-header-desc {
        font-size: 13px;
    }
    
    .modern-invite-card {
        padding: 25px 20px;
    }
    
    .qr-image {
        width: 180px;
        height: 180px;
    }
    
    .code-digit {
        width: 35px;
        height: 45px;
        font-size: 20px;
    }
    
    .link-container {
        flex-direction: column;
    }
    
    .copy-link-btn {
        width: 100%;
        justify-content: center;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
}

/* ============================================
   PRODUK (Product Investment) STYLES
   ============================================ */

/* Product Hero Banner */
.product-hero-banner {
    position: relative;
    height: 180px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 163, 224, 0.4);
    animation: fadeInScale 0.6s ease-out;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.5), transparent 70%);
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.hero-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Balance Cards Grid */
.balance-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.balance-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.5s ease-out;
    transition: all 0.3s ease;
}

.balance-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 163, 224, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.balance-icon {
    font-size: 36px;
    animation: bounce 2s ease-in-out infinite;
}

.balance-info {
    flex: 1;
}

.balance-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.balance-amount {
    color: #FFD700;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
}

/* Products Section */
.products-section {
    animation: fadeIn 0.6s ease-out;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.section-icon {
    font-size: 24px;
}

.section-title-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Modern Product Card */
.modern-product-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.6s ease-out backwards;
    transition: all 0.3s ease;
    position: relative;
}

.modern-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00A3E0, #0072CE, #9B30FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 50px rgba(0, 163, 224, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.modern-product-card:hover::before {
    opacity: 1;
}

.product-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 163, 224, 0.2), transparent 70%);
    pointer-events: none;
}

.product-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-badge.hot {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.9), rgba(244, 67, 54, 0.9));
    color: #ffffff;
    animation: pulse 2s ease-in-out infinite;
}

.product-badge.new {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 235, 59, 0.9));
    color: #000000;
}

.product-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.product-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 163, 224, 0.2);
    padding: 8px 15px;
    border-radius: 15px;
}

.stat-icon {
    font-size: 16px;
}

.stat-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.stat-value.profit {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* Product Progress */
.product-progress {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
}

.progress-percentage {
    color: #00A3E0;
    font-size: 13px;
    font-weight: 700;
}

.modern-progress-bar {
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00A3E0, #0072CE);
    border-radius: 10px;
    position: relative;
    transition: width 0.3s ease;
}

.progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Product Detail Button */
.product-detail-btn {
    width: 100%;
    background: linear-gradient(135deg, #00A3E0, #0072CE);
    border: none;
    border-radius: 15px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 163, 224, 0.4);
    position: relative;
    overflow: hidden;
}

.product-detail-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.product-detail-btn:hover::before {
    width: 400px;
    height: 400px;
}

.product-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 163, 224, 0.6);
}

.btn-icon,
.btn-text,
.btn-arrow {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.product-detail-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Product Modal */
.product-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 99999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.product-modal.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.product-modal.show .modal-sheet {
    transform: translateY(0) !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90vh;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px 30px 0 0;
    box-shadow: 
        0 -10px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    cursor: default;
}

.modal-handle {
    width: 40px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin: 15px auto 10px;
}

.modal-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title-custom {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal-close-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.close-icon {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.modal-body-custom {
    padding: 25px;
}

/* Detail Section */
.detail-section {
    margin-bottom: 25px;
}

.detail-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 163, 224, 0.3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.title-icon {
    font-size: 20px;
}

.detail-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(0, 163, 224, 0.2);
    transform: translateX(5px);
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
}

.detail-value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.detail-value.highlight {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* Calculation Card */
.calculation-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-item:last-child {
    border-bottom: none;
}

.calc-item.total {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid rgba(0, 163, 224, 0.3);
}

.calc-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
}

.calc-value {
    color: #FFD700;
    font-size: 13px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.calc-item.total .calc-value {
    font-size: 16px;
}

/* Description */
.detail-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 15px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 12px;
    border-left: 3px solid #00A3E0;
}

/* Wallet Info Card */
.wallet-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, 
        rgba(0, 163, 224, 0.3) 0%, 
        rgba(0, 114, 206, 0.3) 100%);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 163, 224, 0.3);
}

.wallet-icon {
    font-size: 40px;
}

.wallet-details {
    flex: 1;
}

.wallet-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.wallet-balance {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

/* Investment Form */
.investment-form {
    margin-bottom: 20px;
}

.form-label-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.label-icon {
    font-size: 18px;
}

.input-wrapper-custom {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.input-wrapper-custom:focus-within {
    border-color: #00A3E0;
    background: rgba(0, 163, 224, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.2);
}

.input-prefix {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
}

.form-input-custom {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
    outline: none;
}

.form-input-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.available-balance {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 12px;
}

.available-label {
    color: rgba(255, 255, 255, 0.6);
}

.available-amount {
    color: #00A3E0;
    font-weight: 700;
}

/* Submit Investment Button */
.submit-investment-btn {
    width: 100%;
    background: linear-gradient(135deg, #00A3E0, #0072CE);
    border: none;
    border-radius: 20px;
    padding: 16px 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 163, 224, 0.5);
    position: relative;
    overflow: hidden;
}

.submit-investment-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.submit-investment-btn:hover::before {
    width: 500px;
    height: 500px;
}

.submit-investment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 163, 224, 0.7);
}

.submit-investment-btn:active {
    transform: translateY(0);
}

.submit-investment-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-investment-btn.loading .submit-text::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

.submit-icon,
.submit-text {
    position: relative;
    z-index: 1;
}

/* Responsive Design for Product Page */
@media (max-width: 576px) {
    .product-hero-banner {
        height: 150px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .balance-card {
        padding: 15px;
    }
    
    .balance-icon {
        font-size: 30px;
    }
    
    .balance-amount {
        font-size: 18px;
    }
    
    .product-thumbnail {
        height: 150px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-body-custom {
        padding: 20px;
    }
    
    .detail-section-title {
        font-size: 15px;
    }
    
    .calc-value {
        font-size: 11px;
    }
    
    .wallet-info-card {
        padding: 15px;
    }
    
    .wallet-icon {
        font-size: 32px;
    }
    
    .wallet-balance {
        font-size: 20px;
    }
}

/* ===== PRODUK.HTML MODERN STYLES ===== */

/* Balance Cards Grid */
.balance-cards-grid-produk {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 15px;
    margin: 0;
}

.balance-card-produk {
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.1), rgba(0, 114, 206, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(0, 114, 206, 0.15);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.balance-card-produk:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 114, 206, 0.25);
}

.balance-icon-produk {
    font-size: 32px;
    animation: bounce 2s ease infinite;
}

.balance-info-produk {
    flex: 1;
}

.balance-label-produk {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-amount-produk {
    color: #FFD700;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Product Section */
.product-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 114, 206, 0.3);
}

.product-section-title .title-icon {
    font-size: 24px;
    animation: pulse 2s ease infinite;
}

/* Update existing box-product */
.box-product {
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.15), rgba(0, 114, 206, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Update existing list-product */
.list-product {
    border: 1px solid rgba(0, 114, 206, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    animation: slideInRight 0.6s ease;
    position: relative;
    overflow: hidden;
}

.list-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0072CE, #00D084);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.list-product:hover {
    transform: translateX(10px);
    border-color: #0072CE;
    box-shadow: 0 8px 24px rgba(0, 114, 206, 0.3);
}

.list-product:hover::before {
    transform: scaleY(1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF1493, #FF4500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
    animation: pulse 2s ease infinite;
}

.product-badge.badge-new {
    background: linear-gradient(135deg, #00D084, #0072CE);
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.4);
}

/* Update bg-product */
.bg-product {
    width: 130px;
    height: 130px;
    background-color: #1a3a52;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.list-product:hover .bg-product {
    transform: scale(1.05);
}

/* Product Info */
.product-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.product-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.profit-highlight {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.progress-wrapper-produk {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.progress-text {
    font-size: 14px;
    color: white;
    font-weight: 600;
    min-width: 40px;
}

/* Update bar-progress */
.bar-progress {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.inner-prog {
    height: 100%;
    background: linear-gradient(90deg, #00D084, #0072CE);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 208, 132, 0.5);
    animation: shimmer 2s infinite;
    transition: width 0.5s ease;
}

/* Update btn-product */
.btn-product {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0072CE, #004B87);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 114, 206, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-product::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-product:hover::before {
    width: 300px;
    height: 300px;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 114, 206, 0.5);
    color: white;
}

.btn-product .btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-product:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===== MODAL STYLES ===== */

/* Update #pengenalan */
#pengenalan {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0, 75, 135, 0.98), rgba(0, 114, 206, 0.98));
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    overflow-y: auto;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5);
}

.modal-handle-produk {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* Update header-pengenalan */
.header-pengenalan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-title-produk {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close-produk {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-close-produk:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    color: white;
}

/* Update content-pengenalan */
.content-pengenalan {
    position: relative;
    padding-bottom: 20px;
}

.detail-section-produk {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section-subtitle-produk {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subtitle-icon {
    font-size: 20px;
}

.detail-items-produk {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item-produk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid #0072CE;
}

.detail-label-produk {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.detail-value-produk {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.highlight-produk {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Calculation Card */
.calculation-card-produk {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-item-produk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.calc-item-produk.total-calc {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.2), rgba(0, 114, 206, 0.2));
    border: 1px solid rgba(0, 208, 132, 0.5);
    padding: 15px;
}

.calc-label-produk {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.calc-value-produk {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.calc-item-produk.total-calc .calc-value-produk {
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Description */
.description-text-produk {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Update bottom-info */
.bottom-info {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 75, 135, 0.95) 0%, rgba(0, 75, 135, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.wallet-info-modal {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wallet-icon-modal {
    font-size: 32px;
    animation: bounce 2s ease infinite;
}

.wallet-label-modal {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 5px;
}

.wallet-balance-modal {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Investment Form */
.investment-form-modal {
    margin-bottom: 15px;
}

.form-label-modal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.label-icon-modal {
    font-size: 18px;
}

.input-wrapper-modal {
    position: relative;
    margin-bottom: 8px;
}

.input-prefix-modal {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
}

.form-input-modal {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-input-modal::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input-modal:focus {
    outline: none;
    border-color: #0072CE;
    box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.available-info-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    padding: 0 5px;
}

/* Submit Button */
.submit-btn-modal {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00D084, #0072CE);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 208, 132, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn-modal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn-modal:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 208, 132, 0.5);
}

.submit-btn-modal:active {
    transform: translateY(-1px);
}

.submit-icon-modal {
    font-size: 20px;
    animation: bounce 2s ease infinite;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* End - produk.html Styles */

/* ===== LUCKY.HTML MODERN STYLES ===== */

/* Lucky Record Button in Header */
.lucky-record-btn-header {
    background: linear-gradient(135deg, #0072CE, #004B87);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 114, 206, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lucky-record-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 114, 206, 0.5);
    color: white;
}

/* Lucky Header Info */
.lucky-header-info {
    padding: 20px 15px;
    margin: 0;
}

.ticket-info-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    animation: fadeInLeft 0.6s ease;
}

.ticket-icon {
    font-size: 36px;
    animation: bounce 2s ease infinite;
}

.ticket-details {
    flex: 1;
}

.ticket-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-count {
    color: #FFD700;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Spin Container - Update existing */
.container-spin {
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.2), rgba(0, 114, 206, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Box Spin - Update existing */
.box-spin {
    width: 280px;
    height: 280px;
    position: relative;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.box-spin:hover {
    transform: scale(1.05);
}

.box-spin img {
    animation: spin 8s linear infinite;
    filter: brightness(1.1);
}

/* Lucky Draw - Update existing */
.lucky-draw {
    width: 245px;
    height: 245px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    cursor: pointer;
}

/* Winners Section */
.winners-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 15px 20px;
    margin: 15px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

.winners-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.winners-icon {
    font-size: 24px;
    animation: bounce 2s ease infinite;
}

/* Update box-member2 */
.box-member2 {
    height: 312px;
    overflow: hidden;
    padding: 0 15px;
}

/* Lucky Winner Cards - Update list-member for lucky page */
.lucky-winner-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.lucky-winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700, #FFA500);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.lucky-winner-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.3);
}

.lucky-winner-card:hover::before {
    transform: scaleY(1);
}

.lucky-winner-card .img-member {
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.winner-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.winner-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.winner-prize {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    padding: 6px 15px;
    border-radius: 20px;
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
}

/* Modal Kiat - Update existing */
#vanKiat {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.box-kiat {
    width: 90%;
    max-width: 350px;
    animation: modalSlideUp 0.5s ease;
}

.kiat-icon-wrapper {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: -40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    animation: bounce 2s ease infinite;
}

.kiat-icon {
    font-size: 40px;
}

/* Update body-kiat */
.body-kiat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.95));
    backdrop-filter: blur(10px);
    padding: 50px 25px 25px 25px;
    border-radius: 25px 25px 0 0;
    border-bottom: none;
    text-align: center;
}

.kiat-title {
    color: #004B87;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.kiat-text {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Update footer-kiat */
.footer-kiat {
    background: white;
    padding: 0;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
}

.kiat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(135deg, #00D084, #0072CE);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kiat-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.kiat-btn:hover::before {
    width: 400px;
    height: 400px;
}

.kiat-btn:hover {
    color: white;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

/* End - lucky.html Styles */