body {
	font-family: 'Inter', sans-serif;
	scroll-behavior: smooth;
}

.glass {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-card {
	animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

.team-card img {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover img {
	transform: scale(1.1) rotate(5deg);
	border-color: #3b82f6;
}

.article-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
}

.word-break\:break-all {
	word-break: break-all;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #0f172a;
}

::-webkit-scrollbar-thumb {
	background: #1e293b;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: #3b82f6;
}/* Main container spacing and base text color */
.termsCaveBox {
    padding: 40px 20px 20px; /* Top and side paddings */
    color: #d1d5db; /* Light gray text for dark theme */
    line-height: 1.6;
}

/* Headings with moderate sizes */
.termsCaveBox h1, 
.termsCaveBox h2, 
.termsCaveBox h3, 
.termsCaveBox h4, 
.termsCaveBox h5 {
    color: #ffffff; /* White color for headings */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.termsCaveBox h1 { font-size: 24px; }
.termsCaveBox h2 { font-size: 20px; }
.termsCaveBox h3 { font-size: 18px; }
.termsCaveBox h4 { font-size: 16px; }
.termsCaveBox h5 { font-size: 14px; }

/* Paragraph styles */
.termsCaveBox p {
    margin-bottom: 1rem;
    font-size: 15px;
}

/* List styles */
.termsCaveBox ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.termsCaveBox li {
    margin-bottom: 0.5rem;
    font-size: 15px;
}

/* Remove margin from the last element to prevent extra bottom spacing */
.termsCaveBox > *:last-child {
    margin-bottom: 0;
}
nav {
	background-color: #0f172a;
}
.logo-n {
	background-color: #3b82f6;
}
#modal-content {
	background-color: #0f172a;
}
section {
	overflow: hidden;
}
#article-modal {
	z-index: 1000;
}