body {
    font-family: 'Space Grotesk', sans-serif;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tech-pattern {
    background-color: #2563eb;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 24px 24px;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.checkbox-tick {
    --checkbox-tick-svg: url('data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e');
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
#load-more:disabled{
    opacity:.5;
    cursor:not-allowed;
}
.hero-gradient {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
}
/* Paragraph */
.content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Headings */
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    margin: 1.5rem 0 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.content h1 { font-size: 2rem; }
.content h2 { font-size: 1.75rem; }
.content h3 { font-size: 1.5rem; }
.content h4 { font-size: 1.25rem; }

/* Links */
.content a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.content a:hover {
    color: #1d4ed8;
}

/* Lists */
.content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.content ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.content li::marker {
    font-weight: bold;
}
/* Images */
.content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 0.75rem;
    display: block;
}

/* Blockquote */
.content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #2563eb;
    background: #f1f5f9;
    font-style: italic;
    color: #475569;
}

/* Tables */
.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.content th,
.content td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}
.content th {
    background: #f8fafc;
    font-weight: 600;
}

/* Code */
.content code {
    background: #f1f5f9;
    padding: 0.25rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}
.content pre {
    background: #0f172a;
    color: #e5e7eb;
    padding: 1rem;
    border-radius: 0.75rem;
    overflow-x: auto;
}

/* HR */
.content hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}