@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Serif+Display&display=swap");

:root {
	/* Base colors that will remain the same */
	--primary: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: #a5b4fc;
	--accent: #f43f5e;
	--accent-light: #fda4af;
	--success: #10b981;
	--warning: #f59e0b;
	--white: #ffffff;
	--color-whiteBlack: #fff;
	--color-primaryBlack: #6366f1;
	--light-gray: #f1f5f9;
	--off-white: #f8fafc;

	/* Gradients */
	--text-gradient: linear-gradient(120deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
	--card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
	--bg-search: linear-gradient(rgb(233, 210, 255), rgba(14, 18, 250, 0.507));
	--bg-community: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	--bg-vocab: linear-gradient(to right, #f4f7ff, #e6eaff);
	--bg-front-btns: background: linear-gradient(145deg, rgba(99, 102, 241, 0.03) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 1) 80%, rgba(139, 92, 246, 0.02) 100%);

	/* Shadows */
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 10px -6px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
	--shadow-cards: 0 0 20px 3px #c9c7c7;
	--shadow-header:0 5px 5px #3e3d3d24;


	/* Light theme variables (default) */
	--bg-primary: #f8fafc;
	--bg-secondary: #ffffff;
	--bg-tertiary: #f1f5f9;
	--text-primary: #0f172a;
	--text-secondary: #1e293b;
	--text-tertiary: #64748b;



	--border-color: #e2e8f0;
	--card-bg: rgba(255, 255, 255, 0.9);
	--glass-bg: rgba(255, 255, 255, 0.8);
	--glass-border: rgba(255, 255, 255, 0.18);
	--header-bg: #ffffff;
	--footer-bg: #0f172a;
	--footer-text: rgba(255, 255, 255, 0.7);

}

[data-theme="dark"] {
	--bg-primary: #161618;
	--bg-secondary: #242628;
	--bg-tertiary: #334155;
	--text-primary: #f1f5f9;
	--text-secondary: #e2e8f0;
	--text-tertiary: #94a3b8;

	--color-whiteBlack: #000;
	--color-primaryBlack: #000;



	--border-color: #475569;
	--card-bg: rgba(30, 41, 59, 0.9);
	--glass-bg: rgba(30, 41, 59, 0.8);
	--glass-border: rgba(30, 41, 59, 0.18);
	--header-bg: #1e293b;
	--footer-bg: #0f172a;
	--footer-text: rgba(255, 255, 255, 0.7);

	/* Adjust gradients for dark mode */
	--card-gradient: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(30, 41, 59, 0.6) 100%);
	--audio-title: linear-gradient(135deg, #1c223b, #04051b);
	--bg-search: linear-gradient(#000, var(--bg-secondary));
	--bg-vocab: linear-gradient(#000, var(--bg-secondary));
	--bg-community: linear-gradient(#000, var(--bg-secondary));
	--bg-front-btns: background: linear-gradient(145deg, rgba(99, 102, 241, 0.03) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 1) 80%, rgba(139, 92, 246, 0.02) 100%);


	/* Adjust shadows for dark mode */
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
	--shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 4px 10px -6px rgba(0, 0, 0, 0.2);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
	--shadow-cards: 0 0 20px 3px #000000;
	--shadow-header: 1px 1px 5px #000000;

}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}



/* Razorpay payment page  */
/* Order details list */
#primary.woocommerce-cart-container .order_details {
	list-style: none;
	margin: 0 0 2rem;
	padding: 1rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 0.5rem;
}

/* Individual order items */
#primary.woocommerce-cart-container .order_details li {
	font-weight: 500;
	color: #343a40;
}

/* Labels (before the colon) */
#primary.woocommerce-cart-container .order_details li::before {
	font-weight: 700;
	content: attr(class) ": ";
	text-transform: capitalize;
	color: #495057;
}

/* Paragraph above form */
#primary.woocommerce-cart-container p:first-of-type {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	color: #495057;
}

/* Razorpay status message */
#primary.woocommerce-cart-container #msg-razorpay-success {
	margin: 1.5rem 0;
	background-color: rgba(176, 176, 176, 0.6);
	padding: 1rem 1.5rem 1rem 3.5rem;
	border-top: 2px solid #6c757d;
	border-radius: 0.25rem;
	font-style: italic;
}

/* Buttons wrapper */
#primary.woocommerce-cart-container>.woocommerce>p:last-of-type {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Common button styles */
#primary.woocommerce-cart-container button#btn-razorpay,
#primary.woocommerce-cart-container button#btn-razorpay-cancel {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

/* Primary “Pay Now” button */
#primary.woocommerce-cart-container button#btn-razorpay {
	background-color: #007bff;
	color: #fff;
}

#primary.woocommerce-cart-container button#btn-razorpay:hover {
	background-color: #0056b3;
}

/* Secondary “Cancel” button */
#primary.woocommerce-cart-container button#btn-razorpay-cancel {
	background-color: #6c757d;
	color: #fff;
}

#primary.woocommerce-cart-container button#btn-razorpay-cancel:hover {
	background-color: #5a6268;
}

/* Clearfix */
#primary.woocommerce-cart-container .clear {
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}


.visible {
	display: block !important;
}


body {
	font-family: "Outfit", sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
	background-color: var(--bg-primary);
	color: var(--text-primary);
}

/* added during making dark/light */
.author-profile-card,
.feature-card,
.category-card,
.book-card,
.article-card,
.testimonial-card,
.format-card,
.sidebar-card,
.comments-section,
.vocab-word-of-day-section,
.vocab-words-section,
.vocab-category-card,
.vb-word-card,
.vd-word-detail-container {
	background: var(--bg-secondary);
	color: var(--text-primary);
}

/* Update text colors */
.author-profile-name,
.author-profile-title,
.section-rubric,
.book-rubric,
.book-author,
.article-title,
.article-excerpt,
.vx-word,
.vx-definition-text,
.vx-example,
.vocab-word-main,
.vb-word-title,
.vd-word-title {
	color: var(--text-primary) !important;
}

.author-profile-metric-label,
.book-author,
.article-date,
.vx-pos,
.vb-word-type {
	color: var(--text-tertiary) !important;
}

/* Update background colors */
/* .search-wrapper, */
.vx-vocabulary-section,
.vx-definition,
.vocab-word-example,
.vocab-word-synonyms,
.vocab-word-antonyms,
.vd-word-example,
.vd-word-group {
	background: var(--bg-tertiary) !important;
}

/* Update border colors */
.libraryPage .book-description,
.vocab-word-example,
.vd-word-example {
	border-color: var(--border-color) !important;
}



.author-profile-body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.5;
	color: #1f2937;
	background-color: #f9fafb;
	margin: 0;
}

.author-profile-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.author-profile-section {
	padding: 100px 0;
	background-color: var(--bg-primary);
	position: relative;
	overflow: hidden;
}

.author-profile-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(180deg, rgba(79, 70, 229, 0.05) 0%, rgba(79, 70, 229, 0) 100%);
	z-index: 0;
}

.author-profile-card {
	background: var(--bg-secondary);
	border-radius: 16px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.author-profile-header {
	background: linear-gradient(to right, rgba(79, 70, 229, 0.9), rgba(79, 70, 229, 0.8)), url("https://images.unsplash.com/photo-1543002588-bfa74002ed7e?auto=format&fit=crop&w=1200&q=80");
	background-size: cover;
	background-position: center;
	height: 160px;
	position: relative;
}

.author-profile-wrapper {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 48px;
	padding: 0 40px 40px;
}

.author-profile-photo-container {
	margin-top: -70px;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.author-profile-photo {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	border: 5px solid #ffffff;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	object-fit: cover;
	background-color: #ffffff;
	transition: transform 0.3s ease;
	max-width: 100%;
	aspect-ratio: 1/1;
}

.author-profile-photo:hover {
	transform: scale(1.03);
}

.author-profile-details {
	padding-top: 32px;
}

.author-profile-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	background: #eef2ff;
	color: #4f46e5;
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 16px;
}

.author-profile-tag i {
	margin-right: 6px;
	font-size: 12px;
}

.author-profile-name {
	font-size: 42px;
	font-weight: 800;
	color: #1f2937;
	margin: 0 0 8px;
	line-height: 1.2;
}

.author-profile-title {
	font-size: 18px;
	color: #4b5563;
	margin: 0 0 24px;
}

.book-link-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	padding: 8px 16px;
	border-radius: 25px;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
	margin: 10px 0;
	white-space: nowrap;
	flex-wrap: nowrap;
	position: relative;
	overflow: visible;
}

.book-link-wrapper:hover {
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
	transform: translateY(-1px);
}

.book-link-wrapper i {
	color: #fff;
	font-size: 14px;
	flex-shrink: 0;
}

.book-link-text {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	white-space: nowrap;
}

