/* crypDRAW Custom Styles */

/* Modals */
.crypto-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.crypto-modal-content {
    background: linear-gradient(251.22deg, #0C244B 0%, #0B3846 99.53%);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #F44A33;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(244, 74, 51, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crypto-modal-close {
    color: #fff;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.crypto-modal-close:hover {
    color: #F44A33;
}

.crypto-modal h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}

.crypto-modal p {
    color: #ddd;
    margin-bottom: 15px;
}

/* Wallet Info */
.wallet-info {
    color: #fff;
}

.wallet-info p {
    margin-bottom: 10px;
    word-break: break-all;
}

.balance-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.balance-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
}

.balance-item:last-child {
    border-bottom: none;
}

.balance-item span:last-child {
    transition: all 0.3s ease;
}

.balance-item span.balance-updated {
    animation: balanceFlash 0.5s ease;
}

@keyframes balanceFlash {
    0% {
        color: #fff;
        transform: scale(1);
        text-shadow: none;
    }
    50% {
        color: #4caf50;
        transform: scale(1.15);
        text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    }
    100% {
        color: #fff;
        transform: scale(1);
        text-shadow: none;
    }
}

.wallet-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.wallet-actions button {
    flex: 1;
}

/* Form Styles */
.deposit-form,
.withdraw-form {
    margin-top: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border: 1px solid rgba(244, 74, 51, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #F44A33;
}

.form-control option {
    background: #0C244B;
    color: #fff;
}

label {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-top: 15px;
}

/* Deposit Address */
.deposit-address-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.address-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
    word-break: break-all;
}

.address-display span {
    flex: 1;
    color: #fff;
    font-family: monospace;
}

.copy-btn {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: linear-gradient(223.14deg, #E8AE3D -17.3%, #F44A33 101.56%);
    transform: translateY(-2px);
}

.qr-code {
    text-align: center;
    margin: 20px 0;
}

.info-text {
    color: #ff9800;
    font-size: 14px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Withdraw Info */
.withdraw-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.withdraw-info p {
    margin: 8px 0;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: -100px;
    right: 30px;
    background: #4caf50;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transition: bottom 0.3s ease;
    font-size: 16px;
    max-width: 400px;
}

.toast-notification.show {
    bottom: 30px;
}

.toast-notification.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

.toast-notification.success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.toast-notification {
    font-weight: 600;
    line-height: 1.5;
}

/* Button Enhancements */
.btn-pok {
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pok:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 74, 51, 0.4);
}

#run-draw-btn {
    position: relative;
    overflow: hidden;
}

#run-draw-btn[style*="opacity: 0.7"] {
    pointer-events: none;
}

#run-draw-btn[style*="opacity: 0.7"]:hover {
    transform: none;
    box-shadow: none;
}

/* Draw Info Message */
.draw-info-message {
    background: linear-gradient(251.22deg, #0C244B 0%, #0B3846 99.53%);
    border: 1px solid rgba(244, 74, 51, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-top: 20px;
    text-align: center;
    animation: slideInUp 0.5s ease;
}

.draw-info-message h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.draw-info-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 20px;
}

.draw-info-message .btn-pok {
    margin-top: 10px;
}

/* Lottery Price Display */
.lottery-price {
    display: block;
    font-size: 12px;
    color: #F44A33;
    margin-top: 5px;
    font-weight: 600;
}

/* Results Dashboard */
.results-dashboard {
    background: linear-gradient(251.22deg, #0C244B 0%, #0B3846 99.53%) !important;
    padding: 30px !important;
    border-radius: 15px !important;
    margin-top: 30px !important;
    border: 1px solid rgba(244, 74, 51, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(244, 74, 51, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 74, 51, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.stat-value.updated {
    animation: statUpdate 0.5s ease;
}

@keyframes statUpdate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        color: #F44A33;
    }
    100% {
        transform: scale(1);
        color: #fff;
    }
}

/* Results Table */

#results-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0 10px;
    table-layout: auto;
}

#results-table td:nth-child(4),
#results-table td:nth-child(5) {
    min-width: 200px;
}

#results-table thead tr {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    box-shadow: 0 4px 15px rgba(244, 74, 51, 0.3);
}

