/* css/style.css - FULL WORKING */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    min-height: 100vh;
    transition: background 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 40px;
    position: relative;
    z-index: 10;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    box-shadow: 0 4px 24px var(--shadow);
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
    min-height: 260px;
    isolation: isolate;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes particle-float {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.3; }
    50% { opacity: 0.6; transform: translateY(-60px) scale(1.2); }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(196, 122, 90, 0.08), transparent 70%);
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(196, 160, 106, 0.06), transparent 70%);
    animation-delay: -3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(196, 122, 90, 0.03), transparent 70%);
    animation-delay: -5s;
    animation-duration: 12s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(196, 122, 90, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 122, 90, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 18px;
    border-radius: 40px;
    background: var(--terracotta-light);
    color: var(--terracotta);
    border: 1px solid rgba(196, 122, 90, 0.12);
    animation: badge-pop 0.6s ease;
}

.hero-badge.gold {
    background: rgba(196, 160, 106, 0.1);
    color: var(--gold);
    border-color: rgba(196, 160, 106, 0.15);
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 40px;
    background: var(--bg-filter);
    border: 1px solid var(--border-color);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes badge-pop {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    position: relative;
    margin-bottom: 8px;
}

.hero-title-main {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-fade 1s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

@keyframes title-fade {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, var(--terracotta), var(--gold), var(--terracotta));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite, title-fade 1s ease forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shine-slide 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine-slide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.hero-typing-wrapper {
    display: flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.typing-text {
    display: inline-block;
    min-width: 200px;
}

.typing-cursor {
    display: inline-block;
    color: var(--terracotta);
    font-weight: 300;
    animation: blink-cursor 0.8s step-end infinite;
    font-size: 18px;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: var(--bg-filter);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 4px;
    animation: stats-pop 0.8s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

@keyframes stats-pop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero-stat-mini {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hero-stat-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--terracotta);
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
}

.hero-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.refresh-indicator {
    font-size: 11px;
    color: var(--text-secondary);
    padding: 8px 16px;
    background: var(--bg-filter);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.refresh-indicator:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.live-clock {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 8px 16px;
    background: var(--bg-filter);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease;
}

.live-clock:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   SEARCH
   ============================================ */
.search-wrapper {
    margin-bottom: 28px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px var(--shadow);
}

.search-box input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 8px 32px var(--shadow-hover);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-clear.visible {
    transform: translateY(-50%) scale(1);
}

.search-clear:hover {
    color: var(--red);
    background: var(--red-light);
}

/* ============================================
   DANA GRID
   ============================================ */
.dana-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
}

.dana-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.col-header h2 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--terracotta);
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-count {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.dana-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dana-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px var(--shadow);
    animation: slide-in 0.4s ease forwards;
    opacity: 0;
}

.dana-card:nth-child(1) { animation-delay: 0.05s; }
.dana-card:nth-child(2) { animation-delay: 0.1s; }
.dana-card:nth-child(3) { animation-delay: 0.15s; }

@keyframes slide-in {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

.dana-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px var(--shadow-hover);
    transform: translateY(-4px);
}

.dana-card.limit {
    opacity: 0.4;
}

.dana-card .card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.dana-card .card-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dana-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dana-card .card-icon.active {
    background: var(--terracotta-light);
}

.dana-card .card-icon.limit {
    background: var(--red-light);
}

.dana-card .card-icon .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent !important;
}

.dana-card .card-icon i {
    font-size: 22px;
}

.dana-card .card-icon.active i {
    color: var(--terracotta);
}

.dana-card .card-icon.limit i {
    color: var(--red);
}

.dana-card:hover .card-icon {
    transform: scale(1.08) rotate(-2deg);
}

.dana-card:hover .card-icon .logo-img {
    transform: scale(1.1);
}

.dana-card .card-number {
    font-weight: 800;
    font-size: 16px;
    font-family: monospace;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.dana-card .card-name {
    font-size: 12px;
    color: var(--text-secondary);
}

.dana-card .card-extra {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.dana-card .card-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dana-card .status-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 16px;
    border-radius: 40px;
}

.dana-card .status-badge.active {
    background: var(--emerald-light);
    color: var(--emerald);
}

.dana-card .status-badge.limit {
    background: var(--red-light);
    color: var(--red);
}

.dana-card .copy-btn {
    padding: 8px 18px;
    border-radius: 10px;
    border: none;
    background: var(--gold);
    color: rgb(0, 0, 0);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dana-card .copy-btn:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.dana-card .copy-btn.copied {
    background: var(--emerald);
}

.dana-card .limit-badge {
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--red-light);
    border: 1px solid rgba(196, 122, 122, 0.1);
    font-size: 11px;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: slide-in 0.4s ease forwards;
    opacity: 0;
}

.side-card:nth-child(1) { animation-delay: 0.1s; }
.side-card:nth-child(2) { animation-delay: 0.2s; }

.side-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px var(--shadow-hover);
    transform: translateY(-3px);
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-body));
    border-color: var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 160, 106, 0.03), transparent 70%);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(24px, -16px); }
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--terracotta-light);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-icon {
    transform: scale(1.05) rotate(-4deg);
}

.cta-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 12px;
    color: var(--text-muted);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--terracotta);
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.cta-btn:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

/* ============================================
   FOOTER
   ============================================ */