.author-bio-link {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.3);
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.author-bio-link:hover {
	background: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.book-link-wrapper::before,
.book-link-wrapper::after {
	content: "✨";
	position: absolute;
	font-size: 16px;
	color: #ffd700;
	animation: sparkle 2s infinite;
	pointer-events: none;
}

.book-link-wrapper::before {
	top: -8px;
	right: -5px;
	animation-delay: 0s;
}

.book-link-wrapper::after {
	top: -5px;
	left: -8px;
	animation-delay: 1s;
}

.sparkle {
	position: absolute;
	top: -10px;
	right: 15px;
	font-size: 14px;
	animation: sparkle-bounce 1.5s infinite;
	pointer-events: none;
}

.sparkle::before {
	content: "⭐";
	color: #ffef94;
}

.book-link-wrapper:hover::before {
	animation: sparkle-fast 0.8s infinite;
}

.book-link-wrapper:hover::after {
	animation: sparkle-fast 0.8s infinite;
	animation-delay: 0.4s;
}

.author-profile-metrics {
	display: flex;
	gap: 40px;
	margin: 32px 0;
	padding: 24px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.author-profile-metric {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.author-profile-metric-value {
	font-size: 32px;
	font-weight: 700;
	color: #4f46e5;
	line-height: 1;
	margin-bottom: 8px;
}

.author-profile-metric-label {
	font-size: 14px;
	font-weight: 500;
	color: #4b5563;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.author-profile-bio-section {
	margin: 32px 0;
}

.author-profile-bio-heading {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0 0 16px;
	position: relative;
	padding-bottom: 12px;
}

.author-profile-bio-heading::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: #4f46e5;
	border-radius: 3px;
}

.author-profile-bio-content {
	font-size: 16px;
	line-height: 1.8;
	color: var(--bg-secondary);
	margin-bottom: 24px;
}

.author-profile-bio-content p {
	margin-top: 0;
	color: var(--text-primary);
}

.author-profile-social {
	display: flex;
	gap: 16px;
	margin-top: 32px;
}

.author-profile-social-link {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #4f46e5;
	border-radius: 12px;
	font-size: 20px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	border: 1px solid rgba(79, 70, 229, 0.1);
}

.author-profile-social-link:hover {
	background: #4f46e5;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.author-profile-badges {
	display: flex;
	gap: 8px;
	margin-top: 24px;
}

.author-profile-badge {
	display: flex;
	align-items: center;
	padding: 6px 12px;
	background: var(--bg-community);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

.author-profile-badge i {
	margin-right: 6px;
	font-size: 12px;
}

.author-profile-fade-in {
	animation: authorProfileFadeIn 0.6s ease-in-out;
}

/* top bar header */


.top-bar {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 4rem;
	background-color: var(--bg-primary);
	border-bottom: 1px solid var(--border-color);
}

/* Left: email */
.top-bar .email {
	font-size: 0.9rem;
	color: var(--primary);
	text-decoration: none;
}

.top-bar .email:hover {
	color: var(--primary-light);
}

/* Center: announcement */
.top-bar .announcement {
	font-size: 1rem;
	text-align: center;
	background: linear-gradient(90deg, var(--text-primary) 0%, var(--text-secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Right: socials */
.top-bar .socials {
	display: flex;
	gap: 1rem;
	justify-self: end;
}

.top-bar .socials a {
	font-size: 1rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.top-bar .socials a:hover {
	background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/* Dark mode specific styles for top bar */
[data-theme="dark"] .top-bar {
	background-color: var(--bg-secondary);

}

[data-theme="dark"] .top-bar .announcement {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-theme="dark"] .top-bar .socials a {
	background: var(--text-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

[data-theme="dark"] .top-bar .socials a:hover {
	background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}



/* Responsive: collapse center on very small screens */
@media (max-width: 480px) {
	.top-bar {
		justify-content: center;
		padding: 0.5rem 1rem;
		width: 100%;
	}

	.top-bar .email {
		display: none;
	}

	.top-bar .announcement {
		grid-column: 1 / -1;
		font-size: 0.8rem;
	}

	.top-bar .socials {
		display: none;
	}
}

/* top bar header */

.header {
	width: 100%;
	padding: 4px 0;
	background: var(--bg-primary);
	box-shadow: var(--shadow-header);
	z-index: 10;
	/* transition: all 0.4s ease-in-out; */
}


.header.scrolled {
	position: sticky !important;
	top: 0;

}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
}

.logo span {
	background: var(--text-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.logo svg {
	width: 32px;
	height: 32px;
}

.logo img {
	width: 140px;
	height: auto;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.menu-item a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 0;
	display: block;
	padding: 12px 0;
	font-size: 18px;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.3s ease;
}

.menu-item a:hover,
.menu-item a.active {
	color: var(--primary);
}

#menu-primary-menu li.current-menu-item>a,
#menu-primary-menu li.active>a {
	color: var(--primary);
}

header .menu-item a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	background: var(--text-gradient);
	transition: width 0.3s ease;
	border-radius: 50px;
}

.menu-item a:hover::after,
.menu-item a.active::after {
	width: 100%;
	height: 2px;
}

.menu-item.current-menu-item>a::after {
	width: 100%;
	height: 2px;
}

.header-buttons,
.mobile-header-buttons {
	display: flex;
	gap: 12px;
}

:is(.aboutPage, .bookPage) .header.scrolled {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
	padding: 0px 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	font-weight: 600;
	border-radius: 100px;
	transition: all 0.3s ease;
	cursor: pointer;
	gap: 8px;
	font-size: 16px;
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(99, 102, 241, 0.6);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.btn-outline:hover {
	background-color: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--dark);
	font-size: 24px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--gray);
}

.stars {
	display: flex;
	color: #fbbf24;
}

.rating-count {
	font-size: 12px;
	color: var(--gray);
}

.fade-in {
	animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
	animation-delay: 0.2s;
}

.delay-2 {
	animation-delay: 0.4s;
}

.delay-3 {
	animation-delay: 0.6s;
}

::-webkit-scrollbar {
	width: 6px;
	height: 4px;
}

::-webkit-scrollbar-track {
	background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-dark);
}

.vx-hero-content {
	flex: 1;
	display: grid;
	grid-template-columns: 3fr 1fr;
	grid-template-rows: 1fr auto;
	gap: 24px;
}

.vx-hero-card {
	backdrop-filter: blur(16px);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	overflow: hidden;
}

.woocommerce-single-product-container .site-main {
	z-index: 0;
}

.vx-brand-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: var(--bg-secondary);
	padding: 2rem;
	border-radius: 12px;
	gap: 10px;
	color: #111;
}

.vx-brand-title {
	font-size: 4.2rem;
	font-weight: 700;

	margin-bottom: 8px;
	letter-spacing: -1px;
	font-family: "DM Serif Display", serif;
	position: relative;
	color: var(--text-secondary)
}

.vx-brand-title::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: var(--text-gradient);
	border-radius: 50px;
}

.vx-brand-description {
	font-family: "Inter", sans-serif;
	color: #555;
	font-size: 1rem;
}

.vx-vocabulary-section {
	background: #f9fafb;
	border-radius: 12px;
	padding: 1.8rem;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.03);
	background: rgb(230 231 255 / 10%);
	backdrop-filter: blur(15px);
}

.vx-vocab-header {
	font-size: 1.3rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	top: 10px;
	left: 10px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.fa-brain:before {
	color: var(--text-secondary);
}

.vx-vocab-card {
	background: var(--bg-secondary);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 1.2rem;
}

.vx-vocab-header h4 {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #6c63ff;
	margin: 0px;
}

.vx-word {
	font-weight: 700;
	letter-spacing: 1px;
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	margin: 0.2rem 0;
}

.vx-word-link {
	text-decoration: none;
	color: inherit;
}

.explore-vocab-btn {
	margin: 12px 0px;
	display: inline-block;
	font-weight: 600;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.vx-pos {
	font-style: italic;
	color: #777;
	font-size: 18px;
	display: block;
}

.vx-definition {
	margin-top: 1rem;
	background: #f9fafb;
	border-left: 3px solid #6366f1;
	padding: 1rem;
	border-radius: 8px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vx-definition p {
	margin-bottom: 0.5rem;
}

.vx-definition em {
	color: #666;
	font-size: 0.9rem;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vx-definition-text {
	font-size: 1rem;
	color: #333;
	margin-top: 0.6rem;
}

.vx-example {
	font-style: italic;
	color: #6a5acd;
	font-size: 0.95rem;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vx-quote-section {
	grid-column: 1 / -1;
	padding: 20px 30px;
	text-align: center;
	/* color: #000000; */
	position: relative;
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: var(--bg-secondary);
}

.vx-quote-header {
	font-size: 0.9rem;
	letter-spacing: 1px;
	color: #6366f1;
	margin-bottom: 1rem;
	font-weight: 600;
}

.vx-quote-text {
	font-size: 1.2rem;
	font-style: italic;
}

.vx-quote-author {
	margin-top: 1rem;
	font-weight: bold;
	color: #8c8c8c;
}

.page-hero {
	padding: 20px 4px;
	overflow: hidden;
	position: relative;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: rgba(99, 102, 241, 0.1);
	color: var(--primary);
	padding: 8px 16px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 12px;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.quote-text {
	font-style: italic;
	margin-bottom: 8px;
	font-size: 18px;
	color: var(--dark-alt);
}

.quote-author {
	font-weight: 600;
	color: var(--primary);
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.hero-statistics {
	display: flex;
	gap: 48px;
	margin-top: 64px;
}

.index-stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat-number {
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.stat-number:hover {
	cursor: pointer;
}

.stat-number::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	animation: wave-stat 2s ease-out;
	animation-delay: 2s;
	animation-iteration-count: infinite;
	opacity: 0;
	z-index: 999;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-overlay.show {
	display: flex;
	opacity: 1;
}

.model-content {
	background: white;
	border-radius: 24px;
	padding: 40px;
	max-width: 500px;
	width: 90%;
	position: relative;
	transform: scale(0.8) translateY(20px);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	padding: 10px;
}

.modal-overlay.show .model-content {
	transform: scale(1) translateY(0);
}

.modal-overlay .modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.modal-overlay .modal-close:hover {
	background: #f5f5f5;
	color: #333;
	transform: rotate(90deg);
}

.modal-overlay .modal-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	color: white;
	font-size: 32px;
}

.modal-overlay .modal-rubric {
	font-size: 2rem;
	font-weight: 700;
	color: #333;
	text-align: center;
	margin-bottom: 16px;
}

.modal-overlay .modal-subtitle {
	font-size: 1.1rem;
	color: #666;
	text-align: center;
	margin-bottom: 32px;
	line-height: 1.6;
}

.modal-overlay .modal-features {
	list-style: none;
	margin-bottom: 32px;
}

.modal-overlay .modal-features li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 1rem;
	color: #555;
}

.modal-overlay .modal-features li::before {
	content: "✓";
	display: inline-block;
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	margin-right: 12px;
	font-size: 14px;
	flex-shrink: 0;
}

.modal-button {
	background: linear-gradient(135deg, #00c851, #007e1f);
	color: white;
	border: none;
	padding: 18px 40px;
	border-radius: 16px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: btn-pulse 3s infinite;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-overlay .modal-button::before {
	content: "🚀";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.3em;
	animation: rocket-bounce 2s infinite;
}

.modal-overlay .modal-button::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.6s;
}

.modal-overlay .modal-button:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 35px rgba(0, 200, 81, 0.6);
	background: linear-gradient(135deg, #00e676, #00c851);
}

.modal-overlay .modal-button:hover::after {
	left: 100%;
}

.modal-overlay .modal-button:active {
	transform: translateY(-2px) scale(0.98);
	box-shadow: 0 8px 25px rgba(0, 200, 81, 0.5);
}

.modal-note {
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	color: white;
	padding: 16px 20px;
	border-radius: 12px;
	margin: 24px 0;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	animation: pulse-glow 2s infinite alternate;
}

.modal-note::before {
	content: "⚠️";
	font-size: 1.2em;
	margin-right: 8px;
	animation: bounce 1.5s infinite;
}

.modal-note::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}

.modal-note u {
	text-decoration: none;
	background: rgba(255, 255, 255, 0.2);
	padding: 2px 8px;
	border-radius: 6px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.index-stat-value {
	font-size: 18px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

.index-stat-label {
	font-size: 16px;
	color: var(--gray);
	font-weight: 500;
}

.knowledge-search {
	z-index: 20;
	margin-bottom: 80px;
}

.search-wrapper {
	background: var(--bg-search);
	border-radius: 24px;
	padding: 40px;
	max-width: 860px;
	margin: 0 auto;
	box-shadow: var(--shadow-xl);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(0, 0, 255, 0.374);
}

.search-content {
	text-align: center;
	margin-bottom: 32px;
}

.search-rubric {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--dark);
}

.search-text {
	font-size: 16px;
	color: var(--gray);
	max-width: 500px;
	margin: 0 auto;
}

.search-form {
	position: relative;
}




.search-input {
	width: 100%;
	color: var(--text-primary);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 100px;
	font-size: 16px;
	font-weight: 500;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	flex: 1;
	padding: 12px 20px;
	border: 1px solid var(--light-gray);
	border-radius: 8px 0 0 8px;
	border-bottom: 1px solid var(--primary);
	font-size: 16px;
	background-color: var(--light-gray);
	transition: all 0.3s ease;
	flex: 1;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	border-radius: 100px;
	background: var(--bg-secondary);
}

.search-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
	outline: none;
}

.search-btn {
	position: absolute;
	right: 2px;
	top: 2px;
	width: 48px;
	height: 48px;
	background: var(--primary);
	border: none;
	border-radius: 50%;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.search-btn:hover {
	background: var(--primary-dark);
	transform: scale(1.05);
}

.search-keywords {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
	flex-wrap: wrap;
}

.keyword-tag {
	padding: 6px 16px;
	background-color: var(--color-whiteBlack);
	border-radius: 100px;
	font-size: 14px;
	color: var(--text-primary);
	font-weight: 500;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
	cursor: pointer;
}

.keyword-tag:hover {
	background-color: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
	transform: translateY(-2px);
}

.content-categories {
	position: relative;
	overflow: hidden;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 64px;
}

.section-badge {
	display: inline-block;
	padding: 6px 16px;
	background-color: rgba(99, 102, 241, 0.1);
	color: var(--primary);
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 16px;
}

.section-rubric {
	font-family: "DM Serif Display", serif;
	font-size: 40px;
	margin-bottom: 16px;
	color: var(--dark);
}

.book-card-index {
	background-color: var(--bg-secondary);
}

.book-text-index {
	color: var(--text-primary)
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.category-card {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	height: 240px;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
}

.category-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.category-card:hover img {
	transform: scale(1.05);
}

.category-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 24px;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
	color: var(--white);
}

.category-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.category-count {
	font-size: 14px;
	opacity: 0.8;
}


.featured-books {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.book-cover {
	overflow: hidden;
}

.book-cover img {
	width: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	transition: transform 0.5s ease;
}

.articlePage .book-cover img,
.libraryPage .book-cover img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.discount-badge {
	background-color: rgb(255 0 0 / 80%);
}

.book-info {
	padding: 20px;
}

.our-products .woocommerce-Price-amount {
	font-size: 18px;
	color: #303030;
	font-weight: 600;
}

.book-type {
	display: inline-block;
	padding: 4px 12px;
	background-color: rgba(99, 102, 241, 0.1);
	color: var(--primary);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 12px;
}

.book-type.audio {
	background-color: rgba(244, 63, 94, 0.1);
	color: var(--accent);
}

.book-rubric {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.3;
	height: 35px;
}

.book-author {
	font-size: 14px;
	color: var(--gray);
	margin-bottom: 12px;
}

.book-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 16px;
}

.book-action {
	display: flex;
	justify-content: center;
}

.btn-download {
	width: 100%;
	padding: 8px 16px;
	border-radius: 100px;
	background: var(--primary);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-download:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	color: var(--white) !important;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.feature-card {
	background: var(--card-gradient);
	border-radius: 24px;
	padding: 32px;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
	height: 100%;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.feature-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: var(--white);
	font-size: 24px;
}

.feature-card:nth-child(1) .feature-icon {
	background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
	box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
	background: linear-gradient(120deg, var(--accent) 0%, #ec4899 100%);
	box-shadow: 0 8px 16px rgba(244, 63, 94, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
	background: linear-gradient(120deg, var(--success) 0%, #059669 100%);
	box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.feature-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

.feature-description {
	color: var(--gray);
	margin-bottom: 20px;
	font-size: 15px;
}

.testimonials {
	padding: 80px 0;
	background-color: var(--off-white);
	position: relative;
}

.testimonials::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	opacity: 0.08;
	filter: blur(80px);
	z-index: 0;
}

.testimonial-container {
	max-width: 760px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.testimonial-card {
	background: var(--white);
	border-radius: 24px;
	padding: 40px;
	box-shadow: var(--shadow-lg);
	position: relative;
}

.testimonial-quote {
	font-size: 20px;
	line-height: 1.7;
	margin-bottom: 32px;
	position: relative;
	color: var(--dark-alt);
}

.testimonial-quote::before {
	content: '"';
	position: absolute;
	top: -30px;
	left: -10px;
	font-size: 80px;
	font-family: "DM Serif Display", serif;
	color: rgba(99, 102, 241, 0.1);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.author-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-weight: 700;
	font-size: 18px;
}

.author-info h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

.author-info p {
	font-size: 14px;
	color: var(--gray);
}

.newsletter {
	padding: 80px 0;
}

.newsletter-container {
	background: var(--bg-community);
	border-radius: 24px;
	padding: 48px;
	color: var(--white);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.newsletter-container::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	filter: blur(60px);
	border-radius: 50%;
}

.newsletter-content {
	position: relative;
	z-index: 10;
}

.newsletter-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
}

.newsletter-description {
	margin-bottom: 32px;
	opacity: 0.9;
}

.newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.newsletter-input {
	flex: 1;
	height: 52px;
	border-radius: 100px;
	border: none;
	padding: 0 24px;
	font-size: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-input:focus {
	outline: none;
}


.newsletter-btn {
	background-color: var(--white);
	color: var(--color-primaryBlack);
	border: none;
	border-radius: 100px;
	padding: 12px 24px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* Contact Page : It has custom html in wordpress admin contact-us page*/
 
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-profile {
    text-align: center;
    margin-bottom: 30px;
}

.contact-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.contact-profile-img:hover {
    transform: scale(1.05);
}

.contact-username {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-userbio {
    font-size: 16px;
    color: var(--text-tertiary);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-link-item {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-link-item:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.contact-social-link{
	color:var(--text-primary) !important;
}

.contact-link-item a {
    text-decoration: none;
	border:none !important;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: color 0.3s ease;
    width: 100%;
}

.contact-link-item:hover a {
    color: var(--white);
}

.contact-link-icon {
    width: 22px;
    height: 22px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-social-icon img {
    width: 20px;
    height: 20px;
}



.footer {
	padding: 80px 0 40px;
	background-color: var(--footer-bg);
	color: var(--footer-text);
}

footer ul {
	padding-left: 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	margin-bottom: 20px;
}

.footer-logo span {
	background: linear-gradient(120deg, var(--primary-light) 0%, var(--white) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 24px;
	font-size: 15px;
}

.social-links {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: all 0.3s ease;
}

.social-link:hover {
	background-color: var(--primary);
	transform: scale(1.05);
}

.footer-heading {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 24px;
}

.footer-links {
	list-style: none;
}

.footer-link {
	margin-bottom: 12px;
}

.footer-link a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-link a:hover {
	color: var(--primary-light);
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

.footer-bottom a {
	color: rgb(255, 255, 255);
	font-weight: 600;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	height: 100vh;
	background: var(--bg-vocab);
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	z-index: 999;
	padding: 40px 30px 40px;
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.mobile-nav-links {
	list-style: none;
	margin-bottom: 40px;
}

.mobile-menu-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.menu-close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--dark);
	cursor: pointer;
}

footer .menu-item a {
	color: rgba(255, 255, 255, 0.7) !important;
}

.footer-col ul li a:hover {
	color: var(--primary) !important;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.floating {
	animation: floatingIndex 6s ease-in-out infinite;
}

.libraryPage .search-section {
	background: var(--white);
	padding: 12px 0;
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 80px;
	z-index: 90;
}

.libraryPage .search-container {
	display: flex;
	justify-content: center;
	position: relative;
}

.libraryPage .search-bar {
	display: flex;
	width: 100%;
	max-width: 800px;
	transition: all 0.3s ease;
	position: relative;
}

.libraryPage .search-bar.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: none;
	padding: 12px 16px;
	background: var(--white);
	z-index: 1000;
	box-shadow: var(--shadow-md);
}

.search-button {
	padding: 0 24px;
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 0 8px 8px 0;
	cursor: pointer;
	transition: all 0.3s;
}

.libraryPage .search-button:hover {
	background: var(--primary-dark);
}

.libraryPage .mobile-search-btn {
	display: none;
	background: none;
	border: none;
	color: var(--dark);
	font-size: 20px;
	padding: 8px;
	cursor: pointer;
}

.libraryPage .search-close-btn {
	border-radius: 50%;
	box-shadow: 0 0 2px 2px blue;
	display: none;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--gray);
	font-size: 20px;
	cursor: pointer;
	z-index: 1001;
	background-color: #fff;
	width: 40px;
	height: 40px;
}

.libraryPage .book-content-section {
	padding: 40px 0;
}

.libraryPage .book-content-container {
	display: flex;
	gap: 40px;
	flex-direction: column-reverse;
}

.libraryPage .book-main-content {
	flex: 1;
	order: 2;
}

.book-main-content {
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid #7170709e;
}

.libraryPage .book-header {
	display: flex;
	gap: 32px;
	align-items: center;
}

.libraryPage .book-cover {
	flex: 0 0 300px;
	height: 416px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.featured-books .book-cover img {
	width: 100%;
	height: 400px;
}

.libraryPage .book-info {
	flex: 1;
}

.libraryPage .book-title {
	font-family: "DM Serif Display", serif;
	font-size: 36px;
	margin-bottom: 12px;
}

.libraryPage .book-author {
	font-size: 20px;
	color: var(--gray);
	margin-bottom: 16px;
}

.libraryPage .book-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}

.libraryPage .book-description {
	font-style: italic;
	line-height: 1.6;
	padding: 15px 20px;
	border-radius: 10px;
	border-left: 3px solid #4169e1;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.libraryPage .book-meta {
	display: flex;
	gap: 24px;
	margin-bottom: 32px;
}

.libraryPage .meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: var(--dark-alt);
}

.libraryPage .book-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 40px;
}

.libraryPage .btn-large {
	padding: 16px 32px;
	font-size: 18px;
}

.libraryPage .btn-favorite {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--light-gray);
	color: var(--gray);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.libraryPage .btn-favorite:hover,
.libraryPage .btn-favorite.active {
	background: rgba(244, 63, 94, 0.1);
	color: var(--accent);
	border-color: var(--accent-light);
}

.libraryPage .format-options {
	margin-bottom: 40px;
}

.libraryPage .format-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
}

.libraryPage .format-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--primary);
	border-radius: 50px;
}

.libraryPage .format-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.libraryPage .format-card {
	background: var(--white);
	border-radius: 12px;
	padding: 24px;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	border: 1px solid var(--light-gray);
}

.libraryPage .format-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
}

.libraryPage .format-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.libraryPage .format-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(99, 102, 241, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 20px;
}

.libraryPage .format-icon.audio {
	background: rgba(244, 63, 94, 0.1);
	color: var(--accent);
}

.libraryPage .format-name {
	font-weight: 600;
}

.libraryPage .format-availability {
	font-size: 14px;
	color: var(--gray);
	margin-bottom: 16px;
}

.libraryPage .available {
	color: var(--success);
	font-weight: 600;
}

.libraryPage .unavailable {
	color: var(--gray);
	font-weight: 600;
}

.libraryPage .format-details {
	margin-bottom: 20px;
}

.libraryPage .format-detail {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 14px;
}

.libraryPage .detail-label {
	color: var(--gray);
}

.libraryPage .detail-value {
	font-weight: 500;
}

.libraryPage .format-action {
	width: 100%;
}

.libraryPage .similar-books {
	margin-top: 60px;
}

.libraryPage .section-title {
	font-family: "DM Serif Display", serif;
	font-size: 32px;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
}

.libraryPage .section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--primary);
	border-radius: 50px;
}

.libraryPage .books-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
}

.libraryPage .book-sidebar {
	flex: 0 0 300px;
	position: sticky;
	top: 100px;
	height: fit-content;
	order: 1;
}

.libraryPage .sidebar-card {
	background: var(--white);
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--shadow-md);
	margin-bottom: 24px;
}

.libraryPage .sidebar-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--dark);
}

.libraryPage .author-info {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.libraryPage .author-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}

.libraryPage .author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.libraryPage .author-name {
	font-size: 18px;
	font-weight: 600;
}

.libraryPage .author-books {
	font-size: 14px;
	color: var(--gray);
}

.libraryPage .stats-list {
	list-style: none;
}

.libraryPage .stat-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--light-gray);
}

.libraryPage .stat-label {
	color: var(--gray);
}

.libraryPage .stat-value {
	font-weight: 600;
}

.libraryPage .download-links {
	list-style: none;
}

.libraryPage .download-link {
	margin-bottom: 12px;
}

.libraryPage .download-link a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: var(--light-gray);
	border-radius: 8px;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.3s ease;
}

.libraryPage .download-link a:hover {
	background: var(--primary);
	color: var(--white);
}

.libraryPage .mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.libraryPage .mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.libraryPage .mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	height: 100vh;
	background: var(--white);
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	z-index: 999;
	padding: 80px 30px 40px;
	overflow-y: auto;
}

.libraryPage .mobile-menu.active {
	right: 0;
}

.libraryPage .mobile-nav-links {
	list-style: none;
	margin-bottom: 40px;
}

.libraryPage .menu-item a {
	display: block;
	padding: 12px 0;
	font-size: 18px;
	color: var(--dark);
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.libraryPage .menu-item a:hover,
.libraryPage .menu-item a.active {
	color: var(--primary);
	padding-left: 8px;
}

.libraryPage .mobile-menu-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.libraryPage .menu-close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--dark);
	cursor: pointer;
}

.books-catagory .category-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 200px;
	padding: 8px 16px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: border-color 0.2s, box-shadow 0.2s;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23777777' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

.books-catagory {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 0px !important;
	z-index: -1;
	position: relative;
}

.books-catagory .category-select:hover {
	border-color: #cfcfcf;
}

.books-catagory .category-select:focus {
	outline: none;
	border-color: #6c63ff;
	box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.books-catagory .category-select option {
	padding: 8px;
	font-weight: 400;
}

.books-catagory .category-dropdown-container {
	position: relative;
	display: inline-block;
}

.books-catagory .category-dropdown-container::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40px;
	pointer-events: none;
}

.bookPage .btn-accent {
	background-color: var(--accent);
	color: var(--white);
	box-shadow: 0 4px 20px rgba(244, 63, 94, 0.5);
}

.bookPage .btn-accent:hover {
	background-color: #e11d48;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(244, 63, 94, 0.6);
}

.bookPage .book-detail {
	padding: 40px 0 80px;
	position: relative;
	background-color: var(--bg-primary);
}

.bookPage .book-detail::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 400px;
	border-radius: 0 0 0 100%;
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	opacity: 0.05;
	z-index: 0;
}

.bookPage .book-detail-grid {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 50px;
	position: relative;
	z-index: 1;
}

.bookPage .book-cover-container {
	position: relative;
	align-self: center;
}

.bookPage .book-cover {
	width: 100%;
	height: 500px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	position: relative;
	height: 280px;
	border-radius: 0;
	box-shadow: none;
	width: 100%;
	height: 500px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	position: relative;
}

.bookPage .book-cover img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bookPage .book-type-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--primary);
	color: white;
	padding: 6px 16px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	box-shadow: var(--shadow-md);
}

.bookPage .book-info {
	padding: 20px 0;
}

.bookPage .book-category {
	display: inline-block;
	padding: 6px 16px;
	background-color: rgba(99, 102, 241, 0.1);
	color: var(--primary);
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 16px;
}

.bookPage .book-title {
	font-family: "DM Serif Display", serif;
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 16px;
	color: var(--dark);
}

.bookPage .book-meta {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
}

.bookPage .book-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
}

