* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    touch-action: manipulation;
}

body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    background-image: url('/src/image/background/background.webp');
    background-position: center center;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: 100vw 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.514);
    z-index: -1;
}

/* Header dan Navbar */
.top-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #302500, #000000, #e6b000, #FFF4C2);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
                inset 1px 1px 3px rgb(255, 255, 255),
                1px 1px 3px rgb(0, 0, 0);
}

.top-bar:hover {
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #ffecae, #ffffff, #e6b000, #FFF4C2);
}

.logo {
    width: 100px;
    height: 50px;
    border-radius: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hamburger-menu {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ffee00;
    transition: all 0.3s ease;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.hamburger-menu:hover {
    background: linear-gradient(135deg, #ffc2c2, #e60000, #300000, #e60000);
    transform: scale(1.05);
}

.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(to right, #FFF4C2, #e6b000, #302500, #e6b000);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background: linear-gradient(to right, #FFF4C2, #e6b000, #ffffff, #e6b000);
}


.banner-container {
    position: relative;
    margin-top: 70px;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    touch-action: pan-y;
}

.banner-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.banner-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-content {
    position: absolute;
    width: 100%;
    height: 200%;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.banner-slide img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
}

.slide-arrow {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.arrow-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.arrow-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.arrow-up {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow-down {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 237, 155, 0.8);
}

.v-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v-indicator.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 235, 148, 0.8);
}

.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

footer {
    background: #000000;
    margin-top: 0px;
    text-align: center;
    color: #aaa;
}

.footer {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    background: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 10%;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
                inset 1px 1px 3px rgb(255, 255, 255),
                1px 1px 3px rgb(0, 0, 0);
}

.footer-logo {
    background:#ffffff;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffc400;
    box-shadow: 0 0 20px rgba(212, 55, 55, 0.5);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            0px 0px 3px rgb(255, 0, 0);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title {
    font-weight: bold;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgb(255, 0, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
}

/* Konten Bukti Transfer */
.bukti-tf-container {
    margin-top: 50px;
    padding: 20px;
    animation: fadeIn 1s ease;
}

.bukti-header {
    text-align: center;
    margin-bottom: 10px;
}

.bukti-header h1 {
    font-size: 2.5rem;
    color: #ffd900;
    text-shadow: 2px 2px 2px #000;
    margin-bottom: 10px;
    margin-top: 10px;
    background: linear-gradient(135deg, #000, #222, #444, #222, #000);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}


.date-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100);
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #ffc400;
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff0000, #b30000, #660000);
    color: white;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.bukti-list {
    margin-top: 0px;
}

.bukti-item {
    display: flex;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.397), rgb(0, 0, 0));
    border: 2px solid #ffd900;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
                inset 1px 1px 3px rgb(255, 255, 255),
                1px 1px 3px rgb(0, 0, 0);
}

.bukti-item:hover {
    transform: translateY(-5px);
    border-color: #ff6a00;
}

.bukti-details {
    flex-grow: 1;
}

.player-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.player-id {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px #000000;
}

.bukti-date {
    color: #00ff00;
    font-size: 0.9rem;
}

.game-name {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00ff15;
    text-shadow: 1px 1px 2px #000000;
}

.amounts {
    display: flex;
    justify-content: space-between;
}

.amount-box {
    text-align: center;
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid #ffd000;
    background: rgb(85, 85, 85);
    flex-basis: 30%;
    box-shadow: inset -1px -1px 3px rgba(0,0,0,0.5),
                inset 1px 1px 3px rgba(255,255,255,0.2);
}

.amount-box:hover {
    border-color: #ff6a00;
}

.amount-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1px;
    text-shadow: 1px 1px 2px #000000;
}

.amount-value {
    font-weight: bolder;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px #000000;
}

.dp-amount {
    color: #00ff15;
}

.jp-amount {
    color: #ffd900;
}

.wd-amount {
    color: #ff6a00;
}

.bukti-action {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.bukti-btn {
    background: linear-gradient(180deg, #fff9a4, #ffc400, #302500);
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
                inset 1px 1px 3px rgb(255, 255, 255),
                1px 1px 3px rgb(0, 0, 0);
}

.bukti-btn:hover {
    background: linear-gradient(180deg, rgb(255, 182, 182), #ff0000, #300000);
    transform: translateY(-3px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination button {
    background: linear-gradient(135deg, #2b2b2b, #000000);
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
    font-weight: bold;
    text-align: center;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
                inset 1px 1px 3px rgb(255, 255, 255),
                1px 1px 3px rgb(0, 0, 0);
}

.pagination button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff0000, #b30000, #660000);
    color: white;
    transform: translateY(-3px);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-number {
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 10%;
    border: 1px solid #ffae00;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.page-number:hover {
        background: linear-gradient(135deg, #ffd900, #b38300, #665300);
}
.page-number.active {
    background: linear-gradient(135deg, #ffffff, #000000);
    color: white;
}

/* Popup Bukti Transfer */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); /* Kurangi opacity agar blur lebih terlihat */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(12px) brightness(0.7);
    -webkit-backdrop-filter: blur(12px) brightness(0.7);
}

.popup-content {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    border: 3px solid #ffd900;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh; 
    overflow-y: hidden;
    overflow-x: hidden;
    animation: popupIn 0.5s ease-out;
    box-sizing: border-box; 
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            0px 0px 3px rgb(255, 217, 0);
}

.popup-content {
    scrollbar-width: thin;
    scrollbar-color: #ffd900 #1a1a1a;
}

.popup-content::-webkit-scrollbar {
width: 6px;
}

.popup-content::-webkit-scrollbar-thumb {
background: #ffd900;
border-radius: 4px;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #ff0000, #b30000, #660000);
    border-bottom: 2px solid #ffd900;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            0px 0px 3px rgb(255, 217, 0);
}

.popup-header h2 {
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-popup:hover {
    transform: rotate(90deg);
    color: #ffd900;
}

.popup-tabs {
    display: flex;
    border-bottom: 1px solid #ffd900;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 100;
    visibility: visible;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

}

.loading-content {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
}

.loading-spinner {
    width: 70px;
    height: 70px;
    border: 7px solid rgba(255, 217, 0, 0.3);
    border-radius: 50%;
    border-top: 7px solid #ffd900;
    animation: spin 8s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    color: #ffd900;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 217, 0, 0.7);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: rgba(30,30,30,0.8);
    color: #ffffff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #ffd900, #ffaa00, #ff6a00);
    color: #000;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            0px 0px 3px rgb(255, 217, 0);
}

.tab-btn:hover:not(.active) {
    background: rgba(70,70,70,0.8);
    color: white;
}

.tab-pane {
    padding: 20px;
    display: none;
}

.tab-pane.active {
    display: block;
}

.detail-table {
    width: 100%;    
}

.detail-table td {
    padding: 10px;
    border: 1px solid #ffd900;
    color: rgb(81, 255, 0);
    font-weight: bold;
}

.detail-table tr:last-child td {
    border-bottom: none;
}

.detail-table td:first-child {
    font-weight: bold;
    color: #ffffff;
}

.transfer-proof {
    position: relative;
    text-align: center;
}

.transfer-proof img {
    width: 100%;
    border-radius: 10px;
}

.transfer-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 13px;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    filter: blur(0.7px);
    color: #005b85;
    white-space: pre-line;
    overflow-y: auto;
    line-height: 1.2;
    font-weight: 500;
}

.blur-text {
    filter: blur(3px);
    display: inline-block;
}

.transfer-notice {
    margin-top: 10px;
    font-style: italic;
    color: #ffd900;
    text-align: center;
}

footer {
    background: #000000;
    margin-top: 30px;
    text-align: center;
    color: #aaa;
}

.footer {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    background: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 10%;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
                inset 1px 1px 3px rgb(255, 255, 255),
                1px 1px 3px rgb(0, 0, 0);
}

.footer-logo {
    background:#ffffff;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffc400;
    box-shadow: 0 0 20px rgba(212, 55, 55, 0.5);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            0px 0px 3px rgb(255, 0, 0);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title {
    font-weight: bold;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgb(255, 0, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
}

/* Custom Date Picker */
.custom-date-filter {
    display: none;
    margin-top: 0px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    border: 2px solid #ffd900;
    animation: fadeIn 0.5s ease;
}

.date-range-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.date-picker {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.date-picker label {
    color: #ffd900;
    font-weight: bold;
}

.date-picker input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ffc400;
    background: #333;
    color: white;
    font-size: 1rem;
    min-width: 180px;
}

.date-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.date-actions button {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ffc400;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.apply-date {
    background: linear-gradient(135deg, #00ff00, #005c00);
    color: white;
}

.cancel-date {
    background: linear-gradient(135deg, #ff0000, #580000);
    color: white;
}

.date-actions button:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popupIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Responsive */
@media (max-width: 700px) {
    body {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        background-color: #000;
        color: #fff;
        overflow-x: hidden;
        background-image: url('/src/image/background/background.webp');
        background-repeat: repeat;
        background-attachment: scroll;
        background-size: contain;
        flex-direction: column;
        position: relative;
    }

    .bukti-item {
        flex-direction: column;
    }
    
    .transfer-text {
        font-size: 20px; 
        padding: 10px;
    }
    
    .amounts {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .amount-box {
        flex-basis: 100%;
    }
    
    .bukti-action {
        margin: 15px 0 0;
        justify-content: center;
    }
    
    .date-range-selector {
        flex-direction: column;
    }
    
    .date-picker {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .transfer-text {
        font-size: 20px; 
        padding: 10px;
    }

}

/* Responsive */
@media (max-width: 550px) {
    .transfer-text {
        font-size: 18px; 
        padding: 10px;
    }
}

/* Responsive */
@media (max-width: 500px) {
    .transfer-text {
        font-size: 17px; 
        padding: 10px;
    }
}

/* Responsive */
@media (max-width: 465px) {    
    .transfer-text {
        font-size: 14px; 
        padding: 10px;
    }
}

/* Responsive */
@media (max-width: 400px) {
    .transfer-text {
        font-size: 12px; 
        padding: 10px;
    }
}

/* Responsive */
@media (max-width: 360px) {    
    .transfer-text {
        font-size: 10px; 
        padding: 10px;
    }
}

/* Responsive */
@media (max-width: 300px) {
    .transfer-text {
        font-size: 9.5px; 
        padding: 10px;
    }
}

/* Responsive */
@media (max-width: 282px) {    
    .transfer-text {
        font-size: 8px; 
        padding: 10px;
    }
}


/* Responsive */
@media (max-width: 250px) {    
    .transfer-text {
        font-size: 7px; 
        padding: 10px;
    }
}

/* Responsive */
@media (max-width: 230px) {
    .transfer-text {
        font-size: 6px; 
        padding: 10px;
    }

}

/* Responsive */
@media (max-width: 200px) {
    .transfer-text {
        font-size: 5px; 
        padding: 10px;
    }

}

/* Responsive */
@media (max-width: 180px) {
    .transfer-text {
        font-size: 4px; 
        padding: 10px;
    }

}

/* Responsive */
@media (max-width: 150px) {
    .transfer-text {
        font-size: 3px; 
        padding: 10px;
    }

}

/* Responsive */
@media (max-width: 100px) {
    .transfer-text {
        font-size: 0.5px; 
        padding: 5px;
    }

}

@keyframes glow {
    0% { box-shadow: 0 0 3px rgba(255, 217, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 217, 0, 0.8); }
    100% { box-shadow: 0 0 3px rgba(255, 217, 0, 0.5); }
}

.bukti-header h1 {
    animation: glow 2s infinite;
}


/* Efek loading */
.loading {
    display: none;
    text-align: center;
    padding: 30px;
    color: #ffd900;
}

.loading i {
    font-size: 48px;
    margin-bottom: 15px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-container {
        height: 350px;
        margin-top: 75px;
    }
    
    .slide-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slide-info {
        left: 10px;
        bottom: 10px;
        padding: 10px;
        max-width: 70%;
    }
    
    .slide-info h3 {
        font-size: 18px;
    }
    
    .slide-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 250px;
    }
    
    .slide-indicators {
        bottom: 10px;
        right: 10px;
        gap: 6px;
        padding: 6px 10px;
    }
    
    .slide-counter {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 12px;
    }
}


.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(145deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #a50000, #ff0000, #ff8d8d);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: all 1s ease;
    box-shadow: -3px 0 15px rgb(0, 0, 0);
    border-left: 3px solid #ffe600;
}

.menu-overlay.active {
    right: 0;
}

.menu-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff, #e6b000, #a88100, #4e3c00, #000000, #e6b000, #FFF4C2);
    border-bottom: 2px solid #ffe600;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
    
}

.menu-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    text-align: center;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

.menu-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    margin-bottom: 15px;
    position: relative;
}

.menu-items > li > a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffffff, #e6b000, #a88100, #4e3c00, #000000, #e6b000, #FFF4C2);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid rgb(255, 230, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);

}

.menu-items > li > a:hover {
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #b9b9b9, #ffffff);
    transform: translateX(-5px);
    border-color: #ffe600;
}

.menu-items i {
    margin-right: 15px;
    color: #ffffff;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    
}

.close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #e0e0e0, #ffffff);
    border-radius: 50%;
    border: 1px solid #ffee00;
    transition: all 0.3s ease;
    box-shadow: inset -1px -1px 1px rgb(0, 0, 0),
            inset 1px 1px 1.5px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.close-menu:hover {
    background: linear-gradient(145deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #ff0000, #ffbbbb, #ffffff);
    transform: rotate(90deg);
}

/* Submenu Styles */
.submenu {
    list-style: none;
    padding-top: 8px;
    padding-left: 30px;
    padding-right: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.submenu.active {
    max-height: 1000px;
}

.submenu li {
    margin-bottom: 8px;
}

.submenu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #b9b9b9, #ffffff);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.5s ease;
    font-size: 0.95rem;
    border: 1px solid rgb(255, 208, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
                inset 1px 1px 3px rgb(255, 255, 255),
                1px 1px 3px rgb(0, 0, 0);
}

.submenu a:hover {
    background: linear-gradient(135deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #a50000, #ff0000, #ff8d8d);
    transform: translateX(-20px);
    border: 1px solid rgb(255, 208, 0);
}

.submenu i {
    font-size: 1rem;
    width: 25px;
    margin-right: 10px;
}

.has-submenu > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: auto;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.has-submenu.active > a::after {
    transform: rotate(180deg);
}

.provider-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.provider-logo {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.7);
    border: 2px solid #ffffff;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.provider-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
    border-color: #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            0px 0px 3px rgb(255, 217, 0);
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.copyright {
    margin-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