#results-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

#results-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    border: none;
    position: relative;
}

#results-table th:first-child {
    border-radius: 10px 0 0 10px;
}

#results-table th:last-child {
    border-radius: 0 10px 10px 0;
}

#results-table tbody tr {
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#results-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 74, 51, 0.2);
}

#results-table td {
    padding: 15px 12px;
    border: none;
    font-size: 14px;
    color: #fff;
    vertical-align: middle;
}

#results-table tbody tr td:first-child {
    border-radius: 10px 0 0 10px;
}

#results-table tbody tr td:last-child {
    border-radius: 0 10px 10px 0;
}

/* Results Table Winning Numbers Style */
#results-table .winning-number {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

#results-table .winning-number .single-number {
    background: linear-gradient(317.37deg, #1F556B 2.76%, #1C798E 63.36%) !important;
    box-shadow: 0px 4px 6px rgba(29, 122, 143, 0.25) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
}

#results-table .winning-number .single-number.special {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%) !important;
    box-shadow: 0px 4px 6px rgba(244, 74, 51, 0.35) !important;
    color: #fff !important;
    font-weight: 700 !important;
}

/* Claim Button Style */
/* Removed - using result-badge styling instead */

/* Empty State */
#results-tbody td[colspan] {
    text-align: center;
    padding: 60px 20px !important;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Table Responsive Container */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(223.14deg, #E8AE3D -17.3%, #F44A33 101.56%);
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px;
}

.pagination-btn {
    background: linear-gradient(251.22deg, #0C244B 0%, #0B3846 99.53%);
    border: 1px solid rgba(244, 74, 51, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    border-color: #F44A33;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 74, 51, 0.4);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-page {
    background: linear-gradient(251.22deg, #0C244B 0%, #0B3846 99.53%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-page:hover {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    border-color: #F44A33;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 74, 51, 0.3);
}

.pagination-page.active {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    border-color: #F44A33;
    box-shadow: 0 5px 15px rgba(244, 74, 51, 0.4);
}

.pagination-dots {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 5px;
    font-weight: bold;
}

/* Draw Results Card */
.draw-results-card {
    background: linear-gradient(251.22deg, #0C244B 0%, #0B3846 99.53%);
    border: 1px solid rgba(244, 74, 51, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#draw-results.fade-out .draw-results-card {
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.draw-results-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(244, 74, 51, 0.3);
}

.draw-results-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(244, 74, 51, 0.4);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(244, 74, 51, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(244, 74, 51, 0.6);
    }
}

.draw-results-header h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.draw-results-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.draw-info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(244, 74, 51, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.draw-info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.draw-info-value {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* User Selected Numbers Section */
.draw-user-numbers {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.draw-user-numbers h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.user-selected-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.user-selected-number .single-number.user-selected {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    box-shadow: none !important;
}

.user-selected-number .single-number.user-selected.special {
    background: rgba(244, 74, 51, 0.2) !important;
    border: 1px solid rgba(244, 74, 51, 0.5) !important;
    color: #F44A33 !important;
}

/* Winning Numbers Section */
.draw-winning-numbers {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(244, 74, 51, 0.2);
}

.draw-winning-numbers h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.draw-winning-numbers .winning-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.draw-winning-numbers .winning-number .single-number.selected {
    background: linear-gradient(317.37deg, #1F556B 2.76%, #1C798E 63.36%) !important;
    box-shadow: 0px 7px 9px rgba(29, 122, 143, 0.25) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
}

.draw-winning-numbers .winning-number .single-number.selected.special {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%) !important;
    box-shadow: 0px 7px 9px rgba(244, 74, 51, 0.35) !important;
}

.draw-results-status {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.draw-results-status.winner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(69, 160, 73, 0.2) 100%);
    border: 2px solid #4caf50;
    color: #4caf50;
}

.draw-results-status.winner i {
    font-size: 28px;
    animation: successBounce 0.6s ease;
}

.draw-results-status.no-winner {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(245, 124, 0, 0.2) 100%);
    border: 2px solid #ff9800;
    color: #ff9800;
}

.draw-results-status.no-winner i {
    font-size: 28px;
}

@keyframes successBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.1);
    }
}

.draw-results-action {
    text-align: center;
}

.draw-results-action .btn-pok {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 16px;
}

/* Responsive Draw Results */
@media (max-width: 768px) {
    .draw-results-card {
        padding: 20px;
    }

    .draw-results-header h3 {
        font-size: 22px;
    }

    .draw-results-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .draw-results-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .draw-results-status {
        font-size: 16px;
        padding: 15px;
    }

    .draw-user-numbers h4,
    .draw-winning-numbers h4 {
        font-size: 14px;
    }

    .user-selected-number,
    .draw-winning-numbers .winning-number {
        gap: 8px;
    }

    .user-selected-number .single-number.user-selected {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }

    .draw-winning-numbers .winning-number .single-number.selected {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
}

/* Result Badges */
.result-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.result-badge.win {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.result-badge.lose {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(244, 67, 54, 0.3);
}

.result-badge.pending {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.3);
}

.result-badge.claim-btn {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-badge.claim-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.5);
}

.result-badge.claim-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .crypto-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    .wallet-actions {
        flex-direction: column;
    }

    .results-dashboard {
        padding: 15px !important;
        overflow-x: auto;
    }

    .dashboard-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .stat-value {
        font-size: 20px;
    }

    #results-table {
        font-size: 11px;
        border-spacing: 0 8px;
    }

    #results-table th,
    #results-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }

    #results-table th {
        font-size: 11px;
    }

    .toast-notification {
        right: 15px;
        left: 15px;
        max-width: none;
    }

    #results-table .winning-number .single-number {
        width: 26px !important;
        height: 26px !important;
        font-size: 10px !important;
    }

    #results-table td:nth-child(4),
    #results-table td:nth-child(5) {
        min-width: 150px;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        gap: 8px;
        padding: 15px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .pagination-page {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .pagination-btn span {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Testimonial Carousel Navigation Arrows */
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 20px;
    border: none;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 74, 51, 0.3);
}

.testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel .owl-nav button.owl-next:hover {
    background: linear-gradient(223.14deg, #E8AE3D -17.3%, #F44A33 101.56%) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(244, 74, 51, 0.5);
}

.testimonial-carousel .owl-nav button.owl-prev {
    margin-left: -25px;
}

.testimonial-carousel .owl-nav button.owl-next {
    margin-right: -25px;
}

.testimonial-carousel .owl-nav button.owl-prev i,
.testimonial-carousel .owl-nav button.owl-next i {
    color: #fff;
}

/* Testimonial Carousel Dots */
.testimonial-carousel .carousel-custom-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-carousel .carousel-custom-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-carousel .carousel-custom-dots .owl-dot.active {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    width: 30px;
    border-radius: 10px;
}

.testimonial-carousel .carousel-custom-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav button.owl-prev,
    .testimonial-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .testimonial-carousel .owl-nav button.owl-prev {
        margin-left: 10px;
    }
    
    .testimonial-carousel .owl-nav button.owl-next {
        margin-right: 10px;
    }
}

/* Enhanced Number Selection */
.single-number.selected {
    animation: numberPulse 0.3s ease;
}

@keyframes numberPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Floating Wallet Button */
.floating-wallet-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(244, 74, 51, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 74, 51, 0.6);
    background: linear-gradient(223.14deg, #E8AE3D -17.3%, #F44A33 101.56%);
}

.floating-wallet-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .floating-wallet-btn {
        top: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .floating-wallet-btn .wallet-text {
        display: none;
    }
    
    .floating-wallet-btn i {
        font-size: 20px;
    }
}

/* Banner Logo */
.banner-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    transition: all 0.3s ease;
}

.banner-logo:hover {
    transform: translateY(-2px);
}

.banner-logo img {
    height: 120px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .banner-logo {
        top: 20px;
        left: 20px;
    }
    
    .banner-logo img {
        height: 80px;
    }
}