.bookPage .author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-weight: 700;
	font-size: 16px;
}

.bookPage .author-name {
	font-weight: 600;
}

.bookPage .book-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bookPage .rating-count {
	color: var(--gray);
	font-size: 14px;
}

.bookPage .book-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 32px;
}

.bookPage .stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}


@media (max-width:768px) {
	.bookPage .stat {
		display: inline;
	}

	.bookPage .stat-value {
		font-size: 16px;
		font-weight: 600;
	}
}



.bookPage .stat-value {
	font-size: 20px;
	font-weight: 700;
}

.bookPage .stat-label {
	font-size: 14px;
	color: var(--gray);
}

.bookPage .book-description {
	margin-bottom: 32px;
	color: var(--dark-alt);
	font-size: 17px;
}

.bookPage .book-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 40px;
}

.bookPage .format-options {
	margin-bottom: 32px;
}

.bookPage .format-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
}

.bookPage .formats {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.bookPage .format-option {
	border: 2px solid rgba(99, 102, 241, 0.2);
	border-radius: 12px;
	padding: 16px 24px;
	flex: 1;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.bookPage .format-option.active {
	border-color: var(--primary);
	background-color: rgba(99, 102, 241, 0.05);
}

.bookPage .format-option.active::after {
	content: "✓";
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--primary);
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.bookPage .format-name {
	font-weight: 600;
	margin-bottom: 4px;
}

.bookPage .format-details {
	font-size: 14px;
	color: var(--gray);
}

.bookPage .book-tabs {
	margin-top: 60px;
}

.bookPage .tabs-nav {
	display: flex;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 32px;
	overflow-y: hidden;
}

.bookPage .tab-btn {
	padding: 5px 16px;
	margin: 5px;
	font-weight: 600;
	color: var(--gray);
	background: transparent;
	border: none;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.bookPage .tab-btn.active {
	background: var(--primary);
	color: #fff;
	border-radius: 40px;
}

.bookPage .tab-btn.active::after {
	width: 100%;
}

.bookPage .tab-content {
	display: none;
}

.bookPage .tab-content.active {
	display: block;
}

.bookPage .book-details-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.bookPage .detail-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.bookPage .detail-label {
	font-size: 14px;
	color: var(--gray);
}

.bookPage .detail-value {
	font-weight: 600;
	font-size: 16px;
}

.bookPage .reviews-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.bookPage .review {
	background-color: var(--white);
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--shadow-md);
}

.bookPage .review-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.bookPage .reviewer {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bookPage .reviewer-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-weight: 700;
	font-size: 16px;
}

.bookPage .reviewer-info {
	display: flex;
	flex-direction: column;
}

.bookPage .reviewer-name {
	font-weight: 600;
	font-size: 16px;
}

.bookPage .review-date {
	font-size: 14px;
	color: var(--gray);
}

.bookPage .review-rating {
	display: flex;
	color: #fbbf24;
}

.bookPage .review-content {
	color: var(--dark-alt);
	font-size: 15px;
}

.bookPage .similar-books {
	padding: 80px 0;
	background-color: var(--light-gray);
}

.bookPage .section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 64px;
}

.bookPage .section-title {
	font-family: "DM Serif Display", serif;
	font-size: 32px;
	margin-bottom: 16px;
	color: var(--dark);
}

.featured-books .swiper-section {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	/* background: #f7f7f7; */
}

.featured-books .swiper {
	width: 90%;
}

.featured-books .swiper-slide {
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	font-size: 1.5rem;
	font-weight: 600;
}

.featured-books .autoplay-progress {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--swiper-theme-color);
}
.featured-books .autoplay-progress{
	z-index:0;
}
.featured-books .autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0px;

	width: 100%;
	height: 100%;
	stroke-width: 4px;
	stroke: var(--swiper-theme-color);
	fill: none;
	stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}

