
:where([class^="ri-"])::before { content: "\f3c2"; }
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
background-color: #f9fafb;
}
.gradient-bg {
background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
}
.text-gradient {
background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
input:focus, textarea:focus, select:focus {
outline: none;
border-color: #3B82F6;
}
.category-card {
transition: all 0.3s ease;
}
.category-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.article-card {
transition: all 0.3s ease;
}
.article-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.search-results {
display: none;
max-height: 400px;
overflow-y: auto;
}
.search-results.show {
display: block;
}
.filter-dropdown {
display: none;
}
.filter-dropdown.show {
display: block;
}
.category-tab {
transition: all 0.3s ease;
}
.category-tab.active {
background-color: #3B82F6;
color: white;
}
.rating-button.active {
background-color: #3B82F6;
color: white;
border-color: #3B82F6;
}