body {
	margin: 0;
	font-family: 'Inter', Arial, sans-serif;
	background: #fff;
	color: #222;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

/* Landing Page Body Override */
body.landing-page {
	background: #2a2a2a;
}

/* Student Page Body Override */
body.student-page {
	background: #000;
}

body.student-page::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.95;
	z-index: 0;
	pointer-events: none;
}

body.student-page #bg-graph {
	z-index: -1;
}

body.student-page .minimal-navbar {
	background: transparent;
	position: relative;
	z-index: 1001;
}

body.student-page .minimal-navbar .logo a {
	color: #000;
	text-decoration: none;
}

body.student-page .tools-page {
	position: relative;
	z-index: 1;
	background: transparent;
}

body.student-page .tool-section h2 {
	color: #fff;
}

body.student-page .section-description {
	color: #e0e0e0;
}

body.student-page .tools-header {
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

body.student-page .tools-header h1 {
	color: #fff;
}

body.student-page .tools-header p {
	color: #e0e0e0;
}

/* Student Page Home Button Override */
body.student-page .home-button {
	background: white;
	color: #ffffff;
	border: 2px solid white;
}

body.student-page .home-button:hover {
	background: transparent;
	color: white;
	border: 2px solid white;
}

/* Professional Page Body Override */
body.professional-page {
	background: #1a1a1a;
}

body.professional-page::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: -1;
	pointer-events: none;
}

body.professional-page #bg-graph {
	opacity: 0.3;
}

body.professional-page .minimal-navbar .logo a {
	color: black;
}

body.professional-page .tools-page {
	background: transparent;
	padding-top: 2rem;
}

body.professional-page .tool-section h2 {
	color: white;
}

body.professional-page .section-description {
	color: #cccccc;
}

body.professional-page .tools-header {
	text-align: center;
	padding: 2rem 0 3rem 0;
	background: transparent;
	color: white;
}

body.professional-page .tools-header h1 {
	color: white;
}

body.professional-page .tools-header p {
	color: #e0e0e0;
}

/* Creator Page Body Override */
body.creator-page {
	background: #1a1a1a;
}

body.creator-page::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: -1;
	pointer-events: none;
}

body.creator-page #bg-graph {
	opacity: 0.3;
}

body.creator-page .minimal-navbar .logo a {
	color: black;
}

body.creator-page .tools-page {
	background: transparent;
	padding-top: 2rem;
}

body.creator-page .tool-section h2 {
	color: white;
}

body.creator-page .section-description {
	color: #cccccc;
}

body.creator-page .tools-header {
	text-align: center;
	padding: 2rem 0 3rem 0;
	background: transparent;
	color: white;
}

body.creator-page .tools-header h1 {
	color: white;
}

body.creator-page .tools-header p {
	color: #e0e0e0;
}

/* All Tools Page Styles */
body.all-tools-page {
	background: #0a0a0a;
}

body.all-tools-page::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	opacity: 0.1;
	z-index: -1;
}

body.all-tools-page #bg-graph {
	opacity: 0.3;
}

body.all-tools-page .minimal-navbar .logo a {
	color: #000;
	text-decoration: none;
}

body.all-tools-page .page-header {
	text-align: center;
	padding: 2rem 0 3rem 0;
	background: transparent;
	color: white;
}

body.all-tools-page .page-header h1 {
	color: white;
	margin-bottom: 1rem;
}

body.all-tools-page .page-description {
	color: #e0e0e0;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

body.all-tools-page .pathway-navigation {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

body.all-tools-page .pathway-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	text-decoration: none;
	color: white;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

body.all-tools-page .pathway-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
}

body.all-tools-page .pathway-card h3 {
	margin-bottom: 0.5rem;
	color: white;
}

body.all-tools-page .pathway-card p {
	color: #cccccc;
	margin: 0;
	font-size: 0.9rem;
}

body.all-tools-page .tool-section h2 {
	color: white;
}

body.all-tools-page .section-description {
	color: #cccccc;
}

/* Page Notification Sidebar */
.page-notification {
	position: fixed;
	top: 90%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #2c3e50, #34495e);
	color: #fff;
	padding: 1rem 1.5rem;
	border-radius: 50px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 9999;
	width: 20px;
	height: 20px;
	overflow: hidden;
	animation: expandFromCenter 0.8s ease-out 0.5s forwards, shrinkToCenter 0.5s ease-in 7s forwards;
}

.notification-icon {
	font-size: 1.2rem;
	flex-shrink: 0;
	opacity: 0;
	animation: fadeInIcon 0.3s ease-out 1s forwards, fadeOutIcon 0.3s ease-in 6.7s forwards;
}

.notification-text {
	display: flex;
	flex-direction: column;
	opacity: 0;
	animation: fadeInText 0.3s ease-out 1.1s forwards, fadeOutText 0.3s ease-in 6.6s forwards;
}

.notification-title {
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.2rem;
}

.notification-subtitle {
	font-size: 0.8rem;
	opacity: 0.9;
	line-height: 1.3;
}

@keyframes expandFromCenter {
	0% {
		width: 20px;
		height: 20px;
		padding: 0;
		border-radius: 50%;
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.5);
	}
	30% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		width: 60px;
		height: 60px;
		padding: 0;
		border-radius: 50%;
		transform: translate(-50%, -50%) scale(1);
	}
	100% {
		width: 260px;
		height: auto;
		padding: 1rem 1.5rem;
		border-radius: 25px;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes shrinkToCenter {
	0% {
		width: 260px;
		height: auto;
		padding: 1rem 1.5rem;
		border-radius: 25px;
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		width: 60px;
		height: 60px;
		padding: 0;
		border-radius: 50%;
		transform: translate(-50%, -50%) scale(1);
	}
	70% {
		width: 20px;
		height: 20px;
		transform: translate(-50%, -50%) scale(1);
	}
	100% {
		width: 20px;
		height: 20px;
		padding: 0;
		border-radius: 50%;
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.5);
	}
}