.bookPage .book-card {
	flex: 0 0 220px;
	border-radius: 20px;
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
}

.bookPage .book-card .book-info {
	padding: 20px;
}

.bookPage .book-card .book-type {
	display: inline-block;
	padding: 4px 12px;
	background-color: rgba(99, 102, 241, 0.1);
	color: var(--primary);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 12px;
}

.bookPage .book-card .book-type.audio {
	background-color: rgba(244, 63, 94, 0.1);
	color: var(--accent);
}

.bookPage .book-card .book-title {
	font-size: 18px;
	font-family: "Outfit", sans-serif;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.3;
}

.bookPage .book-card .book-author {
	font-size: 14px;
	color: var(--gray);
	margin-bottom: 12px;
	gap: 0;
}

.bookPage .book-card .book-rating {
	margin-bottom: 16px;
}

.bookPage .book-card .btn-download {
	width: 100%;
	padding: 8px 16px;
	border-radius: 100px;
	background: var(--primary);
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	display: block;
}

.bookPage .book-card .btn-download:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.comments-Posted-notice {
	position: relative;
}

.comment-submit-notice {
	background: #4caf50;
	color: white;
	padding: 12px 14px;
	border-radius: 4px;
	margin-bottom: 25px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	animation: fadeIn 0.5s ease-out;
	transition: opacity 0.5s ease;
	position: absolute;
	bottom: 12%;
	right: 4%;
}

.comment-submit-notice::after {
	content: "✓";
	margin: 10px;
	font-weight: bold;
}

[data-theme="dark"] .page-header {
	background: var(--audio-title);

}

.page-header {
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	color: var(--white);
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	filter: blur(60px);
}


.page-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--white);
	padding: 8px 16px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.page-title {
	font-family: "DM Serif Display", serif;
	font-size: 48px;
	margin-bottom: 16px;
}

.page-description {
	font-size: 18px;
	opacity: 0.9;
	max-width: 600px;
	margin-bottom: 32px;
}

.article-search {
	margin: -30px auto 60px;
	max-width: 700px;
	position: relative;
}

.search-bar {
	display: flex;
	background: var(--bg-secondary);
	border-radius: 100px;
	padding: 8px;
	box-shadow: var(--shadow-lg);
}

.search-submit {
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 100px;
	padding: 12px 24px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-submit:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.article-categories {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 48px;
	justify-content: center;
	position: relative;
	z-index: -1;
}

.category-tag {
	padding: 8px 20px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--dark);
	background: var(--bg-secondary);
	box-shadow: var(--shadow-sm);
}

.category-tag:hover,
.category-tag.active {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.articlePage .featured-article {
	margin-bottom: 80px;
}

.articlePage .featured-article-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--bg-primary);
}

.articlePage .featured-article-image {
	position: relative;
	height: 100%;
	min-height: 400px;
	overflow: hidden;
}

.articlePage .featured-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.articlePage .featured-article-card:hover .featured-article-image img {
	transform: scale(1.05);
}

.articlePage .featured-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(244, 63, 94, 0.9);
	color: var(--white);
	padding: 6px 16px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	backdrop-filter: blur(5px);
}

.articlePage .featured-article-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.articlePage .article-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	color: var(--gray);
	font-size: 12px;
}

.articlePage .meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
}

a {
	text-decoration: none;
}

.articlePage .article-category {
	color: var(--primary);
	display: inline-block;
	padding: 4px;
	background-color: rgba(99, 102, 241, 0.1);
	color: var(--primary);
	border-radius: 12px;
	font-weight: 600;
}

.articlePage .featured-article-title {
	font-size: 24px;
	font-weight: 700;
}

.articlePage .articlePage .featured-article-excerpt {
	color: var(--gray);
	margin-bottom: 24px;
	flex-grow: 1;
}

.articlePage .articlePage .article-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.articlePage .articlePage .article-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.articlePage .articlePage .author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--primary-light);
	color: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.author-avatar img {
	border-radius: 42px;
}

.articlePage .author-info h4 {
	font-size: 16px;
	font-weight: 600;
}

.articlePage .author-info p {
	font-size: 14px;
	color: var(--gray);
}

.articlePage .section-title {
	font-family: "DM Serif Display", serif;
	font-size: 32px;
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.articlePage .section-title::after {
	content: "";
	height: 2px;
	flex: 1;
	background: linear-gradient(to right, var(--primary-light), transparent);
	border-radius: 50px;
}

.articlePage .articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 64px;
}

.articlePage .article-card {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.articlePage .article-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.articlePage .article-image {
	height: 220px;
	overflow: hidden;
}

.articlePage .article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.articlePage .article-card:hover .article-image img {
	transform: scale(1.05);
}

.articlePage .article-content {
	padding: 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.articlePage .article-content-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 14px;
}

.articlePage .article-date {
	color: var(--gray);
}

.articlePage .article-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.3;
}

.articlePage .article-excerpt {
	color: var(--gray);
	font-size: 15px;
	margin-bottom: 24px;
	flex-grow: 1;
}

.articlePage .read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 25px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	position: relative;
	overflow: hidden;
	margin-top: 16px;
	width: fit-content;
}

.articlePage .read-more::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.articlePage .read-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
	background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
	color: #fff !important;
	gap: 10px;
	color: var(--primary-dark);
}

.articlePage .read-more:hover::before {
	left: 100%;
}

.articlePage .read-more:active {
	transform: translateY(0);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.articlePage .read-more i {
	transition: transform 0.3s ease;
	font-size: 12px;
}

.articlePage .read-more:hover i {
	transform: translateX(4px);
}

.articlePage .read-more.minimal {
	background: transparent;
	color: var(--primary, #667eea);
	border: 2px solid var(--primary, #667eea);
	box-shadow: none;
	padding: 10px 20px;
}

.articlePage .read-more.minimal:hover {
	background: var(--primary, #667eea);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.articlePage .read-more.ghost {
	background: rgba(102, 126, 234, 0.1);
	color: var(--primary, #667eea);
	border: 1px solid rgba(102, 126, 234, 0.2);
	backdrop-filter: blur(10px);
	box-shadow: none;
}

.articlePage .read-more.ghost:hover {
	background: rgba(102, 126, 234, 0.15);
	border-color: var(--primary, #667eea);
	transform: translateY(-1px);
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.page-item {
	padding: 10px 16px;
	border-radius: 18%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--dark);
	background: var(--bg-secondary);
	box-shadow: var(--shadow-sm);
}

.page-item:hover,
.page-item.active {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.page-item.prev,
.page-item.next {
	width: auto;
	padding: 0 16px;
	border-radius: 100px;
}

.aboutPage .aboutpage-header {
	padding: 100px 0 100px;
	position: relative;
	overflow: hidden;

	text-align: center;
}

.aboutPage .aboutpage-header::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
	opacity: 0.1;
	filter: blur(100px);
	z-index: 0;
}

.aboutPage .aboutpage-header::after {
	content: "";
	position: absolute;
	bottom: -200px;
	left: -200px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-light), var(--accent));
	opacity: 0.1;
	filter: blur(80px);
	z-index: 0;
}

.aboutPage .page-header-content {
	position: relative;
	max-width: 90%;
	margin: 0 auto;
}

.aboutPage .page-title {
	font-family: "DM Serif Display", serif;
	font-size: 56px;
	line-height: 1.1;
	margin-bottom: 24px;
	position: relative;
	text-align: left;
}

.aboutPage .page-title::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 18%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--text-gradient);
	border-radius: 50px;
}

.aboutPage .page-subtitle {
	font-size: 20px;
	color: var(--gray);
	max-width: 600px;
	margin: 0 auto;
}

.aboutpage-header .page-header-content p {
	text-align: left !important;
}

.aboutPage .section {
	padding: 80px 0;
	position: relative;
}





.aboutPage .section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 64px;
}

.aboutPage .section-badge {
	display: inline-block;
	padding: 6px 16px;
	background-color: rgba(99, 102, 241, 0.1);
	color: var(--primary);
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 16px;
}

.aboutPage .section-title {
	font-family: "DM Serif Display", serif;
	font-size: 40px;
	margin-bottom: 16px;
	color: var(--dark);
}

.aboutPage .story-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 60px;
}

.aboutPage .story-image {
	flex: 1;
	min-width: 300px;
	position: relative;
}

.aboutPage .story-image img {
	width: 100%;
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
}

.aboutPage .story-text {
	flex: 1;
	min-width: 300px;
}

.aboutPage .story-text h3 {
	font-size: 28px;
	margin-bottom: 24px;
	color: var(--dark);
}

.aboutPage .story-text p {
	margin-bottom: 24px;
	/* color: var(--gray); */
	font-size: 16px;
}

.aboutPage .values-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.aboutPage .value-card {
	background: var(--card-gradient);
	border-radius: 24px;
	padding: 32px;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.aboutPage .value-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.aboutPage .value-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: var(--white);
	font-size: 24px;
}

