/* ========================================
   MODERN RESTRAINED DESIGN 2025
   ELEGANT & READABLE
   ======================================== */

/* Subtle Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(245, 158, 11, 0.03), 
        rgba(217, 119, 6, 0.03)
    );
    background-size: 200% 200%;
    animation: subtleGradient 20s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes subtleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glassmorphism Cards - Subtle */
.card, .bonus-card .card, .quick-action-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(245, 158, 11, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

.card:hover, .quick-action-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.15) !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
}

/* Readable Text - NO transparent text */
.display-4, h1, h2, h3, .card-title {
    color: #2c3e50 !important;
    text-shadow: none !important;
}

/* Gradient Buttons - Kept for visual appeal */
.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-warning:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4) !important;
}

.btn-success {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3) !important;
}

.btn-success:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4) !important;
}

.btn-info {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3) !important;
}

.btn-info:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4) !important;
}

/* Subtle Icon Animation */
.fas, .fab {
    transition: transform 0.3s ease;
}

.card:hover .fas,
.card:hover .fab,
.btn:hover .fas {
    transform: scale(1.1);
}

/* Elegant Navbar */
.navbar {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    box-shadow: 0 2px 20px rgba(245, 158, 11, 0.2) !important;
}

/* Smooth Transitions */
* {
    scroll-behavior: smooth;
}

/* Alert Enhancements - Readable */
.alert-success {
    background: rgba(46, 204, 113, 0.1) !important;
    border: 1px solid #2ecc71 !important;
    color: #27ae60 !important;
    backdrop-filter: blur(5px);
}

.alert-warning {
    background: rgba(241, 196, 15, 0.1) !important;
    border: 1px solid #f1c40f !important;
    color: #d68910 !important;
    backdrop-filter: blur(5px);
}

/* Dark Mode - READABLE TEXT */
body.dark-mode {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.dark-mode .card,
body.dark-mode .bonus-card .card,
body.dark-mode .quick-action-card {
    background: rgba(30, 30, 60, 0.9) !important;
    border-color: rgba(245, 158, 11, 0.2) !important;
    color: #ffffff !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode .card-title,
body.dark-mode .display-4,
body.dark-mode p,
body.dark-mode .lead {
    color: #ffffff !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

body.dark-mode .alert-success {
    background: rgba(46, 204, 113, 0.2) !important;
    color: #2ecc71 !important;
}

body.dark-mode .alert-warning {
    background: rgba(241, 196, 15, 0.2) !important;
    color: #f1c40f !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .card:hover {
        transform: translateY(-3px) !important;
    }
}

/* Age Verification Modal Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Modal backdrop blur effect */
.modal-backdrop.show {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Age verification button hover styles already in JS */