@keyframes fadeInIcon {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fadeOutIcon {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes fadeInText {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fadeOutText {
	from { opacity: 1; }
	to { opacity: 0; }
}

/* Notification click-to-dismiss animation */
.page-notification.clicked {
	animation: quickEaseOut 0.4s ease-in forwards !important;
}

@keyframes quickEaseOut {
	0% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.8);
	}
}

#bg-graph {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	pointer-events: none;
}

.minimal-navbar {
	background: transparent;
	box-shadow: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4rem 2rem 4rem 2rem;
	position: relative;
	z-index: 1000;
}

.logo {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #222;
}

.nav-and-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

/* Search Bar Styles */
.search-container {
	position: relative;
	margin-right: 1rem;
}

.search-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	opacity: 0.6;
	pointer-events: none;
	z-index: 1;
}

#global-search {
	padding: 0.35rem 0.7rem 0.35rem 2rem;
	border: 2px solid #e5e5e5;
	border-radius: 25px;
	font-size: 0.8rem;
	width: 200px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	outline: none;
}

#global-search:focus {
	border-color: #0078ff;
	box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
	background: rgba(255, 255, 255, 0.95);
}

.search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	max-height: 400px;
	overflow-y: auto;
	z-index: 1001;
	margin-top: 0.5rem;
	display: none;
}

.search-results.show {
	display: block;
}

.search-result-item {
	padding: 0.75rem 1rem;
	cursor: pointer;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: background 0.2s ease;
}

.search-result-item:hover {
	background: rgba(0, 120, 255, 0.05);
}

.search-result-item:last-child {
	border-bottom: none;
}

.search-result-title {
	font-weight: 600;
	color: #0078ff;
	margin-bottom: 0.25rem;
}

.search-result-desc {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 0.25rem;
}

.search-result-category {
	font-size: 0.75rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.minimal-nav {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}
.minimal-nav a {
	text-decoration: none;
	color: #222;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: color 0.2s;
}
.minimal-nav a:hover {
	color: #0078ff;
}

/* Navigation Icon Styles */
.nav-icon {
	width: 22px;
	height: 22px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-icon:hover {
	transform: scale(1.1);
	opacity: 0.8;
}

/* Donate Button Styles */
.donate-button {
	background: #007bff;
	color: white !important;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	text-decoration: none;
}

.donate-button:hover {
	background: #0056b3;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.menu-icon {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-left: 1.8rem;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.menu-icon:hover {
	transform: scale(1.1);
}
.menu-icon.active span:nth-child(1) {
	transform: rotate(45deg) translate(4px, 4px);
}
.menu-icon.active span:nth-child(2) {
	opacity: 0;
}
.menu-icon.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -5px);
}
.menu-icon span {
	display: block;
	width: 28px;
	height: 2.5px;
	background: #222;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 0 0 20px 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transform: translateY(-20px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
	z-index: 999;
	max-height: 0;
	overflow: hidden;
}
.dropdown-menu.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	max-height: 500px;
}
.dropdown-content {
	padding: 2rem 3rem 1.5rem 3rem;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}
.dropdown-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #0078ff;
}
.dropdown-content p {
	font-size: 1rem;
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.4;
}