.app-footer {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.app-footer p {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.footer-badges {
    display: flex;
    gap: 20px;
    font-size: 10px;
    color: var(--text-muted);
}

/* ============================================
   NOTIFICATION POPUP
   ============================================ */
.notif-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 32, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.notif-overlay:not(.hidden) {
    display: flex;
}

.notif-modal {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: modal-pop-in 0.4s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px var(--shadow-lg);
}

@keyframes modal-pop-in {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.notif-icon {
    font-size: 44px;
    color: var(--gold);
    margin-bottom: 14px;
}

.notif-modal h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.notif-modal p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.notif-btn {
    padding: 12px 36px;
    border-radius: 12px;
    border: none;
    background: var(--gold);
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.notif-btn:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

/* ============================================
   COPY TOAST
   ============================================ */
.copy-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: 0 16px 48px var(--shadow-lg);
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    max-width: 360px;
    overflow: hidden;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.copy-toast-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.copy-toast-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--emerald-light);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    animation: copy-pop 0.5s ease;
}

@keyframes copy-pop {
    0% { transform: scale(0) rotate(-20deg); }
    50% { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.copy-toast-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.copy-toast-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.copy-toast-number {
    font-size: 15px;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 0.5px;
    color: var(--terracotta);
}

.copy-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--emerald);
    border-radius: 0 0 var(--radius) var(--radius);
    animation: progress-shrink 2.5s linear forwards;
}

@keyframes progress-shrink {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* ============================================
   CUSTOM TOAST
   ============================================ */
.custom-toast {
    position: fixed;
    bottom: 36px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 16px 48px var(--shadow-lg);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 400px;
}

.custom-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-toast.success {
    background: var(--green-light);
    border-color: var(--green);
    color: var(--green);
}

.custom-toast.error {
    background: var(--red-light);
    border-color: var(--red);
    color: var(--red);
}

.custom-toast.warning {
    background: rgba(196, 160, 106, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.custom-toast.info {
    background: rgba(196, 122, 90, 0.08);
    border-color: var(--terracotta);
    color: var(--terracotta);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .dana-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 24px 20px;
        flex-direction: column;
    }
    
    .hero-stats-mini {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .dana-card .card-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dana-card .card-right {
        justify-content: flex-start;
    }
    
    .app-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .side-card {
        padding: 18px 20px;
    }
    
    .hero-orb {
        display: none;
    }
    
    .dana-card .card-icon {
        width: 44px;
        height: 44px;
        padding: 6px;
        border-radius: 12px;
    }
    
    .dana-card .card-icon i {
        font-size: 18px;
    }
    
    .copy-toast {
        bottom: 80px;
        right: 12px;
        left: 12px;
        min-width: unset;
        max-width: unset;
        padding: 14px 18px;
        border-radius: 12px;
    }
    
    .copy-toast-content {
        gap: 12px;
    }
    
    .copy-toast-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .copy-toast-number {
        font-size: 13px;
    }
    
    .custom-toast {
        bottom: 24px;
        right: 12px;
        left: 12px;
        padding: 12px 18px;
        font-size: 12px;
        max-width: unset;
    }
}

/* ============================================
   DANA CARD - LIMIT / OFF STYLE
   ============================================ */

/* Card Limit - Abu-abu */
.dana-card.limit {
    opacity: 0.6;
    border-color: var(--border-color);
    background: var(--bg-body);
}

.dana-card.limit .card-icon {
    background: var(--bg-skeleton) !important;
    opacity: 0.5;
}

.dana-card.limit .card-icon img {
    filter: grayscale(100%) opacity(0.5);
}

.dana-card.limit .card-number {
    color: var(--text-muted) !important;
    text-decoration: line-through;
}

.dana-card.limit .card-name {
    color: var(--text-muted) !important;
}

.dana-card.limit .card-extra {
    color: var(--text-muted) !important;
}

.dana-card.limit .status-badge.limit {
    background: var(--red-light);
    color: var(--red);
}

.dana-card.limit .copy-btn {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.dana-card.limit .copy-btn:hover {
    transform: none;
    box-shadow: none;
}

/* Limit Badge */
.dana-card .limit-badge {
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--red-light);
    border: 1px solid rgba(196, 122, 122, 0.15);
    font-size: 11px;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fade-in 0.4s ease;
}

/* Status Dot untuk Limit */
.dana-card .status-badge.limit .status-dot-sm {
    background: var(--red) !important;
    animation: none !important;
}

/* Hover effect untuk Limit - tidak ada */
.dana-card.limit:hover {
    transform: none !important;
    border-color: var(--border-color) !important;
    box-shadow: 0 4px 20px var(--shadow) !important;
}

.dana-card.limit:hover .card-icon {
    transform: none !important;
}

.dana-card.limit:hover .card-icon img {
    transform: none !important;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FLOATING REFRESH BUTTON
   ============================================ */
.floating-refresh {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--terracotta);
    color: white;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(196, 122, 90, 0.35);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-btn 3s ease-in-out infinite;
}

.floating-refresh:hover {
    background: var(--text-primary);
    transform: scale(1.1) rotate(60deg);
    box-shadow: 0 12px 48px rgba(44, 36, 32, 0.3);
}

.floating-refresh:active {
    transform: scale(0.9);
}

.floating-refresh i {
    transition: transform 0.6s ease;
}

.floating-refresh:hover i {
    transform: rotate(360deg);
}

.floating-refresh.spinning i {
    animation: spin 0.8s ease forwards;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float-btn {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Responsive Floating Button */
@media (max-width: 640px) {
    .floating-refresh {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}