.aboutPage .value-card:nth-child(1) .value-icon {
	background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
	box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.aboutPage .value-card:nth-child(2) .value-icon {
	background: linear-gradient(120deg, var(--accent) 0%, #ec4899 100%);
	box-shadow: 0 8px 16px rgba(244, 63, 94, 0.3);
}

.aboutPage .value-card:nth-child(3) .value-icon {
	background: linear-gradient(120deg, var(--success) 0%, #059669 100%);
	box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.aboutPage .value-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

.aboutPage .value-description {
	color: var(--gray);
	font-size: 15px;
}

.aboutPage .timeline {
	position: relative;
	max-width: 800px;
	margin: 48px auto 0;
}

.aboutPage .timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background: linear-gradient(to bottom, var(--primary-light), var(--primary));
	transform: translateX(-50%);
	border-radius: 50px;
}

.aboutPage .timeline-item {
	position: relative;
	margin-bottom: 60px;
}

.aboutPage .timeline-item:last-child {
	margin-bottom: 0;
}

.aboutPage .timeline-item:nth-child(odd) {
	padding-right: 52%;
}

.aboutPage .timeline-item:nth-child(even) {
	padding-left: 52%;
}

.aboutPage .timeline-content {
	background: var(--bg-vocab);
	border-radius: 24px;
	padding: 32px;
	box-shadow: var(--shadow-lg);
	position: relative;
	transition: all 0.3s ease;
}

.aboutPage .timeline-content:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
}

.aboutPage .timeline-year {
	display: inline-block;
	background: var(--primary);
	color: var(--white);
	padding: 8px 16px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 16px;
}

.aboutPage .timeline-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.aboutPage .timeline-text {
	color: var(--gray);
	font-size: 15px;
}

.aboutPage .timeline-dot {
	position: absolute;
	top: 40px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary);
	border: 4px solid var(--white);
	box-shadow: var(--shadow-md);
}

.aboutPage .timeline-item:nth-child(odd) .timeline-dot {
	right: calc(50% - 10px);
}

.aboutPage .timeline-item:nth-child(even) .timeline-dot {
	left: calc(50% - 10px);
}

.aboutPage .team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.aboutPage .team-card {
	background: var(--white);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
}

.aboutPage .team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.aboutPage .team-image {
	width: 100%;
	height: 260px;
	overflow: hidden;
}

.aboutPage .team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.aboutPage .team-card:hover .team-image img {
	transform: scale(1.05);
}

.aboutPage .team-info {
	padding: 24px;
	text-align: center;
}

.aboutPage .aboutPage .team-name {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.aboutPage .aboutPage .team-role {
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 16px;
	font-size: 14px;
}

.aboutPage .aboutPage .team-bio {
	color: var(--gray);
	font-size: 14px;
	margin-bottom: 16px;
}

.aboutPage .team-social {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.aboutPage .team-social-link {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(99, 102, 241, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	transition: all 0.3s ease;
}

.aboutPage .team-social-link:hover {
	background-color: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
}

.aboutPage .stats-container {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border-radius: 24px;
	padding: 48px;
	color: var(--white);
	box-shadow: var(--shadow-xl);
	position: relative;
	overflow: hidden;
}

.aboutPage .stats-container::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	filter: blur(50px);
}

.aboutPage .aboutPage .stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
	z-index: 10;
}

.aboutPage .aboutPage .stat-item {
	text-align: center;
}

.aboutPage .stat-value {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 8px;
}

.aboutPage .stat-label {
	font-size: 16px;
	opacity: 0.9;
}

.aboutPage .cta-container {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.aboutPage .cta-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--dark);
}

.aboutPage .cta-text {
	font-size: 18px;
	color: var(--gray);
	margin-bottom: 32px;
}

.aboutPage .cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.aboutPage .floating {
	animation: floatingAbout 6s ease-in-out infinite;
}

.format-option {
	display: block;
	padding: 15px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.format-option:hover {
	border-color: #3b82f6;
	transform: translateY(-2px);
}

.btn-favorite {
	background: none;
	border: 1px solid #e5e7eb;
	padding: 8px 15px;
	border-radius: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	color:var(--text-primary)
}

.btn-favorite:hover {
	border-color: #3b82f6;
	color: #3b82f6;
}

.btn-favorite.liked {
	background: #fecaca;
	border-color: #f87171;
	color: #dc2626;
}

.like-count {
	font-weight: 500;
}

.comments-section {
	background-color: var(--bg-secondary);
	padding: 30px;
	border-radius: 15px;
	box-shadow: var(--shadow-md);
}

.comments-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.comments-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

.comments-count {
	background: var(--primary);
	color: var(--white);
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
}

.comment-form {
	background: var(--bg-secondary);
	border-radius: 16px;
	padding: 24px;
	margin: 40px 0;
}

.comment-form-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.form-row .form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 15px;
}

.form-control {
	width: 100%;
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid var(--light-gray);
	font-size: 16px;
	font-family: "Outfit", sans-serif;
	transition: all 0.3s ease;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-light);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.comment-submit {
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.comment-submit:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.comments-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.comment {
	background: var(--off-white);
	border-radius: 16px;
	box-shadow: var(--primary-dark);
	padding: 24px;
}

.comment-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.comment-author {
	display: flex;
	gap: 12px;
	align-items: center;
}

.comment-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.comment-author-name {
	font-weight: 600;
	font-size: 16px;
}

.comment-date {
	color: var(--gray);
	font-size: 14px;
}

.comment-content {
	color: var(--dark-alt);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
}

.comment-actions {
	display: flex;
	gap: 16px;
}

.comment-action {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--gray);
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.comment-action:hover {
	color: var(--primary);
}

.comment-replies {
	margin-top: 20px;
	margin-left: 60px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.blogPage .article-header {
	padding: 50px 0 60px;
	position: relative;
	background: var(--bg-search);
}

.blogPage .article-header-container {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.blogPage .article-meta-wrapper {
	display: flex;
	justify-content: space-between;
}

.blogPage .article-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	color: var(--dark-alt);
	font-size: 18px;
	flex-wrap: wrap;
}

.blogPage .meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.blogPage .article-meta-wrapper .author {
	color:#fff;
	text-decoration: none;
	font-weight: 600;
	background:  var(--primary);
	padding: 4px 12px;
	height: fit-content;
	border-radius: 100px;
	font-size: 16px;
}

.blogPage .article-title {
	font-family: "DM Serif Display", serif;
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 24px;
	color: var(--dark);
}

.blogPage .article-subtitle {
	font-size: 20px;
	color: var(--gray);
	margin-bottom: 32px;
	font-weight: 400;
}

.blogPage .article-content {
	background: var(--bg-secondary);
	border-radius: 16px;
	box-shadow: var(--shadow-md);
	overflow: hidden;
	margin: -40px auto 60px;
	position: relative;
}

.blogPage .article-hero-image {
	width: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
	display: block;
}

.blogPage .article-body {
	padding: 40px;
}

.blogPage .article-text {
	font-size: 18px;
	line-height: 1.8;
	color: var(--dark-alt);
	margin-bottom: 30px;
}

.blogPage .article-text p {
	margin-bottom: 24px;
}

.blogPage .article-text h2 {
	font-family: "DM Serif Display", serif;
	font-size: 32px;
	margin: 40px 0 20px;
	color: var(--dark);
}

.blogPage .article-text h3 {
	font-family: "DM Serif Display", serif;
	font-size: 24px;
	margin: 32px 0 16px;
	color: var(--dark);
}

.blogPage .article-text ul,
.blogPage .article-text ol {
	margin-bottom: 24px;
	padding-left: 24px;
}

.blogPage .article-text li {
	margin-bottom: 12px;
}

.blogPage .article-text blockquote {
	font-style: italic;
	border-left: 4px solid var(--primary);
	padding-left: 20px;
	margin: 30px 0;
	color: var(--gray);
}

.blogPage .article-text a {
	color: var(--primary);
	text-decoration: none;
	border-bottom: 1px solid var(--primary-light);
	transition: all 0.3s ease;
}

.blogPage .article-text a:hover {
	color: var(--primary-dark);
	border-bottom-color: var(--primary-dark);
}

.blogPage .article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 40px;
}

.blogPage .article-tag {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gray);
	background: var(--light-gray);
	transition: all 0.3s ease;
	text-decoration: none;
}

.blogPage .article-tag:hover {
	background: var(--primary-light);
	color: var(--primary-dark);
	transform: translateY(-2px);
}

.blogPage .article-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 24px 0;
	border-top: 1px solid var(--light-gray);
	border-bottom: 1px solid var(--light-gray);
	margin: 40px 0;
}

.article-heart {
	display: flex;
	align-items: center;
	gap: 8px;
}

.heart-button {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 30px;
	color: red;
	transition: all 0.3s ease;
}

.heart-button:hover {
	color: var(--primary);
}

.heart-button.active i {
	color: var(--primary);
}

.heart-count {
	font-size: 16px;
	font-weight: 600;
	color: var(--dark-alt);
}

.blogPage .comments-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 30px;
	gap: 20px;
}

.blogPage .comments-title {
	font-size: 24px;
	font-weight: 700;
}

.blogPage .comments-count {
	background: var(--primary);
	color: var(--white);
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
}

.blogPage .comment-form {
	background: var(--bg-primary);
	border-radius: 16px;
	padding: 16px;
	margin-bottom: 40px;
}

.blogPage .form-group {
	margin-bottom: 20px;
}

.blogPage .form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 15px;
}

.blogPage .form-control {
	width: 100%;
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid var(--light-gray);
	font-size: 16px;
	font-family: "Outfit", sans-serif;
	transition: all 0.3s ease;
	background: var(--bg-secondary);
	color: var(--text-primary);
}

.blogPage .form-control:focus {
	outline: none;
	border-color: var(--primary-light);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.blogPage .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.blogPage .comment-submit {
	background: var(--primary);
	color: var(--white);
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.blogPage .comment-submit:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.blogPage .comments-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.blogPage .comment {
	background: var(--bg-primary);
	border-radius: 16px;
	box-shadow: var(--primary-dark);
	padding: 24px;
}

.blogPage .comment-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.blogPage .comment-author {
	display: flex;
	gap: 12px;
	align-items: center;
}

.blogPage .comment-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.blogPage .comment-author-name {
	font-weight: 600;
	font-size: 16px;
}

.blogPage .comment-date {
	color: var(--gray);
	font-size: 14px;
}

.blogPage .comment-content {
	color: var(--dark-alt);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
}

.blogPage .comment-actions {
	display: flex;
	gap: 16px;
}

.blogPage .comment-action {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--gray);
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.blogPage .comment-action:hover {
	color: var(--primary);
}

.blogPage .comment-replies {
	margin-top: 20px;
	margin-left: 60px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.suggestions-container {
	position: absolute;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	top: 70px;
}

.suggestions-list {
	z-index: 1000;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--bg-secondary);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-height: 300px;
	overflow-y: auto;
	animation: fadeIn 0.2s ease-out;
}

.suggestions-list li {
	padding: 12px 16px;
	font-size: 16px;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	border-bottom: 1px solid #f5f5f5;
}

.suggestions-list li:last-child {
	border-bottom: none;
}

.suggestions-list li:hover,
.suggestions-list li:focus {
	background: #f8f9fa;
	color: #000;
}

.suggestions-list li.active {
	background: #f1f3f5;
	font-weight: 500;
}

.fa-spinner {
	display: none;
	position: absolute;
	right: 18%;
	top: 38%;
	transform: translateY(-50%);
}

.header-buttons,
.nav-links {
	display: flex;
}

.no-scroll {
	overflow: hidden;
}

.download-btns.visible {
	display: block;
}

#toast-notifications {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 9999;
}

.toast {
	background: #333;
	color: #fff;
	padding: 0.75rem 1rem;
	margin-top: 0.5rem;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
	opacity: 1;
	transform: translateY(0);
}

.error-page-container * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.error-page-body {
	font-family: "Outfit", sans-serif, Roboto, sans-serif;
	background: var(--bg-secondary);
	color: var(--dark);
	min-height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0;
	overflow-x: hidden;
	margin: 0;
}

.error-page-body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	-webkit-background-size: 50px 50px;
	background-size: 50px 50px;
	z-index: 2;
}

.error-page-content {
	text-align: center;
	z-index: 10;
	background:var(--bg-secondary);
	position: relative;
	max-width: 1000px;
	width: 100%;
	padding: 40px;
	animation: errorPageFadeIn 0.8s ease-out;
	margin: 0 auto;
}

.error-page-code {
	font-size: clamp(5rem, 15vw, 8rem);
	font-weight: 300;
	color: var(--primary);
	margin-bottom: 10px;
	line-height: 0.8;
	letter-spacing: -0.05em;
	position: relative;
	text-align: center;
}

.error-flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	margin: 0 auto;
	width: 100%;
	max-width: 900px;
	animation-delay: 0.5s;
}

.error-left {
	flex: 1;
	max-width: 500px;
	text-align: center;
	margin: 0 auto;
	flex: 1;
	max-width: 500px;
	text-align: left;
}

.error-right {
	flex: 1;
	max-width: 400px;
	margin: 0 auto;
	flex: 1;
	max-width: 400px;
}

.error-page-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--primary);
	letter-spacing: -0.02em;
	text-align: center;
	animation-delay: 0.3s;
}

.error-page-message {
	font-size: 1rem;
	margin-bottom: 25px;
	color: #94a3b8;
	line-height: 1.5;
	text-align: center;
	animation-delay: 0.4s;
}

.error-page-details {
	margin-bottom: 25px;
	padding: 15px;
	background: var(--bg-primary);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	text-align: left;
}

.error-page-details h3 {
	font-size: 1.2rem;
	color: var(--primary);
	margin-bottom: 12px;
	font-weight: 500;
}

.error-page-details ul {
	list-style: none;
	padding: 0;
}

.error-page-details li {
	padding: 6px 0;
	color: #94a3b8;
	font-size: 0.85rem;
	position: relative;
	padding-left: 18px;
}

.error-page-details li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #3b82f6;
}

.error-page-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
	animation-delay: 0.6s;
}

.error-page-btn {
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	position: relative;
	overflow: hidden;
}

.error-page-btn-secondary {
	background: transparent;
	color: #94a3b8;
	border: 1px solid rgba(148, 163, 184, 0.3);
}

.error-page-btn-primary {
	background: var(--primary);
	color: #fff;
	border: none;
}

.error-page-btn-primary:hover {
	color: #fff;
	box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.error-page-btn-secondary:hover {
	background: rgba(148, 163, 184, 0.1);
	color: #f1f5f9;
	border-color: rgba(148, 163, 184, 0.5);
}

.error-page-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.error-page-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 20px;
	padding: 10px 16px;
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	border-radius: 5px;
	color: #fca5a5;
	font-size: 0.85rem;
	animation-delay: 0.2s;
}

.error-page-status-dot {
	width: 6px;
	height: 6px;
	background: #ef4444;
	border-radius: 50%;
	animation: errorPagePulse 2s infinite;
}

.error-page-btn:focus {
	outline: 2px solid #3b82f6;
	outline-offset: 2px;
}

.error-page-content>* {
	animation: errorPageSlideUp 0.6s ease-out;
	animation-fill-mode: both;
}

.vocab-main-container {
	max-width: 1320px;
	margin: 70px auto;
	padding: 0 1rem;
}

.vocab-top-section {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
}

.vocab-top-left {
	flex: 1 0 68%;
	min-width: 0;
}

.vocab-top-right {
	flex: 1 0 30%;
	min-width: 0;
}

