:root { --gold: #D4AF37; --bg-dark: #050505; }
* { box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('background.png');
    background-size: cover; background-position: center; background-attachment: fixed;
    color: #fff; margin: 0; min-height: 100vh;
    display: flex; justify-content: center; padding: 15px;
}

.dashboard { width: 100%; max-width: 450px; }

.card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 16px; padding: 16px; margin-bottom: 16px; }

/* Banner Slide */
.slideshow-container { width: 100%; position: relative; margin-bottom: 20px; border-radius: 12px; overflow: hidden; border: 1px solid var(--gold); aspect-ratio: 3 / 1; }
.mySlides { display: none; width: 100%; height: 100%; }
.mySlides img { width: 100%; height: 100%; object-fit: cover; }

/* Digital Board Rate */
.rates-digital-panel { background: #000; border: 1px solid var(--gold); padding: 15px; border-radius: 12px; margin-bottom: 20px; box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2); }
.rate-item { display: flex; justify-content: space-between; font-family: 'Courier New', Courier, monospace; color: var(--gold); font-size: 1rem; padding: 5px 0; border-bottom: 1px solid rgba(212, 175, 55, 0.1); }

.marquee-container { background: rgba(212, 175, 55, 0.1); color: var(--gold); padding: 8px; border-radius: 8px; border: 1px solid var(--gold); margin-bottom: 20px; font-size: 0.8rem; overflow: hidden; }

.pulse-btn { animation: pulse 2s infinite; position: fixed; bottom: 20px; right: 20px; background:#25D366; padding: 12px 20px; border-radius: 50px; color: white; text-decoration: none; font-weight: bold; z-index: 1000; }
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}