.dropdown-button-item {
	flex: 1;
	padding: 1rem;
	margin-bottom: 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(0, 120, 255, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
	transform: translateY(20px);
	opacity: 0;
}

.dropdown-menu.active .dropdown-button-item {
	transform: translateY(0);
	opacity: 1;
}

.dropdown-menu.active .dropdown-button-item:nth-child(1) {
	transition-delay: 0.1s;
}

.dropdown-menu.active .dropdown-button-item:nth-child(2) {
	transition-delay: 0.2s;
}

.dropdown-menu.active .dropdown-button-item:nth-child(3) {
	transition-delay: 0.3s;
}

.dropdown-menu.active .dropdown-button-item:nth-child(4) {
	transition-delay: 0.4s;
}

.dropdown-button-item:hover {
	background: rgba(0, 120, 255, 0.08);
	border-color: rgba(0, 120, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 120, 255, 0.15);
}

.dropdown-button {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	background: #0078ff;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	font-size: 0.85rem;
	transition: all 0.2s ease;
	margin-top: 0.3rem;
}

.dropdown-button:hover {
	background: #005bb5;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 120, 255, 0.3);
}

/* Responsive dropdown layout */
@media (max-width: 768px) {
	.dropdown-content {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.dropdown-button-item {
		margin-bottom: 0.75rem;
	}
}

.dropdown-button-item h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
	color: #0078ff;
	transition: color 0.2s ease;
}

.dropdown-button-item:hover h3 {
	color: #005bb5;
}

.dropdown-button-item p {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.abstract-hero {
	position: relative;
	min-height: 75vh;
	display: flex;
	align-items: center;
	padding-left: 4vw;
	padding-right: 4vw;
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 520px;
}
.hero-content h1 {
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.1;
	white-space: nowrap;
}
.hero-content .thin {
	font-weight: 300;
	letter-spacing: 1px;
	font-size: 1.6rem;
}
.hero-content .bold {
	font-weight: 900;
	font-size: 5rem;
}
.hero-content h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.7rem;
}
.hero-content p {
	font-size: 1rem;
	margin-bottom: 2.2rem;
	color: #222;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.learn-more-link {
	color: #666;
	text-decoration: none;
	font-size: .9rem;
	font-weight: 400;
	position: relative;
	transition: color 1 ease;
}

.learn-more-link:hover {
	color: #222;
	text-decoration: underline;
}

.minimal-btn {
	display: inline-block;
	padding: 0.7rem 2.2rem;
	background: #222;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
	border-radius: 22px;
	border: 2px solid #222;
	box-shadow: 0 2px 16px rgba(0,0,0,0.07);
	text-decoration: none;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.minimal-btn:hover {
	background: #000;
	color: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.blur-circle {
	display: none;
}

.content-section {
	padding: 2.5rem 4vw;
	position: relative;
	z-index: 1;
	background: rgb(242, 242, 242);
}
.content-section.alt-bg {
	background: #2a2a2a;
}
.content-section.alt-bg .section-content {
	background: #2a2a2a;
	color: white;
}
.content-section.alt-bg .section-content h2 {
	color: white;
}
.content-section.alt-bg .section-content p {
	color: #e0e0e0;
}
.content-section.alt-bg .section-content ul li {
	color: #e0e0e0;
}
.content-section.alt-bg .section-content ul li strong {
	color: white;
}
.section-content {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	padding: 2.2rem;
	border-radius: 16px;
}
.section-content h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #222;
}
.section-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 1.6rem;
}
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.feature-item {
	background: #333333;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.feature-item h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #ffffff;
}
.tools-preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.tool-category {
	background: #fff;
	padding: 2rem;
	border-radius: 16px;
	border: 2px solid #f0f0f0;
	transition: all 0.3s ease;
}
.tool-category:hover {
	border-color: #0078ff;
	transform: translateY(-4px);
}
.tool-category h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #222;
}
.contact-info {
	background: #f8fafd;
	padding: 2rem;
	border-radius: 16px;
	margin-top: 2rem;
}
.contact-info p {
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
}

.contact-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.feedback-btn {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.feedback-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
	text-decoration: none;
	color: white;
}

header {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	position: sticky;
	top: 0;
	z-index: 100;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
}

.logo {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 2px;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.nav-links a {
	text-decoration: none;
	color: #222;
	font-weight: 600;
	position: relative;
	transition: color 0.2s;
}
.nav-links a::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: #0078ff;
	transition: width 0.3s;
	position: absolute;
	left: 0;
	bottom: -4px;
}
.nav-links a:hover {
	color: #0078ff;
}
.nav-links a:hover::after {
	width: 100%;
}

.hero {
	text-align: center;
	padding: 4rem 2rem 2rem 2rem;
	background: #f8fafd;
}
.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
}
.cta-btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: #222;
	color: #fff;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover {
	background: #000;
	transform: scale(1.05);
}

.secondary-btn {
	background: transparent;
	color: #222;
	border: 2px solid #222;
}