.vocab-word-of-day-section {
	padding: 1.5rem;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.vocab-word-of-day-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom, #5a6bff, #8a6bff);
}

.vocab-word-of-day-title {
	background: linear-gradient(to right, #e6e9ff, #e0e4ff);
	color: #5a6bff;
	padding: 8px 16px;
	font-size: 15px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	margin: 0 0 15px 0;
	box-shadow: 0 2px 8px rgba(90, 107, 255, 0.1);
}

.vocab-word-display {
	display: grid;
	grid-template-columns: 57% 40%;
	gap: 1.5rem;
}

.vocab-left,
.vocab-right {
	flex: 1;
	min-width: 250px;
}

.vocab-right {
	border-left: 2px dashed #e0e0ff;
	padding-left: 1.5rem;
}

.vocab-word-header {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.vocab-word-main {
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0.5px;
	color: #6366f1;
}

.vocab-word-type {
	font-size: 16px;
	color: var(--primary-dark);
	background: #f5f5ff;
	padding: 4px 10px;
	border-radius: 6px;
}

.vocab-pronunciation {
	display: flex;
	gap: 1.5rem;
	font-size: 15px;
	color: #555;
	margin: 12px 0;
	flex-wrap: wrap;
}

.vocab-pronunciation i {
	margin-right: 8px;
	cursor: pointer;
	transition: all 0.3s;
	background: #f0f1ff;
	padding: 8px;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 18px;
}

.vocab-pronunciation i:hover {
	color: white;
	background: #5a6bff;
	transform: scale(1.1);
}

.vocab-pronunciation-type {
	color: #5a6bff;
	font-weight: 600;
	text-transform: uppercase;
	margin-right: 6px;
	letter-spacing: 0.5px;
}

.ipa {
	color: var(--text-primary);
}

.vocab-word-definition {
	font-size: 16px;
	position: relative;
	padding-left: 20px;
	margin: 12px 4px;
}

.vocab-word-definition::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #5a6bff;
	font-size: 24px;
	line-height: 18px;
}

.vocab-word-example {
	font-size: 14px;
	font-style: italic;
	color: var(--text-secondary);
	margin-top: 10px;
	padding: 12px 15px;
	background: #f9f9ff;
	border-left: 3px solid #5a6bff;
	border-radius: 0 8px 8px 0;
	line-height: 1.6;
}

.vocab-word-synonyms,
.vocab-word-antonyms {
	margin: 12px 4px;
	font-size: 15px;
	color: #444;
	line-height: 1.6;
	padding: 12px;
	background: #f9f9ff;
	border-radius: 4px;
}

.vocab-word-synonyms strong,
.vocab-word-antonyms strong {
	color: #5a6bff;
	font-weight: 600;
}

.vocab-search-section {
	border-radius: 15px;
	margin: 2rem auto;
	max-width: 700px;
}

.vocab-search-bar {
	position: relative;
}

.vocab-search-input {
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1.1rem;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	outline: none;
	transition: border-color 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.vocab-search-input:focus {
	border-color: #706dff;
	box-shadow: 0 0 0 4px rgba(112, 109, 255, 0.2);
}

.vocab-search-button {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	border-radius: 50%;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
	font-size: 20px;
}

.vocab-search-button:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.vocab-words-section {
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.vocab-section-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--color-WhiteBlack);
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
}

.vocab-words-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}

.vocab-word-item {
	background: var(--bg-vocab);
	border: none;
	padding: 12px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 60px;
}

.vocab-word-item:hover {
	background: #d7dbff;
	transform: translateY(-2px);
	color: #222;
}

.vocab-explore-featured {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 10px 18px;
	font-size: 15px;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 600;
	display: block;
	margin: 0 auto;
	transition: all 0.3s ease;
}

.vocab-explore-featured:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(106, 90, 249, 0.4);
}

.vocab-word-item-name {
	color: var(--text-primary);
	font-size: 15px;
	position: relative;
	z-index: 2;
}

.vocab-category-section {
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin: 2rem 0;
}

.vocab-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.vocab-category-card {
	border: 1px solid #e4e8ff;
	border-radius: 16px;
	padding: 24px;
	transition: 0.3s ease;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.vocab-category-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(74, 78, 212, 0.01);
}

.vocab-category-title {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--primary);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.vocab-category-title::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 40px;
	height: 2px;
	background: #4a4ed4;
	border-radius: 999px;
}

.vocab-category-description {
	font-size: 14px;
	color: var(--text-primary);
	margin: 16px 0 20px;
	flex-grow: 1;
}

.vocab-category-button {
	padding: 10px 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 500;
	transition: 0.3s ease;
	box-shadow: 0 6px 14px rgba(112, 109, 255, 0.2);
	font-weight: bold;
	align-self: flex-start;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.vocab-category-button:hover {
	background: linear-gradient(to right, #5d59f7, #7e5aff);
	transform: scale(1.02);
	color: whitesmoke;
}

.vb-main-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.vb-page-header {
	text-align: left;
	margin-bottom: 2rem;
	animation: fadeIn 0.5s ease-out;
	background: linear-gradient(135deg, #a5b4fc, #6366f1);
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 120px 80px;
	color: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vb-page-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--white);
	padding: 8px 16px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.vb-page-title {
	font-size: 48px;
	color: white;
	margin-bottom: 1rem;
	font-family: 'Playfair Display', serif;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.vb-page-title::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: white;
	border-radius: 3px;
}

.vb-page-description {
	max-width: 600px;
	font-size: 18px;
	opacity: 0.9;
}

.vb-saved-words-btn {
	background: var(--primary);
	color: white;
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 15px rgba(42, 82, 190, 0.3);
	transition: var(--transition);
	margin-bottom: 1.5rem;
}

.vb-saved-words-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(42, 82, 190, 0.4);
	background: var(--primary-dark);
}

.vb-badge {
	background: white;
	color: var(--primary);
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: bold;
}

.vb-alphabet-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--bg-secondary);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-sm);
	animation: fadeIn 0.6s ease-out;
	border-radius: 10px;
}

.vb-alphabet-btn {
	width: 34px;
	height: 34px;
	border: none;
	background: #f0f2ff;
	color: var(--primary);
	font-weight: bold;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.vb-alphabet-btn:hover {
	background: var(--primary);
	color: white;
	transform: scale(1.1);
}

.vb-alphabet-btn.active {
	background: var(--primary);
	color: white;
	transform: scale(1.1);
	box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary);
}

.vb-search-container {
	position: relative;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin: -56px auto 60px;
}

.vb-article-search {
	margin: -30px auto 60px;
	max-width: 700px;
 
	z-index: 20;
}

.vb-search-bar {
	display: flex;
	border-radius: 100px;
	padding: 8px;
	box-shadow: var(--shadow-lg);
	width: 100%;
	max-width: 800px;
	transition: all 0.3s ease;
	background: var(--bg-primary);
}

.vb-search-input {
	width: 100%;
	background-color: var(--bg-secondary);
	border: 1px solid rgba(0, 0, 0, 0.05);
	color: var(--text-primary);
	border-radius: 100px;
	font-size: 16px;
	font-weight: 500;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	padding: 12px 26px;
	position: relative;

}
.vb-search-input::placeholder{
	color:var(--text-secondary);
}

.vb-search-submit {
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 100px;
	padding: 12px 24px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.vb-words-container {
	background: var(--bg-secondary);
	border-radius: var(--border-radius);
	padding: 2rem;
	box-shadow: var(--shadow-md);
	margin-bottom: 2rem;
	animation: fadeIn 0.7s ease-out;
}

.vb-section-title {
	font-size: 1.5rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #f0f2ff;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.vb-section-title i {
	font-size: 1.2rem;
}

.vb-words-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.vb-word-card {
	background: var(--bg-primary);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	transition: var(--transition);
	position: relative;
	box-shadow: var(--shadow-sm);
	animation: fadeInUp 0.5s ease-out;
	text-decoration: none;
	color: inherit;
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius:10px;
}

.vb-word-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.vb-word-title {
	font-size: 1.2rem;
	color: var(--primary);
	margin-bottom: 0.5rem;
	padding-right: 30px;
}

.vb-word-meaning {
	    color: var(--text-tertiary);
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.vb-word-type {
	display: inline-block;
	font-size: 0.8rem;
	background:var(--bg-secondary);
	color: var(--primary);
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

.vb-save-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 15px;
	color: #ccc;
	transition: var(--transition);
	z-index: 2;
}

.vb-save-btn.saved {
	color: var(--secondary);
}

.vb-save-btn:hover {
	transform: scale(1.2);
}

.tooltip {
	visibility: hidden;
	width: 60px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 4px 8px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -30px;
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 0.8rem;
}

.vb-save-btn:hover .tooltip {
	visibility: visible;
	opacity: 1;
}

.vb-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.3s ease-out;
}

.vb-modal-content {
	background: white;
	border-radius: var(--border-radius);
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	padding: 2rem;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
	position: relative;
	animation: slideUp 0.3s ease-out;
}

.vb-close-modal {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text-light);
	transition: var(--transition);
}

.vb-close-modal:hover {
	color: var(--secondary);
	transform: rotate(90deg);
}

.vb-modal-title {
	font-size: 1.8rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.vb-modal-words-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.vb-modal-word-item {
	padding: 1rem;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
	border-radius: 5px;
}

.vb-modal-word-item:hover {
	background: var(--highlight);
}

.vb-modal-word-name {
	font-weight: 600;
	color: var(--primary);
}

.vb-remove-saved-btn {
	background: var(--secondary);
	color: white;
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}

.vb-remove-saved-btn:hover {
	transform: scale(1.1);
	background: var(--secondary-dark);
}

.vb-empty-state {
	text-align: center;
	padding: 2rem;
	color: var(--text-light);
	animation: fadeIn 0.5s ease-out;
}

.vb-empty-state i {
	font-size: 3rem;
	color: #ccc;
	margin-bottom: 1rem;
}

.vb-toast {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--primary);
	color: white;
	padding: 1rem 1.5rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transform: translateY(100px);
	opacity: 0;
	transition: var(--transition);
}

.vb-toast.show {
	transform: translateY(0);
	opacity: 1;
}

.vb-toast i {
	font-size: 1.2rem;
}

.vb-toast.success {
	background: var(--success);
}

.vb-toast.error {
	background: var(--error);
}

.vb-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.vb-page-btn {
	width: 40px;
	height: 40px;
	border: 1px solid var(--card-border);
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}

.vb-page-btn:hover {
	background: #f0f2ff#f0f2ff;
	border-color: var(--primary);
}

.vb-page-btn.active {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.vb-page-btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.vd-main-container {
	max-width: 1320px;
	margin: auto;
	padding: 4rem 2rem;
}

.vd-back-btn {
	background: #6366f1;
	color: white;
	border: none;
	padding: 0.7rem 1.5rem;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
	transition: var(--transition);
	margin-bottom: 2rem;
	font-size: 0.95rem;
}

.vd-back-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
	background: var(--primary-dark);
}

.vd-word-detail-container {
	background: var(--bg-secondary);
	border-radius: 12px;
	padding: 2.5rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.vd-word-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
	position: relative;
}

.vd-word-title {
	font-size: 2.8rem;
	color: #333;
	margin-bottom: 0.5rem;
	font-family: 'DM Serif Display', serif;
	letter-spacing: -0.5px;
	position: relative;
	display: inline-block;
}

.vd-word-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 60px;
	height: 3px;
	background: #6366f1;
	border-radius: 3px;
}

.vd-word-type {
	display: inline-block;
	background: var(--bg-primary);
	color: var(--primary-dark);
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.vd-definition-container {
	display: flex;
	gap: 3rem;
	margin-bottom: 1.5rem;
}

.vd-definition-content {
	flex: 1;
}

.vd-word-sidebar {
	width: 320px;
}

.vd-section-title {
	font-size: 1.4rem;
	color: #6366f1;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #f0f2ff;
	font-weight: 600;
	letter-spacing: -0.5px;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.vd-section-title i {
	font-size: 1.2rem;
}

.vd-word-definition {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.vd-word-example {
	background: #f0f2ff;
	padding: 1.2rem;
	border-radius: 12px;
	border-left: 4px solid #6366f1;
	color: var(--text-secondary);
	font-style: italic;
	margin-bottom: 1.5rem;
	position: relative;
	font-size: 1.05rem;
}

.vd-word-example::before {
	content: '"';
	position: absolute;
	top: 0.5rem;
	left: 0.8rem;
	font-size: 3rem;
	color: rgba(99, 102, 241, 0.1);
	font-family: serif;
	line-height: 1;
}

.vd-word-explanation {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

.vd-word-group {
	background: #f0f2ff;
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(99, 102, 241, 0.1);
	transition: var(--transition);
}

.vd-word-group:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(99, 102, 241, 0.1);
}

.vd-word-group-title {
	font-size: 1.2rem;
	color: var(--primary-dark);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-weight: 600;
}

.vd-word-group-title i {
	color: #6366f1;
	font-size: 1.1rem;
}

.vd-word-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.vd-tag {
	background: rgba(255, 255, 255, 0.9);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	color: var(--primary-dark);
	font-size: 0.9rem;
	transition: var(--transition);
	border: 1px solid rgba(99, 102, 241, 0.2);
	cursor: pointer;
	font-weight: 500;
}

.vd-tag:hover {
	background: #6366f1;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
	border-color: transparent;
}

.vd-pronunciation {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	margin: 1rem 0;
}

.vd-pronunciation-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.vd-pronunciation-type {
	color: #5a6bff;
	font-weight: 600;
	text-transform: uppercase;
	margin-right: 6px;
	letter-spacing: 0.5px;
	font-size: 0.8rem;
}

.vd-pronunciation-btn {
	background: none;
	border: none;
	color: #6366f1;
	cursor: pointer;
	font-size: 1.2rem;
	transition: var(--transition);
}

.vd-pronunciation i {
	margin: 0 8px 0 0;
	cursor: pointer;
	transition: all 0.3s;
	background: #f0f1ff;
	padding: 8px;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 18px;
	font-size: 0.9rem;
}

.vd-pronunciation-btn:hover {
	transform: scale(1.1);
	color: var(--primary-dark);
}

.vd-animate {
	animation: fadeIn 0.6s ease forwards;
}

.vd-delay-1 {
	animation-delay: 0.1s;
}

.vd-delay-2 {
	animation-delay: 0.2s;
}

.vd-delay-3 {
	animation-delay: 0.3s;
}

.vd-delay-4 {
	animation-delay: 0.4s;
}

@keyframes authorProfileFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-5px);
	}

	60% {
		transform: translateY(-3px);
	}
}

