/* Dream Casino List - Custom Styles */
/* Crimson & Slate Dark Theme */

:root {
    --primary-crimson: #dc2626;
    --primary-slate: #475569;
    --dark-bg: #030712;
    --dark-card: #111827;
    --border-color: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: #f9fafb;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

::selection {
    background-color: #dc2626;
    color: #ffffff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

/* Gradient backgrounds */
.bg-gradient-crimson {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

/* Hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Custom border glow */
.border-glow {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

@media (max-width: 768px) {
    #mobileMenu {
        animation: slideIn 0.3s ease-out;
    }
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Print styles */
@media print {
    header, footer, .no-print {
        display: none;
    }
}