.secondary-btn:hover {
	background: #222;
	color: #fff;
	transform: scale(1.05);
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(0,120,255,0.2); }
	70% { box-shadow: 0 0 0 10px rgba(0,120,255,0); }
	100% { box-shadow: 0 0 0 0 rgba(0,120,255,0); }
}

.info-section {
	padding: 3rem 2rem;
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
}
.info-section h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #0078ff;
}
.card-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: flex-start;
}
.card {
	background: #f8fafd;
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	padding: 1.5rem;
	min-width: 220px;
	max-width: 320px;
	flex: 1 1 220px;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	position: relative;
}
.card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 8px 24px rgba(0,120,255,0.08);
}

footer {
	text-align: center;
	padding: 2rem;
	background: #f8fafd;
	color: #888;
	font-size: 1rem;
}

/* Landing Page Styles */
.landing-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	z-index: 1;
	padding: 4rem 1.2rem 1.2rem;
	background: #2a2a2a;
}

.landing-content {
	text-align: center;
	max-width: 1000px;
	opacity: 1;
	transform: translateY(0);
}

.landing-header {
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 2.2rem;
	border: none;
	opacity: 1;
	transform: translateY(0);
}

.landing-content h1 {
	font-size: 2.9rem;
	font-weight: 700;
	margin-bottom: 0.7rem;
	color: #fff;
}

.landing-content p {
	font-size: 1.1rem;
	color: #e0e0e0;
	margin-bottom: 2.2rem;
}

.path-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.path-card {
	background: #fff;
	padding: 2.2rem 1.5rem;
	border-radius: 16px;
	text-decoration: none;
	color: #222;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #e0e0e0;
	opacity: 0;
	transform: translateY(40px);
}

.path-card:nth-child(1) {
	animation: fadeInUp 1s ease-out 0.7s forwards;
}

.path-card:nth-child(2) {
	animation: fadeInUp 1s ease-out 0.9s forwards;
}

.path-card:nth-child(3) {
	animation: fadeInUp 1s ease-out 1.1s forwards;
}

.path-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	border-color: #ccc;
}

.path-icon {
	font-size: 2.4rem;
	margin-bottom: 0.7rem;
}

.path-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.7rem;
	color: #333;
}

.path-card p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
}

/* Landing Page Footer */
.landing-footer {
	background: #1a1a1a;
	color: #e0e0e0;
	padding: 3rem 0 1.5rem;
	margin-top: 0;
	opacity: 1;
	transform: translateY(0);
}

.landing-footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 4vw;
}

.landing-footer .footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.landing-footer .footer-column h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #fff;
}

.landing-footer .footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.landing-footer .footer-column ul li {
	margin-bottom: 0.5rem;
}

.landing-footer .footer-column ul li a {
	color: #b0b0b0;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.landing-footer .footer-column ul li a:hover {
	color: #fff;
}

.landing-footer .footer-bottom {
	padding-top: 1.5rem;
	text-align: center;
}

.landing-footer .footer-bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: #888;
}

/* Tools Page Styles */
.tools-page {
	padding: 1.2rem 4vw;
	position: relative;
	z-index: 1;
}

.tools-header {
	text-align: center;
	margin-bottom: 2.2rem;
	background: #fff;
	padding: 2rem 1.5rem;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid #f0f0f0;
	max-width: 1100px;
	margin: 0 auto 2.2rem auto;
}

.tools-header h1 {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 0.7rem;
	color: #222;
}

.tools-header p {
	font-size: 1rem;
	color: #555;
}

.tools-grid {
	max-width: 1100px;
	margin: 0 auto;
}

.tool-section {
	margin-bottom: 3rem;
}

.tool-section h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
	color: #0078ff;
	padding-bottom: 0;
}

.section-description {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 1.5rem;
	margin-top: 0;
	line-height: 1.5;
	font-style: italic;
}

.tool-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.8rem;
}

.tool-item {
	background: #fff;
	padding: 1.2rem;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 130px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.tool-item:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 8px 24px rgba(0, 120, 255, 0.15);
	border-color: #0078ff;
	text-decoration: none;
	color: inherit;
}

.tool-item h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #222;
	display: flex;
	align-items: center;
	gap: 8px;
}

.tool-logo {
	width: 20px;
	height: 20px;
	object-fit: contain;
	vertical-align: middle;
}

.tool-item p {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 0.8rem;
	line-height: 1.4;
	flex-grow: 1;
}

.tool-tag {
	display: inline-block;
	padding: 0.4rem 0.8rem;
	background: #000;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: absolute;
	top: 1rem;
	right: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(1);
	cursor: default;
	opacity: 0;
	pointer-events: none;
}

.tool-item:hover .tool-tag {
	opacity: 1;
	animation: tagFadeInPulse 0.5s ease-out;
}