@keyframes btn-pulse {

	0%,
	100% {
		box-shadow: 0 6px 20px rgba(0, 200, 81, 0.4);
	}

	50% {
		box-shadow: 0 8px 30px rgba(0, 200, 81, 0.7);
	}
}

@keyframes errorPageFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes errorPagePulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

@keyframes errorPageSlideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
		opacity: 0;
		transform: translateY(-10px);
		opacity: 0;
		transform: translateY(-5px);
		opacity: 0;
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatingAbout {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

@keyframes floatingIndex {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

@keyframes pulse-glow {
	0% {
		box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
		transform: scale(1);
	}

	100% {
		box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
		transform: scale(1.02);
	}
}

@keyframes rocket-bounce {

	0%,
	100% {
		transform: translateY(-50%) rotate(0deg);
	}

	25% {
		transform: translateY(-60%) rotate(5deg);
	}

	75% {
		transform: translateY(-40%) rotate(-5deg);
	}
}

@keyframes shine {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
	}

	to {
		transform: translateY(0);
	}
}

@keyframes sparkle {

	0%,
	100% {
		opacity: 0;
		transform: scale(0.5) rotate(0deg);
	}

	50% {
		opacity: 1;
		transform: scale(1.2) rotate(180deg);
	}
}

@keyframes sparkle-bounce {

	0%,
	100% {
		opacity: 0.7;
		transform: translateY(0px) scale(0.8);
	}

	50% {
		opacity: 1;
		transform: translateY(-3px) scale(1.1);
	}
}

@keyframes sparkle-fast {

	0%,
	100% {
		opacity: 0;
		transform: scale(0.3) rotate(0deg);
	}

	25% {
		opacity: 1;
		transform: scale(1.5) rotate(90deg);
	}

	75% {
		opacity: 0.8;
		transform: scale(1.2) rotate(270deg);
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes wave-stat {
	0% {
		left: -100%;
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		left: 100%;
		opacity: 0;
	}
}

@media (max-width: 1000px) {
	.error-flex {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
}

@media (max-width: 1024px) {
	.vx-brand-title {
		font-size: 2.4rem;
	}

	.vx-quote-text {
		font-size: 1rem;
	}

	.hero-rubric {
		font-size: 52px;
	}

	.footer-grid {
		gap: 40px 20px;
	}

	.libraryPage .book-header {
		flex-direction: column;
	}

	.libraryPage .book-cover {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.libraryPage .format-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.articlePage .featured-article-image {
		min-height: 300px;
	}

	.articlePage .footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 20px;
	}

	.article-author {
		display: flex;
		flex-direction: row;
		align-content: center;
		gap: 12px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.author-info {
		margin: 4px 0;
	}

	.aboutPage .aboutPage .team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.aboutPage .stats-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		row-gap: 40px;
		grid-template-columns: repeat(4, 1fr);
		justify-items: center;
	}

	.aboutPage .footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px 20px;
	}

	.vd-definition-container {
		flex-direction: column;
		gap: 2rem;
	}

	.vd-word-sidebar {
		width: 100%;
	}

	.vd-word-group {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 1150px) {
	.articlePage .featured-article-card {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

@media (max-width: 360px) {
	.book-link-wrapper {
		gap: 3px;
		padding: 4px 8px;
	}

	.book-link-wrapper i {
		font-size: 10px;
	}

	.book-link-text {
		font-size: 10px;
	}

	.author-bio-link {
		font-size: 8px;
		padding: 2px 5px;
	}

	.vx-word {
		font-size: 1.4rem;
	}

}

@media (max-width: 400px) {

	.blogPage .article-hero-image {
		height: 220px;
	}

	.vd-word-title {
		font-size: 1.6rem;
	}

	.vd-word-detail-container {
		padding: 1.2rem;
	}

	.vd-section-title {
		font-size: 1.1rem;
	}

	.vd-section-title i {
		font-size: 1rem;
	}

	.vd-word-group-title {
		font-size: 1rem;
	}

	.vd-word-group-title i {
		font-size: 1rem;
	}

	.vd-tag {
		font-size: 0.8rem;
		padding: 0.3rem 0.7rem;
	}

	.vd-word-example {
		padding: 0.8rem;
	}
}



@media (max-width: 425px) {
	.search-bar {
		border-radius: 20px;
		background: transparent;
		box-shadow: none;
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.search-input {
		box-shadow: 0 0 2px 1px gray;
	}
}

@media (max-width: 450px) {
	.libraryPage .book-cover {
		width: 70%;

	}

	.articlePage .featured-article-image {
		min-height: 200px;
	}
}

@media (max-width: 480px) {
	.book-link-wrapper {
		gap: 4px;
		padding: 5px 10px;
	}

	.book-link-wrapper i {
		font-size: 11px;
	}

	.book-link-text {
		font-size: 11px;
	}

	.author-bio-link {
		font-size: 9px;
		padding: 3px 6px;
	}

	.vx-logo-text {
		font-size: 20px;
	}

	.vx-logo-circle {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.vx-vocab-header {
		font-size: 1.1rem;
	}

	.vx-word {
		font-size: 1.6rem;
	}

	.vx-pos {
		font-size: 16px;
	}

	.vx-quote-text {
		font-size: 1rem;
	}

	.vx-quote-author {
		font-size: 0.9rem;
	}

	.libraryPage .page-title {
		font-size: 32px;
	}

	.libraryPage .book-title {
		font-size: 24px;
	}

	.libraryPage .section-title {
		font-size: 28px;
	}

	.bookPage .book-details-list {
		grid-template-columns: 1fr;
	}

	.blogPage .article-title {
		font-size: 28px;
	}

	.blogPage .article-text {
		font-size: 16px;
	}

	.blogPage .article-meta {
		font-size: 12px;
		gap: 14px;
		align-items: center;
		justify-content: center;
	}

	.author-label {
		font-size: 12px;
	}

	.blogPage .article-meta-wrapper .author {
		font-size: 12px;
		padding: 0px 6px !important;
	}

	.vocab-nav-links {
		gap: 0.5rem;
	}

	.vocab-nav-links a {
		padding: 0.3rem;
	}

	.vocab-word-main {
		font-size: 1.5rem;
	}

	.vocab-pronunciation {
		gap: 0.8rem;
	}

	.vocab-words-list {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 0.8rem;
	}

	.vocab-word-item {
		padding: 10px;
		min-height: 50px;
	}

	.vocab-category-card {
		padding: 1.2rem;
	}

	.vb-alphabet-btn {
		width: 20px;
		height: 20px;
		font-size: 0.6rem;
	}

	.vb-words-list {
		grid-template-columns: 1fr;
	}

	.vb-word-card {
		padding: 1rem;
	}

	.vb-modal-content {
		padding: 1.5rem;
	}
}

@media (max-width: 500px) {
	.blogPage .article-hero-image {
		height: 250px;
	}
}

@media (max-width: 330px) {
	.blogPage .article-hero-image {
		height: 200px;
	}
}

@media (max-width: 576px) {
	.vd-main-container {
		padding: 0 1rem;
	}

	.vd-back-btn {
		padding: 0.5rem 1rem;
		font-size: 0.5rem;
		margin-bottom: 0.5rem;
	}

	.vd-word-detail-container {
		padding: 1.5rem;
	}

	.vd-word-title {
		font-size: 1.8rem;
		margin-bottom: 0.3rem;
	}

	.vd-word-title::after {
		width: 40px;
		height: 2px;
		bottom: -3px;
	}

	.vd-word-type {
		font-size: 0.8rem;
		padding: 0.2rem 0.7rem;
	}

	.vd-word-header {
		margin-bottom: 1.5rem;
	}

	.vd-pronunciation {
		gap: 1rem;
		margin: 0.8rem 0;
	}

	.vd-pronunciation-item {
		flex: 1 1 100%;
	}

	.vd-pronunciation i {
		width: 30px;
		height: 30px;
		padding: 7px;
		font-size: 0.8rem;
		line-height: 16px;
	}

	.vd-section-title {
		font-size: 1.2rem;
	}

	.vd-word-group {
		padding: 1.2rem;
	}

	.vd-word-group-title {
		font-size: 1.1rem;
	}

	.vd-tag {
		padding: 0.4rem 0.8rem;
		font-size: 0.85rem;
	}

	.vd-word-example::before {
		font-size: 2.5rem;
		top: 0.3rem;
		left: 0.5rem;
	}
}

@media (max-width: 600px) {
	.book-link-wrapper {
		gap: 5px;
		padding: 6px 12px;
	}

	.book-link-wrapper i {
		font-size: 12px;
	}

	.book-link-text {
		font-size: 12px;
	}

	.author-bio-link {
		font-size: 10px;
		padding: 3px 8px;
	}

	.error-page-content {
		padding: 30px 20px;
	}

	.error-page-buttons {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.error-page-btn {
		width: 100%;
		max-width: 220px;
		justify-content: center;
		padding: 10px 20px;
	}

	.error-page-details {
		text-align: center;
		padding: 12px;
	}

	.error-page-code {
		margin-bottom: 5px;
	}

	.error-page-message {
		margin-bottom: 20px;
		font-size: 0.95rem;
	}

	.error-left,
	.error-right {
		max-width: 100%;
		text-align: center;
	}

	.error-page-details ul {
		text-align: left;
		display: inline-block;
	}
}

@media (max-width: 640px) {
	.author-profile-section {
		padding: 60px 0;
	}

	.author-profile-wrapper {
		padding: 0 20px 30px;
	}

	.author-profile-name {
		font-size: 32px;
	}

	.author-profile-metrics {
		flex-direction: column;
		gap: 24px;
		align-items: center;
	}

	.modal-overlay .modal-button::before {
		left: 5px;
	}

	.modal-button {
		padding: 10px 20px;
		font-size: 18px;
	}

	.modal-note {
		padding: 10px;
		font-size: 14px;
	}

	.modal-overlay .modal-features {
		margin-bottom: 2px;
	}

	.index-stat-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 6px;
		background:var(--bg-front-btns);
		border-radius: 12px;
		padding: 12px 16px;
		box-shadow: 0 2px 12px rgba(99, 102, 241, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
		border: 1px solid rgba(99, 102, 241, 0.12);
		position: relative;
		overflow: hidden;
	}

	.index-stat-item ::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 1px;
		background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.2) 50%, transparent 100%);
	}

	.index-stat-value {
		font-weight: 700;
		color: var(--dark);
		margin-bottom: 4px;
		font-size: 16px;
	}

	.index-stat-label {
		color: var(--gray);
		font-size: 0.9em;
		text-align: center;
		font-size: 1rem;
	}

	.hero-statistics {
		display: block;
	}

	.hero-rubric {
		font-size: 42px;
	}

	.hero-text {
		font-size: 18px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.btn {
		width: 100%;
	}

	.search-wrapper {
		padding: 24px;
	}

	.category-grid,
	.features-grid {
		grid-template-columns: 1fr;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-input,
	.newsletter-btn {
		width: 100%;
		padding: 15px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.libraryPage .page-title {
		font-size: 36px;
	}

	.libraryPage .book-title {
		font-size: 28px;
	}

	.libraryPage .book-author {
		font-size: 18px;
	}

	.libraryPage .book-actions {
		flex-direction: column;
	}

	.libraryPage .books-grid {
		grid-template-columns: 1fr;
	}

	.articlePage .articles-grid {
		grid-template-columns: 1fr;
	}

	.articlePage .footer-grid {
		grid-template-columns: 1fr;
	}

	.articlePage .article-categories {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 16px;
		flex-wrap: nowrap;
	}

	.articlePage .category-tag {
		flex: 0 0 auto;
	}

	.articlePage .newsletter-title {
		font-size: 24px;
	}

	.articlePage .featured-article-content {
		padding: 24px;
	}

	.articlePage .article-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.aboutPage .timeline::before {
		left: 20px;
	}

	.aboutPage .timeline-item:nth-child(odd),
	.aboutPage .timeline-item:nth-child(even) {
		padding: 0 0 0 60px;
	}

	.aboutPage .timeline-item:nth-child(odd) .timeline-dot,
	.aboutPage .timeline-item:nth-child(even) .timeline-dot {
		left: 11px;
	}

	.aboutPage .stats-grid {
		grid-template-columns: 1fr;
	}

	.aboutPage .footer-grid {
		grid-template-columns: 1fr;
	}

	.blogPage .article-title {
		font-size: 32px;
	}

	.blogPage .article-body {
		padding: 30px 20px;
	}

	.blogPage .article-text h2 {
		font-size: 28px;
	}

	.blogPage .article-text h3 {
		font-size: 22px;
	}

	.blogPage .article-meta {
		gap: 8px;
		font-size: 14px;
	}

	.blogPage .comment-content {
		font-size: 14px;
	}

	.blogPage .comment {
		padding: 0px;
	}
}

@media (max-width: 748px) {
	.articlePage .featured-badge {
		top: 10px;
		left: 10px;
		padding: 3px 10px;
	}

	.page-numbers {
		font-size: 15px;
	}

	.aboutPage .values-container,
	.aboutPage .team-grid {
		grid-template-columns: 1fr;
	}
}



@media (max-width: 768px) {

	.book-link-wrapper {
		gap: 6px;
		padding: 7px 14px;
	}

	.newsletter-container {
		padding: 20px;
	}

	.book-link-wrapper i {
		font-size: 13px;
	}

	.book-link-text {
		font-size: 13px;
	}

	.author-bio-link {
		font-size: 11px;
		padding: 4px 10px;
	}

	.vx-hero-content {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		gap: 20px;
	}

	.vx-brand-title {
		line-height: 1.2;
	}

	.trust-badge {
		font-size: 0.78rem;
	}

	.vx-brand-description {
		font-size: 1rem;
	}

	.vx-vocab-card {
		order: 2;
	}

	.vx-quote-section {
		order: 3;
		padding: 20px 15px;
	}

	.vx-quote-text {
		font-size: 1.1rem;
	}

	.vx-action-buttons {
		flex-direction: column;
		gap: 12px;
		padding: 0 15px;
		width: 100%;
	}

	.vx-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 25px;
	}

	.vx-word {
		font-size: 1.8rem;
	}

	.vx-definition {
		padding: 0.8rem;
	}

	.vx-nav-links {
		display: none;
	}

	.model-content {
		padding: 32px 24px;
		margin: 20px;
	}

	.modal-rubric {
		font-size: 1.5rem;
	}

	.nav-links {
		display: none;
	}

	.header-buttons {
		display: none !important;
	}

	.mobile-menu-btn {
		display: block;
		display: block !important;
	}

	.bookPage .nav-links,
	.bookPage .header-buttons {
		display: none !important;
	}

	.bookPage .mobile-menu-btn {
		display: block;
	}

	.bookPage .book-detail-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.bookPage .book-cover {
		height: 400px;
		max-width: 280px;
		margin: 0 auto;
	}

	.bookPage .book-title {
		font-size: 32px;
	}

	.bookPage .book-meta,
	.bookPage .book-stats {
		flex-direction: column;
		gap: 16px;
	}

	.bookPage .book-stats {
		display: grid;
	}

	.bookPage .book-actions {
		flex-direction: column;
	}

	.bookPage .formats {
		flex-direction: column;
	}

	.bookPage .footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.articlePage .read-more {
		font-size: 13px;
		padding: 10px 20px;
		gap: 6px;
	}

	.articlePage .nav-links,
	.articlePage .header-buttons {
		display: none !important;
	}

	.articlePage .mobile-menu-btn {
		display: block;
	}

	.articlePage .page-title {
		font-size: 36px;
	}

	.articlePage .articlePage .newsletter-form {
		flex-direction: column;
		gap: 2px;
	}

	.articlePage .newsletter-input,
	.articlePage .newsletter-btn {
		width: 100%;
		padding: 12px 20px;
	}

	.articlePage .newsletter-banner {
		padding: 32px;
	}

	.aboutPage .aboutPage .nav-links,
	.aboutPage .aboutPage .header-buttons {
		display: none;
	}

	.aboutPage .aboutPage .aboutPage .mobile-menu-btn {
		display: block;
	}

	.aboutPage .aboutPage .aboutPage .page-title {
		font-size: 42px;
	}

	.aboutPage .aboutPage .aboutPage .cta-buttons {
		flex-direction: column;
		width: 100%;
	}

	.aboutPage .aboutPage .aboutPage .cta-buttons .btn {
		width: 100%;
	}

	.blogPage .nav-links,
	.blogPage .header-buttons {
		display: none;
	}

	.comments-section {
		padding: 16px;
	}

	.comment-form {
		margin: 20px 0;
	}

	.blogPage .mobile-menu-btn {
		display: block;
	}

	.blogPage .article-header {
		padding: 40px 0 40px;
	}

	.blogPage .article-title {
		font-size: 36px;
	}

	.blogPage .article-subtitle {
		font-size: 18px;
	}

	.blogPage .article-content {
		margin-top: -20px;
	}

	.blogPage .form-row {
		grid-template-columns: 1fr;
	}

	.blogPage .article-actions {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
	}

	.blogPage .comment-replies {
		margin-left: 30px;
	}

	.blogPage .article-meta-wrapper {
		flex-direction: column;
		margin-bottom: 15px;
	}

	.blogPage .article-meta-wrapper .author {
		width: fit-content;
		font-size: 14px;
	}

	.blogPage .article-meta {
		margin-bottom: 3px;
	}

	.suggestions-list {
		position: fixed;
		width: calc(100% - 32px);
		left: 16px !important;
		right: 16px !important;
		max-height: 50vh;
		border-radius: 12px;
	}

	.suggestions-list li {
		padding: 14px 20px;
		font-size: 15px;
	}

	.fa-spinner {
		display: none;
		position: absolute;
		right: 10%;
		top: 22%;
		transform: translateY(-50%);
	}

	.vocab-home-spinner {
		right: 10%;
		top: 38%;
	}

	/* .header-buttons, .nav-links {
		display: none;
	} */

	.vocab-top-section {
		flex-wrap: wrap;
		margin-top: 42px;
	}

	.vocab-top-left,
	.vocab-top-right {
		flex: 1 1 100%;
	}

	.vocab-word-display {
		grid-template-columns: 1fr;
	}

	.vocab-main-container {
		padding: 6px;
		margin: 0px auto;
		margin-bottom: 0px;
	}

	.vocab-category-section {
		padding: 1rem;
	}

	.vocab-nav-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.vocab-section-title {
		font-size: 1.2rem;
	}

	.vocab-word-main {
		font-size: 1.8rem;
	}

	.vocab-words-list {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}

	.vb-nav-container {
		flex-direction: column;
		gap: 1rem;
		padding: 0 1rem;
	}

	.vb-nav-links {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.vb-main-container {
		padding: 1rem;
	}

	.vb-page-title {
		font-size: 2rem;
	}

	.vb-saved-words-btn {
		margin: 0 auto 1rem;
		display: inline-flex;
	}

	.vb-words-list {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

	.vd-main-container {
		padding: 0 0.5rem;
		margin-top: 50px;
	}

	.vd-word-detail-container {
		padding: 1.8rem;
	}

	.vd-word-title {
		font-size: 2.2rem;
	}

	.vd-section-title {
		font-size: 1.3rem;
	}

	.vd-word-definition,
	.vd-word-explanation {
		font-size: 1rem;
	}

	.vd-word-example {
		font-size: 0.95rem;
		padding: 1rem;
	}
}

@media (max-width: 852px) {

	.libraryPage .nav-links,
	.libraryPage .header-buttons {
		display: none;
	}

	.libraryPage .mobile-menu-btn {
		display: block;
	}

	.libraryPage .book-content-container {
		flex-direction: column;
	}

	.libraryPage .book-sidebar {
		order: 1;
		position: static;
		margin-bottom: 40px;
	}

	.libraryPage .book-main-content {
		order: 2;
	}

	.libraryPage .format-cards {
		grid-template-columns: 1fr;
	}

	.libraryPage .books-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.libraryPage .search-section {
		padding: 8px 0;
		top: 60px;
	}

	.libraryPage .search-container {
		justify-content: center;
	}

	.libraryPage .search-bar {
		position: relative;
		width: auto;
		max-width: none;
	}

	.libraryPage .mobile-search-btn {
		display: block;
		margin-left: auto;
	}

	.libraryPage .search-button {
		display: none;
		border-radius: 8px;
		padding: 12px;
		width: 100%;
		margin-top: 8px;
	}

	.libraryPage .search-bar.active {
		flex-direction: column;
		padding: 12px;
		margin-top: 70px;
	}

	.libraryPage .search-bar.active .search-input,
	.libraryPage .search-bar.active .search-button {
		display: block;
	}

	.libraryPage .search-bar.active .mobile-search-btn {
		display: none;
	}

	.libraryPage .search-close-btn {
		display: none;
	}

	.libraryPage .search-bar.active .search-close-btn {
		display: block;
	}

}

@media (max-width: 900px) {
	.vocab-right {
		border-left: none;
		padding-left: 0;
		border-top: 2px dashed #e0e0ff;
		padding-top: 1.5rem;
	}
}

@media (max-width: 992px) {
	.nav-links {
		gap: 14px;
	}

	.author-profile-wrapper {
		grid-template-columns: 1fr;
		gap: 24px;
	}


	.author-profile-photo-container {
		justify-content: center;
		margin-top: -100px;
	}

	.author-profile-photo {
		width: 180px;
		height: 180px;
		min-width: 180px;
		min-height: 180px;
	}

	.author-profile-details {
		text-align: center;
		padding-top: 0;
	}

	.author-profile-bio-heading::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.author-profile-metrics {
		justify-content: center;
	}

	.author-profile-social {
		justify-content: center;
	}

	.author-profile-badges {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (max-width:768px) {
	.comment-submit-notice {
		font-size: 12px;
		position: absolute;
		padding: 6px;
		bottom: 3%;
		right: 33px;
	}
}

@media (min-width: 1000px) {
	/* .article-content .article-hero-image {
		width: 55%;
		border-radius: 16px;
		margin-top: 10px;
		height: 450px;
	} */

	.blogPage .article-content {
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}
}

@media screen and (max-width: 768px) {
	.menu-item a {
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}

	.libraryPage .book-meta {
		flex-direction: column;
	}

	.articlePage .book-meta {
		flex-direction: row;
	}

	.articlePage .meta-item {
		flex-direction: column;
	}

	.libraryPage .meta-item {
		flex-direction: row;
		font-size: 14px;
	}
}

@media screen and (min-width: 768px) {
	.articlePage .meta-item {
		font-size: 18px;
	}

	.articlePage .article-category {
		font-size: 14px;
		padding: 6px 12px !important;
	}

	.article-footer {
		display: flex;
		align-content: center;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}


/* Badge */
.cart-badge {
	z-index: 11;
	position: absolute;
	top: -0.3rem;
	right: 0px;
	background: #ff4757;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	color: #fff;
	font-size: 0.65rem;
	font-weight: bold;
	padding: 0.2em 0.4em;
	border-radius: 0.75rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



/* account button  */
.cart-account-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-left: 1rem;
	border-radius: 50%;
	color: #000;
	font-size: 1.4rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.cart-account-btn:hover {
	font-weight: bold;


}


/* new header  */
.header-buttons .btn,
.mobile-header-buttons .btn {
	padding: 8px 8px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.header-buttons .btn-outline,
.mobile-header-buttons .btn-outline {
	border: 1px solid var(--primary);
	background: none;
	color: var(--primary);
}

.header-buttons .btn-outline:hover {
	background-color: rgba(37, 99, 235, 0.1);
}

.header-buttons .btn-primary {
	background-color: var(--primary);
	color: white;
}

.header-buttons .btn-primary:hover {
	background-color: var(--primary-dark);
}

.action-icons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.theme-toggle {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.5rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-tertiary);
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.theme-toggle:hover {
	transform: scale(1.1);
}

.theme-icon-dark {
	display: none;
}

[data-theme="dark"] .theme-icon-light {
	display: none;
}

[data-theme="dark"] .theme-icon-dark {
	display: block;
}

@media screen and (max-width: 768px) {
	.action-icons {
		display: none;
	}
}

.icon-btn {
	position: relative;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.05);
	color: var(--primary);
	transition: all 0.3s ease;
}

.icon-btn:hover {
	background-color: rgba(0, 0, 0, 0.1);
	color: var(--primary);
}

.cart-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background-color: var(--secondary);
	color: #d946ef;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid white;
	font-weight: bold;
}

.theme-toggle {
	font-size: 18px;
	cursor: pointer;
	background: var(--text-tertiary);
}

/* for vocab serial in admin panel */