/* Custom Styles to augment Tailwind */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Slate 900 fallback */
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Quick Link Card Hover Effect */
.link-card {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px -2px rgba(99, 102, 241, 0.1); /* Indigo glow */
}

.nav-link {
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

.nav-link:hover {
    color: #818cf8; /* indigo-400 */
}

/* Hide scrollbar for clean UI but allow scrolling */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animation utilities */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Focus Mode Button Pulse */
@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.animate-pulse-soft {
    animation: pulse-soft 2s infinite;
}

/* Deal Card Hover */
.deal-card {
    transition: all 0.3s ease;
}
.deal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

/* Legal Pages Styling */
.legal-content {
    max-width: 800px;
    margin: 4rem auto;
    line-height: 1.8;
    color: #cbd5e1; /* slate-300 */
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1; /* indigo-500 */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}