/* Ultra-Luxury Modern Light Theme Styles for S.R Online Zone */

:root {
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --primary-navy: #0f172a;
    --primary-blue: #1d4ed8;
    --accent-blue: #2563eb;
    --accent-cyan: #0284c7;
    --accent-gold: #f59e0b;
    --accent-yellow: #fbbf24;
    --accent-emerald: #10b981;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-light: #e2e8f0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    background-color: #f8fafc;
    color: #1e293b;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    overflow-x: hidden !important;
    position: relative;
}

/* Light Theme Card Styling */
.glass-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 12px 30px -4px rgba(37, 99, 235, 0.12);
    transform: translateY(-3px);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
}

/* Form Inputs for Light Theme */
.glass-input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    transition: all 0.2s ease;
}

.glass-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

/* Ticker marquee animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 35s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Custom Scrollbar for Light Theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Printable Token Slip Styles */
@media print {
    body * {
        visibility: hidden;
    }
    #printable-token, #printable-token * {
        visibility: visible;
    }
    #printable-token {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white !important;
        color: black !important;
        padding: 20px;
    }
    .no-print {
        display: none !important;
    }
}
