/*   Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 5px;
    border: 10px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #c7d2fe #f1f5f9;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-gradient {
    background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

/* Legal Pages Styling */
.policy-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #475569;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy-content ul li::before {
    content: "•";
    color: #6366f1;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.glass-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.disclaimer-box {
    background: #fff7ed;
    border-left: 4px solid #f97316;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.warning-box {
    background: #fef2f2;
    border: 2px solid #fecaca;
    padding: 2rem;
    border-radius: 1.5rem;
    margin-top: 3rem;
}

.critical-box {
    background: #fff1f2;
    border: 2px solid #fecdd3;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.risk-box {
    background: #fefce8;
    border-left: 4px solid #eab308;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}