@keyframes tagFadeInPulse {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* Specific tag colors based on functionality */
.tool-tag.ai { background: #7c3aed; } /* Purple for AI */
.tool-tag.writing { background: #059669; } /* Green for Writing */
.tool-tag.research { background: #dc2626; } /* Red for Research */
.tool-tag.homework { background: #ea580c; } /* Orange for Homework */
.tool-tag.community { background: #0891b2; } /* Cyan for Community */
.tool-tag.study { background: #7c2d12; } /* Brown for Study */
.tool-tag.gpa { background: #be123c; } /* Rose for GPA */
.tool-tag.citations { background: #4338ca; } /* Indigo for Citations */
.tool-tag.references { background: #6366f1; } /* Blue for References */
.tool-tag.audio { background: #f59e0b; } /* Amber for Audio */
.tool-tag.pdf { background: #ef4444; } /* Red for PDF */
.tool-tag.converter { background: #8b5cf6; } /* Violet for Converter */
.tool-tag.scanner { background: #06b6d4; } /* Sky for Scanner */
.tool-tag.plagiarism { background: #dc2626; } /* Red for Plagiarism */
.tool-tag.books { background: #16a34a; } /* Green for Books */
.tool-tag.courses { background: #2563eb; } /* Blue for Courses */
.tool-tag.certificates { background: #0d9488; } /* Teal for Certificates */
.tool-tag.mit { background: #991b1b; } /* Dark Red for MIT */
.tool-tag.skills { background: #c2410c; } /* Orange for Skills */
.tool-tag.coding { background: #1d4ed8; } /* Blue for Coding */
.tool-tag.workspace { background: #7c3aed; } /* Purple for Workspace */
.tool-tag.secure { background: #059669; } /* Green for Secure */
.tool-tag.tasks { background: #0891b2; } /* Cyan for Tasks */
.tool-tag.canvas { background: #ea580c; } /* Orange for Canvas */
.tool-tag.notes { background: #4338ca; } /* Indigo for Notes */
.tool-tag.mindmap { background: #be123c; } /* Rose for Mind Map */
.tool-tag.whiteboard { background: #6366f1; } /* Blue for Whiteboard */
.tool-tag.math { background: #dc2626; } /* Red for Math */

/* Featured Tools Styling */
.tool-section.featured h2 {
	color: #ffcc00;
	text-shadow: 0 2px 4px rgba(202, 138, 4, 0.3);
}

.featured-item {
	background: linear-gradient(135deg, #ffdf3d 0%, #ffae00 100%) !important;
	border: 2px solid #ffd900 !important;
	box-shadow: 0 8px 25px rgba(234, 179, 8, 0.3) !important;
	position: relative;
	overflow: hidden;
}

.featured-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.15),
		transparent
	);
	transform: rotate(45deg);
	transition: all 0.5s ease;
	opacity: 0;
}

.featured-item:hover::before {
	opacity: 1;
	animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.featured-item h3 {
	color: #1f2937 !important;
	font-weight: 700 !important;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.featured-item p {
	color: #000000 !important;
	font-weight: 500 !important;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.featured-item:hover {
	transform: translateY(-4px) scale(1.02) !important;
	box-shadow: 0 15px 35px rgba(234, 179, 8, 0.45) !important;
	border-color: #ca8a04 !important;
}

.featured-item .tool-tag {
	background: rgba(0, 0, 0, 0.8) !important;
	color: #ffffff !important;
	font-weight: 600 !important;
	border: 1px solid rgba(251, 191, 36, 0.4);
	backdrop-filter: blur(4px);
}

.logo a {
	color: #222;
	text-decoration: none;
}

/* Home Button Styles */
.home-button-container {
	text-align: center;
	padding: 1.5rem 0 5rem 0;
	margin-top: 1rem;
}

.home-button {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: #222;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.2s ease;
	border: 2px solid #222;
}

.home-button:hover {
	background: #fff;
	color: #222;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	/* Reset body for mobile */
	body {
		overflow-x: hidden;
	}
	
	/* Navigation adjustments */
	.minimal-navbar {
		padding: 0.4rem 0.5rem !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center !important;
		gap: 0.5rem;
	}
	
	/* Hide logo on mobile */
	.logo {
		display: none !important;
	}
	
	.nav-and-menu {
		width: 100%;
		display: flex;
		flex-direction: row !important;
		align-items: center;
		justify-content: space-between;
		gap: 0.6rem;
	}
	
	.search-container {
		flex: 1;
		max-width: 160px;
		margin: 0 0 0 0.5rem;
	}
	
	#global-search {
		width: 100% !important;
		font-size: 0.75rem !important;
		padding: 0.25rem 0.4rem 0.25rem 1.4rem !important;
		border-radius: 18px;
		box-sizing: border-box;
	}
	
	.search-icon {
		width: 12px !important;
		height: 12px !important;
		left: 6px !important;
	}
	
	/* Navigation items in a row */
	.minimal-nav {
		display: flex !important;
		flex-direction: row !important;
		gap: 0.8rem !important;
		align-items: center;
		flex-shrink: 0;
	}
	
	.nav-icon {
		width: 16px !important;
		height: 16px !important;
	}
	
	.donate-button {
		padding: 0.2rem 0.4rem !important;
		font-size: 0.7rem !important;
		white-space: nowrap;
		flex-shrink: 0;
	}
	
	.menu-icon {
		flex-shrink: 0;
		margin-left: 0.6rem !important;
	}
	
	.menu-icon span {
		width: 18px !important;
		height: 2px !important;
	}
	
	/* Hero section mobile */
	.abstract-hero {
		min-height: 70vh !important;
		padding: 1rem !important;
		text-align: center;
	}
	
	.hero-content {
		max-width: 100% !important;
		padding: 0 1rem;
	}
	
	.hero-content h1 {
		font-size: 2.2rem !important;
		white-space: normal !important;
		line-height: 1.2 !important;
		margin-bottom: 0.8rem !important;
	}
	
	.hero-content .bold {
		font-size: 3rem !important;
	}
	
	.hero-content .thin {
		font-size: 1.2rem !important;
	}
	
	.hero-content h2 {
		font-size: 1.4rem !important;
		margin-bottom: 0.6rem !important;
	}
	
	.hero-content p {
		font-size: 0.9rem !important;
		margin-bottom: 1.5rem !important;
		line-height: 1.5 !important;
	}
	
	.minimal-btn {
		font-size: 1rem !important;
		padding: 0.6rem 1.5rem !important;
	}
	
	/* Hero actions mobile - center the buttons */
	.hero-actions {
		flex-direction: column !important;
		align-items: center !important;
		gap: 1rem !important;
		text-align: center !important;
	}
	
	/* Content sections mobile */
	.content-section {
		padding: 1.5rem 1rem !important;
	}
	
	.section-content {
		padding: 1.5rem !important;
		border-radius: 12px !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	
	.section-content h2 {
		font-size: 1.6rem !important;
		margin-bottom: 0.8rem !important;
	}
	
	.section-content p {
		font-size: 0.9rem !important;
		margin-bottom: 1.2rem !important;
	}
	
	.feature-grid {
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
	}
	
	.feature-item {
		padding: 1.2rem !important;
	}
	
	/* Landing page mobile */
	.landing-hero {
		min-height: 70vh !important;
		padding: 1rem !important;
	}
	
	.landing-content {
		max-width: 100% !important;
		padding: 0;
	}
	
	.landing-header {
		padding: 1rem !important;
		margin-bottom: 1.5rem !important;
		border-radius: 12px !important;
	}
	
	.landing-content h1 {
		font-size: 2rem !important;
		margin-bottom: 0.6rem !important;
	}
	
	.landing-content p {
		font-size: 0.9rem !important;
		margin-bottom: 1.5rem !important;
	}
	
	.path-options {
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
		margin-top: 1rem !important;
	}
	
	.path-card {
		padding: 1.5rem 1rem !important;
		border-radius: 12px !important;
	}
	
	.path-icon {
		font-size: 2rem !important;
		margin-bottom: 0.5rem !important;
	}
	
	.path-card h3 {
		font-size: 1.2rem !important;
		margin-bottom: 0.6rem !important;
	}
	
	.path-card p {
		font-size: 0.85rem !important;
	}
	
	/* Landing footer mobile */
	.landing-footer {
		padding: 2rem 0 1rem !important;
		margin-top: 2rem !important;
	}
	
	.landing-footer .footer-links {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
	}
	
	.landing-footer .footer-bottom p {
		font-size: 0.8rem !important;
		line-height: 1.4 !important;
	}

	/* Tools page mobile */
	.tools-page {
		padding: 1rem !important;
	}
	
	.tools-header {
		padding: 1rem !important;
		margin-bottom: 1.5rem !important;
		border-radius: 12px !important;
		max-width: 100% !important;
	}
	
	.tools-header h1 {
		font-size: 1.8rem !important;
		margin-bottom: 0.5rem !important;
	}
	
	.tools-header p {
		font-size: 0.85rem !important;
	}
	
	.tools-grid {
		max-width: 100% !important;
	}
	
	.tool-section {
		margin-bottom: 2rem !important;
	}
	
	.tool-section h2 {
		font-size: 1.5rem !important;
		margin-bottom: 0.3rem !important;
	}
	
	.section-description {
		font-size: 0.8rem !important;
		margin-bottom: 1rem !important;
	}
	
	.tool-cards {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.3rem !important;
		max-width: 100% !important;
	}
	
	.tool-item {
		padding: 0.5rem !important;
		min-height: 80px !important;
		border-radius: 6px !important;
		font-size: 0.7rem !important;
	}
	
	.tool-item h3 {
		font-size: 0.9rem !important;
		margin-bottom: 0.4rem !important;
	}
	
	.tool-logo {
		width: 16px !important;
		height: 16px !important;
	}
	
	.tool-item p {
		font-size: 0.75rem !important;
		margin-bottom: 0.6rem !important;
		line-height: 1.3 !important;
	}
	
	/* Dropdown menu mobile */
	.dropdown-content {
		flex-direction: column !important;
		padding: 1rem !important;
		gap: 0.8rem !important;
	}
	
	.dropdown-button-item {
		margin-bottom: 0.5rem !important;
		padding: 0.8rem !important;
	}
	
	.dropdown-button-item h3 {
		font-size: 0.9rem !important;
	}
	
	.dropdown-button-item p {
		font-size: 0.8rem !important;
	}
	
	.dropdown-button {
		font-size: 0.75rem !important;
		padding: 0.4rem 0.8rem !important;
	}
	
	/* Home button mobile */
	.home-button-container {
		padding: 1rem 0 2rem 0 !important;
	}
	
	.home-button {
		font-size: 0.85rem !important;
		padding: 0.5rem 1.2rem !important;
	}
	
	/* Contact info mobile */
	.contact-info {
		padding: 1.2rem !important;
	}
	
	.contact-info p {
		font-size: 0.9rem !important;
	}
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
	/* Ultra compact navigation */
	.minimal-navbar {
		padding: 0.8rem 0.3rem !important;
	}
	
	.logo {
		font-size: 1rem !important;
	}
	
	#global-search {
		width: 120px !important;
		font-size: 0.7rem !important;
		padding: 0.25rem 0.5rem 0.25rem 1.6rem !important;
	}
	
	.search-icon {
		width: 12px !important;
		height: 12px !important;
		left: 6px !important;
	}
	
	.minimal-nav {
		gap: 0.8rem !important;
	}
	
	.nav-icon {
		width: 16px !important;
		height: 16px !important;
	}
	
	.donate-button {
		padding: 0.25rem 0.6rem !important;
		font-size: 0.65rem !important;
	}
	
	/* Ultra compact hero */
	.hero-content h1 {
		font-size: 1.6rem !important;
	}
	
	.hero-content .bold {
		font-size: 2.2rem !important;
	}
	
	.hero-content h2 {
		font-size: 1.1rem !important;
	}
	
	.hero-content p {
		font-size: 0.75rem !important;
		margin-bottom: 1rem !important;
	}
	
	.minimal-btn {
		font-size: 0.85rem !important;
		padding: 0.4rem 1.2rem !important;
	}
	
	/* Ultra compact content */
	.landing-content h1 {
		font-size: 1.4rem !important;
	}
	
	.path-card {
		padding: 1rem 0.8rem !important;
	}
	
	.path-icon {
		font-size: 1.6rem !important;
	}
	
	.path-card h3 {
		font-size: 0.95rem !important;
	}
	
	.path-card p {
		font-size: 0.7rem !important;
	}
	
	/* Ultra compact tools */
	.tools-header h1 {
		font-size: 1.4rem !important;
	}
	
	.tool-section h2 {
		font-size: 1.2rem !important;
	}
	
	.section-description {
		font-size: 0.65rem !important;
	}
	
	/* Ultra compact tool cards - 3 tiles in 1 row */
	.tool-cards {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.2rem !important;
		margin: 0 !important;
	}
	
	.tool-item {
		padding: 0.4rem !important;
		min-height: 70px !important;
		border-radius: 4px !important;
	}
	
	.tool-item h3 {
		font-size: 0.65rem !important;
		margin-bottom: 0.2rem !important;
		line-height: 1.2 !important;
	}
	
	.tool-item p {
		font-size: 0.55rem !important;
		line-height: 1.2 !important;
		margin-bottom: 0.2rem !important;
	}
	
	.tool-logo {
		width: 12px !important;
		height: 12px !important;
	}
	
	/* General content adjustments */
	.section-content {
		padding: 1rem !important;
	}
	
	.section-content h2 {
		font-size: 1.3rem !important;
	}
	
	.section-content p {
		font-size: 0.75rem !important;
	}
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
	.tool-item:hover,
	.path-card:hover,
	.feature-item:hover {
		transform: none;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	}
	
	.tool-item:active,
	.path-card:active {
		transform: scale(0.98);
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	}
	
	.nav-icon:hover,
	.menu-icon:hover {
		transform: none;
	}
	
	.donate-button:hover,
	.minimal-btn:hover,
	.home-button:hover {
		transform: none;
	}
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
	.abstract-hero {
		min-height: 50vh;
	}
	
	.landing-hero {
		min-height: 50vh;
	}
	
	.hero-content h1 {
		font-size: 2.2rem;
	}
	
	.hero-content .bold {
		font-size: 3.2rem;
	}
	
	.minimal-navbar {
		padding: 1.5rem 1rem;
	}
}

/* Footer Styles */
.footer-section {
	background: #1a1a1a;
	color: #e0e0e0;
	padding: 3rem 0 1.5rem;
	margin-top: 0;
	width: 100%;
	position: relative;
	overflow: hidden;
}

@keyframes float {
	0%, 100% { transform: translateY(0px) translateX(0px); }
	33% { transform: translateY(-20px) translateX(10px); }
	66% { transform: translateY(10px) translateX(-5px); }
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 4vw;
	position: relative;
	z-index: 2;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #fff;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column ul li {
	margin-bottom: 0.5rem;
}

.footer-column ul li a {
	color: #b0b0b0;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: #fff;
}

.footer-bottom {
	padding-top: 1.5rem;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: #888;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
	.footer-section {
		padding: 2rem 1rem 1rem;
	}
	
	.footer-links {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.footer-bottom p {
		font-size: 0.8rem;
		line-height: 1.4;
	}
}

/* Modal Styles */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
	display: flex;
}

.modal-content {
	background: #fff;
	border-radius: 12px;
	max-width: 600px;
	max-height: 80vh;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: slideUp 0.3s ease;
	overflow: hidden;
}

.modal-header {
	padding: 1.5rem 2rem;
	background: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h2 {
	margin: 0;
	font-size: 1.4rem;
	color: #333;
}

.modal-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #666;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.modal-close:hover {
	background: #e9ecef;
	color: #333;
}

.modal-body {
	padding: 2rem;
	overflow-y: auto;
	max-height: 60vh;
	line-height: 1.6;
}

.modal-body h3 {
	color: #333;
	margin-top: 1.5rem;
	margin-bottom: 0.8rem;
}

.modal-body h3:first-child {
	margin-top: 0;
}

.modal-body p {
	margin-bottom: 1rem;
	color: #555;
}

.modal-body ul {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.modal-body li {
	margin-bottom: 0.5rem;
	color: #555;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { 
		opacity: 0;
		transform: translateY(50px) scale(0.95);
	}
	to { 
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Modal Mobile Styles */
@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		max-height: 85vh;
	}
	
	.modal-header {
		padding: 1rem 1.5rem;
	}
	
	.modal-header h2 {
		font-size: 1.2rem;
	}
	
	.modal-body {
		padding: 1.5rem;
		max-height: 65vh;
	}
}

/* Secret Button and Bubble Styles */
.secret-container {
	position: relative;
	display: inline-block;
	margin-top: 1rem;
}

.secret-button {
	background: #00000000;
	border: 1px solid #dddddd00;
	color: #686868;
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	font-size: 0.6rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
}

.secret-button:hover {
	background: #dddddd00;
	border-color: #dddddd00;
	color: #333;
	transform: translateY(-1px);
}

.secret-bubble {
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
	width: 320px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(-50%) translateY(10px) scale(0.9);
	z-index: 1000;
	overflow: hidden;
}

.secret-bubble::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-top-color: rgba(255, 255, 255, 0.95);
}

.secret-bubble.show {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0) scale(1);
}

.bubble-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 1rem 1.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 16px 16px 0 0;
	position: relative;
}

.bubble-header h4 {
	margin: 0;
	color: white;
	font-size: 1rem;
	font-weight: 600;
}

.bubble-close {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: all 0.2s ease;
}

.bubble-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.bubble-content {
	padding: 1.2rem;
}

.bubble-desc {
	margin: 0 0 1rem 0;
	font-size: 0.9rem;
	color: #000 !important;
	line-height: 1.5;
}

.github-preview {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 1rem;
	margin-top: 1rem;
}

.repo-info {
	margin-bottom: 0.8rem;
}

.repo-header {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.repo-icon {
	font-size: 1.2rem;
}

.repo-header div h5 {
	margin: 0;
	font-size: 0.95rem;
	color: #333;
	font-weight: 600;
}

.repo-header div p {
	margin: 0.2rem 0 0 0;
	font-size: 0.8rem;
	color: #666;
}

.repo-stats {
	display: flex;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.stat-item {
	font-size: 0.75rem;
	background: rgba(102, 126, 234, 0.1);
	color: #667eea;
	padding: 0.3rem 0.6rem;
	border-radius: 20px;
	font-weight: 500;
}

.view-source-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.3s ease;
	width: 80%;
	justify-content: center;
}

.view-source-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	text-decoration: none;
	color: white;
}
