body {
    background-color: #0a0a0c;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/* Hide Scrollbar but allow scrolling */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(19, 19, 22, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-purple {
    background: rgba(126, 34, 206, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.glass-solid {
    background: #0a0a0c;
}

/* Hero Video Styling */
.video-container { position: relative; width: 100%; height: 65vh; overflow: hidden; }
.video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }

/* Hero Banner Background (image) */
.hero-banner {
    position: relative;
    width: 100%;
    height: 65vh;
    background-image: url('https://images.unsplash.com/photo-1529900748604-07564a03e7a6?q=80&w=1470&auto=format&fit=crop');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 28%;
    overflow: hidden;
    transition: background-image 1s ease-in-out;
}
.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0c 0%, rgba(10,10,12,0.6) 50%, rgba(10,10,12,0) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-banner { background-position: center 35%; height: 60vh; }
}

/* App Like Bottom Nav adjustment */
.pb-safe {
    padding-bottom: env(safe-area-inset-bottom, 80px);
}

/* Selection States */
.selected-item {
    border-color: #a855f7 !important; /* neon */
    background-color: rgba(168, 85, 247, 0.15) !important;
    color: white !important;
}

/* Slot Status Styles */
.slot-booked {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
    opacity: 0.8;
    cursor: not-allowed;
}
.slot-available {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}
.slot-selected {
    background-color: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
    color: #ffffff;
}

/* Calendar */
.cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: 12px;
    background: rgba(19,19,22,0.7);
    border: 1px solid rgba(255,255,255,0.06);
    color: #d1d5db;
    font-weight: 600;
}
.cal-day:hover { background: rgba(31,31,35,0.8); }
.cal-day-disabled { opacity: 0; border: none; }
.cal-today { border-color: #a855f7; color: #ffffff; }
.cal-selected { background: rgba(168,85,247,0.15); border-color: #a855f7; color: #ffffff; }

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 400px;
}
.toast {
    background: rgba(19, 19, 22, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease-out forwards;
    font-size: 0.9rem;
}
.toast-success i { color: #a855f7; }
.toast-error i { color: #ef4444; }

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeOut {
    to { opacity: 0; transform: translateY(-10px); }
}

/* Facility Detail Animation */
.page-enter {
    animation: slideUp 0.3s ease-out forwards;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
