/* For Firefox, you can set a thin scrollbar which may appear overlay-like */
html {
	scrollbar-width: thin;
	scrollbar-color: rgba(100, 100, 100, 0.6) transparent;
}

/* Base Styles */
:root {
	--primary-gradient: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
	--secondary-gradient: linear-gradient(135deg, rgb(255 255 255 / 30%) 0%, #000000 100%);
	--background-dark: #081a3a;
	--card-bg: whitesmoke;
	--card-text: #303030;
	--text-primary: rgba(255, 255, 255, 0.95);
	--text-secondary: rgba(255, 255, 255, 0.9);
	--glow-color: rgba(255, 255, 255, 0.5);
}

/* For older IE/Edge */
body {
	font-family: 'Tektur', sans-serif;
	-ms-overflow-style: none;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.request-row h3:first-child {
	padding-top: 0rem;
}

.request-row h3 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.request-row h3:last-child {
	padding-bottom: 0rem;
}

/* AI Models Section */
.ai-models {
	padding: 4rem 2rem;
	max-width: 1200px;
	padding-bottom: 0;
	margin: 0 auto;
}

.ai-models h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 2rem;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 20px var(--glow-color);
}

.ai-models p {
	font-size: 13pt;
	text-align: center;
}

.ai-models h3 {
	text-align: center;
	font-size: 1.8rem;
	margin-top: 2rem;
	padding-bottom: 1rem;
	display: block;
}

.model-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.model-card {
	background: var(--card-bg);
	color: var(--card-text);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.model-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 0, 0, 0.3);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.2),
		/* Subtle shadow */
		0 0 30px rgba(255, 255, 255, 0.3);
	/* White glow */
}

.model-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.model-card:hover::before {
	opacity: 1;
}

.model-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.model-card h3 {
	margin: 0.5rem 0;
	color: var(--card-text);
	position: relative;
	z-index: 1;
	font-size: 1.5rem;
}

.model-card h4 {
	font-size: 18pt;
	color: var(--card-text);
}

.model-card p {
	color: var(--card-text);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
	text-align: left;
}

.model-switch {
	background: var(--primary-gradient);
	color: #111111;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	text-decoration: none;
}

.model-switch:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px var(--glow-color);
	color: #111111;
	text-decoration: none;
}

@media (max-width: 768px) {
	.model-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.model-card {
		padding: 1.5rem;
	}

	.ai-models h2 {
		font-size: 2rem;
	}
}

.text-logo {
	font-size: 400;
	color: #ffffff;
	font-family: 'Times New Roman', Times, serif;
}

body {
	background-color: var(--background-dark);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
	background: var(--background-dark);
	background-attachment: fixed;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	background-size: auto;
}

/* Navigation */
.top-nav {
	background: #00000054;
	backdrop-filter: blur(10px);
	position: fixed;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo {
	font-size: 2rem;
	font-weight: bold;
	color: var(--text-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none !important;
	/* color: transparent; */
	/* background: white; */
	/* padding: 6px; */
	border-radius: 100%;
	border: 1px solid #ffffff;
}

.nav-logo:hover {
	color: white;
	/* background: var(--primary-gradient); */
	/* -webkit-background-clip: text; */
}

.nav-right {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.nav-link {
	font-weight: bold;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.nav-link:hover {
	color: var(--text-primary);
	text-shadow: 0 0 10px var(--glow-color);
}

.muted-auth {
	color: #b7bcc8 !important;
	pointer-events: none !important;
}

.muted-auth:hover {
	color: #e2e5eb !important;
	text-shadow: none;
}

.muted-auth.login-button {
	background: linear-gradient(135deg, #878d96, #5d646d);
	color: #ffffff !important;
}

.muted-auth.login-button:hover {
	background: linear-gradient(135deg, #959ba5, #686f79);
	box-shadow: 0 10px 24px rgba(61, 67, 76, 0.18);
}

.muted-auth-text,
.muted-auth-text a {
	color: #6f7680 !important;
}

.muted-auth-text a:hover {
	color: #555c66 !important;
	text-shadow: none;
}

.nav-button {
	background: var(--primary-gradient);
	color: black;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-decoration: none;
}

.nav-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px var(--glow-color);
	color: black;
}

/* Dropdown Menu */
.dropdown-trigger {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.dropdown-trigger i {
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}



.dropdown-menu {
	position: absolute;
	top: 100%;
	border: 1px solid rgba(48, 48, 48, 0.1);
	border-radius: 10px;
	padding: 0.5rem;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	background: #000000e0;
	backdrop-filter: blur(10px);
	margin-top: 0.5rem;
}

@media (hover: hover) {

	.dropdown-trigger:hover+.dropdown-menu,
	.dropdown-menu:hover {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.dropdown-trigger:hover i {
		transform: rotate(180deg);
	}
}

.dropdown-trigger.active+.dropdown-menu {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
}

.dropdown-trigger.active i {
	transform: rotate(180deg) !important;
}

.dropdown-menu a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 5px;
	text-decoration: none !important;
	font-weight: 700;
}

.dropdown-menu a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-primary);
}

.diagonal-banner {
	position: absolute;
	top: 4.6rem;
	right: 0.5rem;
	z-index: 10;
	background: linear-gradient(90deg, #f5f5f5 80%, #ffffff 100%);
	/* White gradient */
	color: #111;
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 0.7rem 1.8rem;
	border-radius: 8px;
	box-shadow: 0 4px 16px 0 rgba(255, 255, 255, 0.18);
	/* White shadow */
	opacity: 0.95;
	transform: rotate(25deg);
	text-shadow: 0 2px 8px #0008;
	pointer-events: none;
	user-select: none;
}

.hero {
	position: relative;
}

/* Main Content */
main {
	flex: 1;
	padding-top: 5rem;
}

/* Hero Section */
.hero {
	text-align: center;
	padding: 5rem 1rem 1rem 1rem;
	max-width: 1100px;
	margin: 0 auto;
}

.hero-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5rem;
	/* Space between logo and H1 */
	width: 80px;
	height: 80px;
	filter: drop-shadow(0 0 1px rgba(255, 255, 255, 1))
		/* White drop shadow */
}

.hero-logo-small {
	display: inline-block;
	width: 46px;
	height: 44px;
}

.hero h1 {
	font-size: 3rem;
	/* Reduced from 3.5rem */
	margin-bottom: 1.5rem;
	/* Adjusted margin */
	line-height: 1.2;
	/* Ensure good line height if it wraps */
	text-shadow: 0 0 15px var(--glow-color);
}

.gradient-text {
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: white;
	margin-bottom: 2rem;
	font-weight: 400;
}

.platform-notice {
	max-width: 980px;
	margin: 2.25rem auto 2.75rem;
	padding: 1.5rem 1.75rem;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(255, 146, 43, 0.16), rgba(255, 94, 0, 0.08));
	border: 1px solid rgba(255, 153, 51, 0.28);
	text-align: center;
}

.platform-notice-main {
	margin: 0;
	font-size: 1.28rem;
	line-height: 1.7;
	font-weight: 700;
	color: #ffcc8a;
}

.platform-notice-investor {
	margin: 1rem 0 0;
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 235, 214, 0.9);
}

.pricing-note-status {
	margin: 1rem auto 0;
	max-width: 520px;
	text-align: center;
	font-size: 0.98rem;
	font-weight: 700;
	color: #ffcf94;
}

.home-hero-section {
	position: relative;
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding: 8.5rem 0 6rem;
	background:
		linear-gradient(180deg, rgba(5, 16, 38, 0.42) 0%, rgba(5, 16, 38, 0.7) 52%, rgba(5, 16, 38, 0.88) 100%),
		url('/web/ceres-bg-desktop.jpg') center 18% / cover no-repeat fixed;
	overflow: hidden;
	min-height: 430px;
}

.home-hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(255, 200, 120, 0.08), transparent 52%);
	pointer-events: none;
}

.home-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.home-hero-section h1 {
	margin-bottom: 0.55rem;
	font-size: 3.25rem;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

.home-hero-section h3 {
	margin: 0 0 0.45rem;
	font-size: 1.52rem;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

.home-budget-note {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ff9b3d;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0.1rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.home-product-stack {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin: 0.1rem 0 3rem;
}

.home-product-panel {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 2rem 2.4rem 2.6rem;
}

.home-product-panel-head {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1.2rem;
}

.home-product-panel-title h2 {
	margin: 0 0 0.15rem;
	text-align: left;
}

.home-product-kicker {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 700;
	color: #ffbf73;
}

.home-product-icon {
	width: 72px;
	height: 72px;
	object-fit: contain;
	flex: 0 0 auto;
}

.home-product-body p {
	font-size: 1.08rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 0 1.35rem;
	text-align: left;
}

.home-product-actions {
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1.35rem;
}

.home-product-browser-block {
	margin-top: 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-closing-section {
	padding-top: 1.1rem;
	padding-bottom: 1.1rem;
}

.home-closing-panel {
	padding: 1.2rem 0 1.2rem;
	text-align: center;
}

.home-closing-panel h2 {
	margin: 0 0 0.9rem;
	font-size: 3rem;
	line-height: 1.1;
	letter-spacing: 0.02em;
	font-weight: 700;
	text-transform: uppercase;
}

.home-closing-panel p {
	max-width: 900px;
	margin: 0 auto;
	font-size: 1.18rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.9);
}

.home-closing-actions {
	margin-top: 1.5rem;
	display: flex;
	justify-content: center;
}

.home-models-section {
	padding-top: 1rem;
	padding-bottom: 2.2rem;
}

.home-models-section > h2 {
	margin-bottom: 0.9rem;
}

.home-models-subtitle {
	text-align: center;
	max-width: 860px;
	margin: 0 auto 1.9rem;
	font-size: 1.08rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.home-models-marquee {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.home-models-track {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: max-content;
	animation: home-models-scroll 34s linear infinite;
}

.home-model-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.9rem 1.15rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	white-space: nowrap;
}

.home-model-pill img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	flex: 0 0 auto;
}

.home-model-pill span {
	font-size: 1rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.94);
}

.home-platforms-section {
	padding-top: 2.2rem;
	padding-bottom: 2.2rem;
}

.home-platforms-section > h2 {
	margin-bottom: 0.9rem;
}

.home-platforms-section > .home-models-subtitle {
	margin: 0 auto 1.9rem;
}

.home-platforms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
	margin-top: 0;
}

.home-platform-chip {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.95rem 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-platform-chip i {
	font-size: 1.25rem;
	width: 24px;
	text-align: center;
	color: rgba(255, 255, 255, 0.92);
}

.home-platform-chip img {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	flex: 0 0 auto;
}

.home-platform-chip span {
	font-size: 0.98rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.94);
}

.home-platform-chip-muted {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.08);
	opacity: 0.62;
	filter: grayscale(1);
}

.jb-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.72rem !important;
	font-weight: 800 !important;
	flex: 0 0 auto;
}

@keyframes home-models-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.pricing-cta.secondary {
	background: linear-gradient(135deg, #d96a12 0%, #b84c00 100%);
	color: #ffffff;
	border: 1px solid rgba(255, 157, 56, 0.38);
	box-shadow: 0 10px 24px rgba(184, 76, 0, 0.24);
}

.pricing-cta.secondary:hover {
	background: linear-gradient(135deg, #e1771b 0%, #c85706 100%);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(200, 87, 6, 0.3);
}

@media (max-width: 992px) {
	.home-product-panel-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.cta-button {
	background: var(--secondary-gradient);
	color: white;
	padding: 1rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.secondary-button {
	background: transparent;
	color: white;
	padding: 1rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.cta-button:hover,
.secondary-button:hover {
	box-shadow: 0 0 15px var(--glow-color), 0 0 30px var(--glow-color), 0 0 45px var(--glow-color);
	transform: scale(1.05);
	transition: all 0.3s ease-in-out;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	text-decoration: none;
}

/* Features Grid */
.features {
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 2rem;
	padding: 0rem 0;
	margin: auto;
	max-width: 1100px;
}

.tech-icons {
	width: 90px;
	height: 90px;
	display: inline-block;
}

.feature-card {
	background: var(--card-bg);
	color: var(--card-text);
	border-radius: 24px;
	padding: 2.0rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	position: relative;
	margin-bottom: 1.5rem;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgb(64 231 96 / 10%) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-card:hover::before {
	opacity: 1;
}

.card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.5rem 1.5rem;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	border-radius: 16px;
	color: white;
	text-decoration: none;
	font-weight: 300;
	margin-right: 1.5rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	font-size: 13pt;
	margin: 6px 0;
	text-decoration: none;
	color: white;
}

.card-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(245, 245, 245, 0.2));
	/* White gradient */
	opacity: 0;
	transition: opacity 0.4s ease;
}

.card-link:hover::before {
	opacity: 1;
}

.card-link:hover {
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
		0 0 30px var(--glow-color);
	/* White shadow to white glow */
	border-color: var(--glow-color);
	/* White border to white glow */
	color: white;
}

.card-link.download {
	background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
	color: #111;
}

.card-link.download::before {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(245, 245, 245, 0.2));
}

.card-link.download:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(255, 255, 255, 0.4);
	border-color: rgba(255, 255, 255, 0.4);
}

.tech-icons {
	margin-top: 1rem;
	display: flex;
	gap: 0rem 2rem;
	margin-bottom: 0;
}

.tech-icons img {
	width: 47px;
	height: 47px;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.tech-icons img:hover {
	opacity: 1;
	transform: scale(1.2) rotate(8deg);
	filter: drop-shadow(0 0 10px rgba(110, 145, 251, 0.6));
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #16cc39;
	position: relative;
	z-index: 1;
}

.feature-card p {
	color: var(--card-text);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
	line-height: 1.6;
	margin-bottom: 13px;
	font-size: 14pt;
}

.feature-card li {
	color: var(--card-text);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
	line-height: 1.6;
	margin-bottom: 13px;
	font-size: 14pt;
	margin-left: 40px;
}

/* Image Editing Tools Grid */
.editing-tools-showcase {
	margin: 2rem 0;
}

.tool-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	margin: 2rem 0;
}

/* Mobile responsive - stack tools vertically */
@media (max-width: 768px) {
	.tool-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

.tool-item {
	background: var(--card-bg);
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Mobile responsive - adjust tool item */
@media (max-width: 768px) {
	.tool-item {
		min-height: 150px;
		padding: 1rem;
	}
}

.tool-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(64, 231, 96, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tool-item:hover::before {
	opacity: 1;
}

.tool-item:hover {
	transform: translateY(-5px);
	border-color: rgba(64, 231, 96, 0.4);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(64, 231, 96, 0.2);
}

.tool-item h4 {
	color: var(--card-text);
	font-size: 1.1rem;
	margin: 1rem 0 0.5rem;
	position: relative;
	z-index: 1;
}

.tool-item p {
	color: var(--card-text);
	font-size: 0.9rem;
	line-height: 1.4;
	margin: 0;
	position: relative;
	z-index: 1;
}

/* Models Grid within Feature Card */
.models-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
	margin: 1rem 0;
}

.model-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.model-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(64, 231, 96, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.model-item:hover::before {
	opacity: 1;
}

.model-item:hover {
	transform: translateY(-3px);
	border-color: rgba(64, 231, 96, 0.3);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 15px rgba(64, 231, 96, 0.1);
}

.model-item-logo {
	width: 40px !important;
	height: 40px !important;
	border-radius: 8px;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

.model-item-name {
	color: black;
	/* White color */
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
	position: relative;
	z-index: 1;
	line-height: 1.2;
}

/* Mobile responsive for models grid */
@media (max-width: 768px) {
	.models-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.75rem;
	}

	.model-item {
		padding: 0.75rem;
	}

	.model-item-logo {
		width: 32px !important;
		height: 32px !important;
	}

	.model-item-name {
		font-size: 0.7rem;
	}
}

/* Footer */
footer {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 4rem 2rem 2rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.footer-section {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-section h4 {
	color: var(--text-primary);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 13pt;
}

.footer-section a:hover {
	color: var(--text-primary);
	transform: translateX(5px);
}

/* Disabled footer links */
.footer-link-disabled {
	color: #888 !important;
	pointer-events: none;
	opacity: 0.6;
	text-decoration: line-through;
	cursor: not-allowed;
}

.footer-logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.footer-tagline {
	color: var(--text-secondary);
	font-size: 1rem;
}

.footer-product-item small {
	color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
	max-width: 1200px;
	margin: 2rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	color: var(--text-secondary);
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.social-links a:hover {
	color: var(--text-primary);
	transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.footer-content {
		grid-template-columns: 1fr;
	}
}

/* Engine Platforms Section */
#engine-platforms {
	padding: 4rem 2rem;
	padding-bottom: 0;
	max-width: 1200px;
	margin: 0 auto;
}

#engine-platforms h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 2rem;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 20px var(--glow-color);
}

.platform {
	background: var(--card-bg);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.platform:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 0, 0, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
		0 0 30px rgba(64, 231, 96, 0.3);
}

.platform h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--card-text);
	text-align: center;
}

.platform p {
	color: var(--card-text);
	font-size: 1.1rem;
	line-height: 1.6;
	text-align: center;
}

@media (max-width: 768px) {
	#engine-platforms {
		padding: 2rem 1rem;
	}

	.platform {
		padding: 1.5rem;
	}

	#engine-platforms h2 {
		font-size: 2rem;
	}

	.platform h3 {
		font-size: 1.5rem;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.top-nav {
		display: block;
		position: relative;
	}

	main {
		padding-top: 0;
	}

	.hero {
		padding-top: 1rem;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.nav-content {
		flex-direction: column;
		gap: 1rem;
	}

	.nav-right {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* Apps */
/* App Integration Section */
.app-integration {
	padding: 0rem 2rem 0rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: 2rem;
}

.app-integration h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.app-integration>p {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	font-size: 1.2rem;
}

.app-category {
	background: transparent;
	border-radius: 20px;
	padding: 1rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.app-category:hover {
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
	/* White shadow */
}

.app-category h3 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: #ffffff;
	text-align: center;
}

.app-category p {
	color: white;
	margin-bottom: 1.5rem;
	text-align: center;
	font-size: 15pt;
}

.app-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1.5rem;
}

.app-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: white;
	padding: 1rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	text-align: center;
}

.app-link img {
	width: 62px;
	height: 62px;
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}

.app-link:hover img {
	transform: scale(1.1);
}

.app-link span {
	font-size: 0.9rem;
}

.app-link.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.pricing-card.disabled {
	filter: grayscale(100%);
	opacity: 0.58;
	cursor: not-allowed;
}

.pricing-card.disabled * {
	pointer-events: none !important;
	cursor: not-allowed !important;
}

.pricing-card.disabled:hover {
	transform: none;
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: none;
}

.integration-benefits {
	margin-top: 3rem;
	/* text-align: center; */
	padding: 2rem;
	background: var(--card-bg);
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin: auto;
	padding: 3rem 2rem;
	margin-top: 2rem;
	max-width: 1100px;
}

.integration-benefits h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--card-text);
}

.integration-benefits ul {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
	font-size: 15pt;
}

.integration-benefits p {
	font-size: 15pt;
	color: var(--card-text);
}

.integration-benefits li {
	color: var(--card-text);
	margin: 0.8rem 0;
	padding-left: 1.5rem;
	position: relative;
	/* padding: 3rem 2rem; */
	/* max-width: 1200px; */
	/* margin: auto; */
}

.integration-benefits li:before {
	content: "→";
	position: absolute;
	left: 0;
	color: #ffffff;
	/* White */
}

@media (max-width: 768px) {
	.app-integration h2 {
		font-size: 2rem;
	}

	.app-grid {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	}

	.app-category {
		padding: 1.5rem;
	}
}

.section-title {
	font-size: 3rem;
	text-align: center;
	margin: 3rem 0;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	position: relative;
	text-shadow: 0 0 20px var(--glow-color);
	font-weight: 700;
	letter-spacing: -0.5px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--primary-gradient);
	border-radius: 2px;
	box-shadow: 0 0 15px var(--glow-color);
}

@media (max-width: 768px) {
	.section-title {
		font-size: 2.2rem;
		margin: 2rem 0;
	}
}

.features-intro {
	display: flex;
	justify-content: center;
	gap: 4rem;
	padding: 3rem 2rem;
	max-width: 1200px;
	padding-bottom: 0;
	margin: 0 auto;
}

.feature-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	color: var(--card-text);
	font-weight: 500;
	align-items: center;
	text-align: center;
	padding: 1rem;
	background: var(--card-bg);
	border-radius: 24px;
	border: 3px solid rgba(255, 255, 255, 0.4);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-column:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.2),
		0 0 30px var(--glow-color);
}

.feature-column img {
	width: 100px;
	height: 100px;
	margin-bottom: 1.5rem;
	filter: drop-shadow(0 0 15px var(--glow-color));
	transition: transform 0.4s ease;
}

.feature-column img.small {
	width: 50px;
	height: 50px;
	margin-bottom: 0.5rem;
	margin-left: -2.5rem;
	filter: drop-shadow(0 0 8px #ffffff) drop-shadow(0 0 15px var(--glow-color));
	transition: transform 0.4s ease;
}

.feature-column:hover img {
	transform: scale(1.1) rotate(5deg);
}

.feature-column h3 {
	font-size: 1.4rem;
	color: var(--card-text) !important;
	margin-top: 1rem;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 600;
}

@media (max-width: 768px) {
	.features-intro {
		flex-direction: column;
		gap: 2rem;
	}

	.feature-column {
		padding: 1.5rem;
	}

	.feature-column img {
		width: 100px;
		height: 100px;
	}

	.feature-column h3 {
		font-size: 1.5rem;
	}
}

/* Pricing Section */
.pricing {
	padding: 4rem 2rem;
	padding-bottom: 0;
	max-width: 1300px;
	margin: 0 auto;
}

.pricing.second {
	padding-top: 0;
}

.pricing h1,
.pricing h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 1rem;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 20px var(--glow-color);
}

.pricing h2 {
	font-size: 2.0rem;
}

.pricing h3 {
	text-align: center;
	font-size: 1.4rem;
}

.pricing>p {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	font-size: 1rem;
}

.home-hero-section > h1 {
	margin-bottom: 0.55rem;
}

.home-hero-section > h3 {
	margin: 0 0 0.45rem;
}

.home-hero-section > .home-budget-note {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ff9b3d;
	margin-top: 0;
	margin-bottom: 0.1rem;
}

.home-products-section .home-product-stack {
	margin: 0.1rem 0 1.8rem;
}

.home-products-section .home-product-panel {
	padding: 1.35rem 2rem 2rem;
}

.home-products-section .home-product-panel-title h2 {
	margin: 0 0 0.15rem;
	text-align: left;
}

.home-products-section {
	padding-top: 2.2rem;
}

.home-agents-section {
	padding-top: 2.2rem;
	padding-bottom: 2.2rem;
}

.home-agents-panel {
	text-align: center;
	max-width: 1050px;
	margin: 0 auto;
	padding: 3rem 1rem;
}

.home-agents-panel h2 {
	margin: 0 0 0.75rem;
	font-size: 2.7rem;
	line-height: 1.12;
	letter-spacing: 0.02em;
}

.home-agents-panel p {
	margin: 0 auto 0.8rem;
	max-width: 900px;
	font-size: 1.14rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

.home-agents-panel p:last-child {
	margin-bottom: 0;
}

.home-agents-cta {
	font-size: 1.28rem !important;
	font-weight: 700;
	color: #ffb562 !important;
	margin-top: 0.75rem !important;
}

@media (max-width: 768px) {
	.home-hero-section {
		padding: 7.2rem 0 4.6rem;
		background-position: center 12%;
		background-attachment: scroll;
		min-height: 360px;
	}

	.home-hero-section h1 {
		font-size: 2.45rem;
	}

	.home-hero-section h3 {
		font-size: 1.24rem;
	}

	.home-budget-note {
		font-size: 1.08rem;
	}

	.home-hero-inner {
		padding: 0 1.1rem;
	}
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	margin: 2rem 0;
}

@media (max-width: 1400px) {
	.pricing-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}
}

.pricing-card {
	background: var(--card-bg);
	color: var(--card-text);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	vertical-align: top;
}

.pricing-card.featured {
	border-color: rgba(64, 231, 96, 0.3);
	box-shadow: 0 0 30px rgba(64, 231, 96, 0.3);
	/* Bright green shadow */
}

.pricing-card:hover {
	transform: translateY(-5px);
	border-color: rgba(64, 231, 96, 0.4);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.2),
		0 0 30px rgba(64, 231, 96, 0.3);
}

.popular-badge {
	position: absolute;
	top: 2.5rem;
	right: -4.2rem;
	background: var(--primary-gradient);
	background: #4285f4;
	padding: 0.5rem 3rem;
	transform: rotate(45deg);
	font-size: 13PT;
	font-weight: bold;
	color: white;
	letter-spacing: 3px;
}

.pricing-header {
	text-align: center;
	margin-bottom: 2rem;
	/* padding-bottom: 2rem; */
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.plan-emoji {
	font-size: 3.5rem;
	margin-bottom: 0.5rem;
	display: block;
}

.duration-info {
	font-size: 0.9rem;
	color: #666;
	margin-top: 0.5rem;
	font-weight: 600;
}


.pricing-header h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--card-text);
}

.price {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--card-text);
	margin-bottom: 0.5rem;
}

.billing-cycle {
	color: var(--card-text);
	font-size: 0.9rem;
}

.pricing-header .per {
	font-size: 1rem;
	color: var(--card-text);
}

.pricing-header .per-2 {
	font-size: 1rem;
	color: var(--card-text);
}

.pricing-header .refund-policy {
	font-size: 1rem;
	color: black;
	font-weight: bold;
	margin-top: 12px;
	background: rgba(255, 255, 255, 0.9);
	padding: 6px;
	border-radius: 12px;
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features h4 {
	margin-bottom: 24px;
	margin-top: 0;
	font-size: 13pt;
	color: var(--card-text);
}

.pricing-features li {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: var(--card-text);
}

.feature-icon {
	margin-right: 1rem;
	font-size: 1.2rem;
}

.feature-text {
	font-size: 0.95rem;
}

.feature-text>strong {
	color: crimson;
}

.model-icon {
	margin-right: 8px;
	vertical-align: middle;
}

.pricing-cta {
	display: block;
	text-align: center;
	padding: 1rem;
	font-size: 13pt;
	background: linear-gradient(135deg, #aabad5, #3367d6);
	color: white;
	text-decoration: none;
	border-radius: 10px;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.download-with-icons {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
}

.download-icons {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.download-icons img {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	object-fit: contain;
}

.download-icons i {
	font-size: 1rem;
	line-height: 1;
}

.download-platform-label {
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1;
}

.pricing-cta:hover {
	transform: translateY(-2px);
	color: white;
}

@media (max-width: 768px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		padding: 0 1rem;
		gap: 1.5rem;
	}

	.pricing {
		padding: 2rem 1rem;
	}

	.pricing h2 {
		font-size: 2rem;
	}
}

/* Tablet view - 4 cards per row for tablets */
@media (min-width: 769px) and (max-width: 1024px) {

	.pricing-card {
		padding: 1.5rem;
	}

	.pricing-header h2 {
		font-size: 2rem;
	}

	.pricing-header h3 {
		font-size: 1.5rem;
	}

	.price {
		font-size: 2rem;
	}

	.pricing-features li {
		font-size: 0.85rem;
	}

	.feature-text {
		font-size: 0.8rem;
	}
}

/* Desktop - 4 cards per row */
@media (min-width: 1025px) {
	.pricing-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
	}
}

.requests-remaining-table table {
	width: 100%;
	border-collapse: collapse;
}

.requests-remaining-table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.3s ease;
}

.requests-remaining-table tr:last-child {
	border-bottom: none;
}

.requests-remaining-table td {
	text-align: left;
	font-weight: 500;
	font-size: 1.3rem;
	padding: 1.5rem;
	width: 50%;
}

.requests-remaining-table td.user-data {
	width: 50%;
}

/* Request Type Icons */
.request-icon {
	font-size: 1.5rem;
	margin-right: 0.8rem;
}

/* Status Colors */
.red {
	color: #ff4d4d !important;
	font-weight: 600;
}

.yellow {
	color: #ffd700 !important;
	font-weight: 600;
}

.green {
	color: #40e760 !important;
	font-weight: 600;
}

.lightblue {
	color: #40e760 !important;
	/* Bright green */
	font-weight: 600;
}

/* Request Counts */
.request-count {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.2rem;
	font-size: 1.4rem;
}

.request-count strong {
	font-size: 1.4rem;
}

/* Learn More Link */
.learn-more {
	color: #fff;
	font-size: 1rem;
	display: block;
	margin-top: 0.5rem;
	transition: opacity 0.3s ease;
	text-decoration: none;
}

.learn-more:hover {
	opacity: 0.8;
}

.learn-more i {
	font-size: 0.9rem;
	margin-left: 0.3rem;
}

/* Request Type Links */
.requests-remaining-table a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.requests-remaining-table a:hover {
	opacity: 0.8;
}

a {
	color: royalblue;
}

/* Button Styling */
.purchase-more-btn {
	background: linear-gradient(135deg, #40e760, rgba(40, 167, 69, 0.6));
	/* Bright green gradient */
	color: white;
	padding: 0.8rem 1.5rem;
	border-radius: 12px;
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: none;
	cursor: pointer;
	margin-top: 0.5rem;
	box-shadow: 0 4px 15px var(--glow-color);
	/* Green glow */
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	margin-right: 1rem;
}

.purchase-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
	color: white;
}

.purchase-more-btn:active {
	transform: translateY(1px);
	box-shadow: 0 2px 10px rgba(255, 69, 0, 0.2);
}

.purchase-more-btn::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	animation: shine 3s infinite;
}

/* Instant Requests Form Styling */
.instant-requests-form {
	background: var(--card-bg);
	border-radius: 20px;
	padding: 2rem;
	margin: 2rem 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.instant-requests-form h3 {
	color: var(--card-text);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	text-align: center;
	/* color: black; */
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: black;
}

.form-description {
	text-align: center;
	color: var(--card-text);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.request-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.option-button {
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	padding: 1.5rem 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.option-button:hover {
	transform: translateY(-3px);
	border-color: rgba(64, 231, 96, 0.4);
	box-shadow: 0 6px 20px rgba(64, 231, 96, 0.2);
}

.option-button.selected {
	border-color: rgba(64, 231, 96, 0.6);
	background: linear-gradient(135deg, rgba(64, 231, 96, 0.1), rgba(40, 167, 69, 0.1));
	box-shadow: 0 4px 15px rgba(64, 231, 96, 0.3);
}

.option-amount {
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--card-text);
	margin-bottom: 0.5rem;
}

.option-price {
	font-size: 1.3rem;
	font-weight: bold;
	color: #28a745;
}

.custom-input-container {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	border: 2px solid rgba(0, 0, 0, 0.1);
}

.custom-input-container input {
	flex: 1;
	padding: 0.8rem;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	font-size: 1rem;
	font-family: 'Tektur', sans-serif;
}

.custom-input-container input:focus {
	outline: none;
	border-color: #28a745;
	box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.custom-price-display {
	font-size: 1.2rem;
	font-weight: bold;
	color: #28a745;
	min-width: 80px;
	text-align: right;
}

.purchase-summary {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
	color: black;
}

.summary-line:last-child {
	margin-bottom: 0;
}

.summary-line.total {
	border-top: 2px solid rgba(0, 0, 0, 0.1);
	padding-top: 0.8rem;
	font-size: 1.3rem;
	font-weight: bold;
	color: #28a745;
}

.stripe-pay-btn {
	width: 100%;
	background: linear-gradient(135deg, #635bff, #4c44d4);
	color: white;
	border: none;
	padding: 1.2rem 2rem;
	border-radius: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
	font-family: 'Tektur', sans-serif;
	box-shadow: 0 4px 15px rgba(99, 91, 255, 0.3);
}

.stripe-pay-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(99, 91, 255, 0.4);
}

.stripe-pay-btn:active {
	transform: translateY(0);
}

.stripe-pay-btn:disabled,
.stripe-pay-btn.disabled {
	background: linear-gradient(135deg, #ccc, #aaa);
	cursor: not-allowed;
	opacity: 0.6;
	transform: none;
	box-shadow: none;
}

.stripe-pay-btn:disabled:hover,
.stripe-pay-btn.disabled:hover {
	transform: none;
	box-shadow: none;
}

.stripe-logo {
	height: 20px;
	filter: brightness(0) invert(1);
}

.learn-more-link {
	display: block;
	text-align: center;
	color: #3253af;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.learn-more-link:hover {
	color: #28a745;
	text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.instant-requests-form {
		padding: 1.5rem;
		margin: 1rem 0;
	}

	.request-options {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.8rem;
	}

	.option-button {
		padding: 1rem 0.5rem;
	}

	.option-amount {
		font-size: 1rem;
	}

	.option-price {
		font-size: 1.1rem;
	}

	.custom-input-container {
		flex-direction: column;
		gap: 0.8rem;
		align-items: stretch;
	}

	.custom-price-display {
		text-align: center;
	}

	.stripe-pay-btn {
		padding: 1rem;
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.request-options {
		grid-template-columns: 1fr;
	}
}

@keyframes shine {
	0% {
		left: -50%;
	}

	100% {
		left: 100%;
	}
}

/* Requests Design */
.requests-remaining-table td small {
	font-weight: 100;
	font-size: 0.9rem;
	margin: 6px;
	display: inline-block;
}

.form-note {
	color: black;
	text-align: center;
}

/* Small Screen Adjustments */
@media screen and (max-width: 320px) {

	.requests-remaining-table th,
	.requests-remaining-table td {
		padding: 0.8rem;
	}

	.request-count {
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* Data Privacy Section */
.data-privacy {
	padding: 4rem 2rem;
	background: rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 4rem;
}

.privacy-content {
	max-width: 1200px;
	margin: 0 auto;
}

.privacy-content h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 2rem;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 20px var(--glow-color);
}

.privacy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.privacy-item {
	background: var(--card-bg);
	color: var(--card-text);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.privacy-item:hover {
	transform: translateY(-5px);
	border-color: rgba(64, 231, 96, 0.4);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.2),
		0 0 30px rgba(64, 231, 96, 0.3);
}

.privacy-item i {
	font-size: 2.5rem;
	color: #40e760;
	margin-bottom: 1rem;
	display: block;
	filter: drop-shadow(0 0 10px rgba(64, 231, 96, 0.5));
}

.privacy-item h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--card-text);
}

.privacy-item p {
	color: var(--card-text);
	font-size: 1.1rem;
	line-height: 1.6;
}

.privacy-pledge {
	text-align: center;
	font-size: 1.3rem;
	color: var(--text-primary);
	margin-top: 2rem;
	padding: 1rem;
	border-radius: 10px;
	background: rgba(64, 231, 96, 0.1);
}

@media (max-width: 768px) {
	.privacy-grid {
		grid-template-columns: 1fr;
	}

	.privacy-content h2 {
		font-size: 2rem;
	}

	.privacy-pledge {
		font-size: 1.1rem;
	}
}

/* Scrolling margin */
#features,
#ai-chat,
#internet-access,
#image-editor,
#video-editor,
#code-editor,
#vision,
#keyboard,
#pdf,
#cloud-integration,
#models {
	scroll-margin-top: 140px;
}

/* Image Showcase Styles */
.image-showcase {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin: 2rem 0;
	flex-wrap: nowrap;
}

.image-item {
	flex: 0 0 auto;
	max-width: 303px;
}

.image-item img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	/* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
	/* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.image-item img:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.model-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.75rem;
	padding: 0.5rem;
}

.model-logo {
	width: 24px !important;
	height: 24px !important;
	border-radius: 4px;
	flex-shrink: 0;
}

.model-name {
	color: #007f00;
	/* Lime green color */
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
}

.arrow-right {
	color: #40e760;
	font-size: 1.5rem;
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.7;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.image-showcase {
		flex-direction: column;
		gap: 1rem;
	}

	.arrow-right {
		transform: rotate(90deg);
		font-size: 1.2rem;
	}

	.image-item {
		max-width: 100%;
		width: 100%;
	}

	.model-info {
		gap: 0.4rem;
		margin-top: 0.5rem;
	}

	.model-logo {
		width: 20px !important;
		height: 20px !important;
	}

	.model-name {
		font-size: 0.8rem;
	}
}

/* App Suite Promo Section */
.suite-promo {
	text-align: center;
	padding: 40px 20px;
	margin: 30px auto;
	padding-bottom: 0;
	margin-bottom: 0;
	max-width: 1200px;
	padding-top: 0;
}

.suite-promo h2 {
	font-size: 2.2em;
	color: #2c3e50;
	margin-bottom: 15px;
}

.suite-promo>p {
	font-size: 1.1em;
	color: white;
	max-width: 800px;
	margin: 0 auto 30px auto;
}

.apps-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.app-item {
	border-radius: 10px;
	padding: 20px;
	width: 335px;
	transition: transform 0.2s ease-in-out;
	align-self: flex-start;
}

.app-item:hover {
	transform: translateY(-5px);
}

.app-item img {
	width: 64px;
	height: 64px;
	margin-bottom: 15px;
	padding: 0;
	border-radius: 0;
	background: transparent;
}

.app-item h3 {
	font-size: 1.3em;
	color: #1e1e1e;
	margin-bottom: 10px;
	background: #ffffffc5;
	border-radius: 6px;
}

.app-item p {
	font-size: 1.08em;
	color: whitesmoke;
	text-align: center;
	margin-bottom: 0;
}

.app-item a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
}

.app-card-static {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	text-align: center;
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.hero-logo-small-2 {
	display: inline-block;
	width: 42px;
	height: 42px;
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1));
}

@keyframes container-glow {
	0% {
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.1),
			0 0 50px rgba(182, 229, 168, 0.2),
			0 0 80px rgba(126, 217, 87, 0.1);
	}

	50% {
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.1),
			0 0 70px rgba(182, 229, 168, 0.4),
			0 0 100px rgba(126, 217, 87, 0.2);
	}

	100% {
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.1),
			0 0 50px rgba(182, 229, 168, 0.2),
			0 0 80px rgba(126, 217, 87, 0.1);
	}
}

.login-container {
	position: relative;
	z-index: 2;
	background: whitesmoke;
	padding: 32px;
	border-radius: 20px;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1),
		0 0 40px rgba(255, 255, 255, 0.15),
		0 0 60px rgba(255, 255, 255, 0.1);
	width: 100%;
	max-width: 500px;
	text-align: center;
	transition: box-shadow 0.3s ease-in-out;
}

.login-container:hover {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1), 0 0 70px rgba(255, 255, 255, 0.4), 0 0 100px rgba(255, 255, 255, 0.2);
}

.login-header {
	margin-bottom: 30px;
	text-align: left;
}

.login-header h1 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 10px;
}

.login-header p {
	font-size: 18px;
	margin-top: 12px;
	color: #111111;
}

.input-group {
	margin-bottom: 20px;
	position: relative;
}

.input-group input {
	width: 100%;
	padding: 15px;
	border: none;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	color: #111111;
	font-size: 16px;
	transition: all 0.3s ease;
}

.input-group input:focus {
	outline: none;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
	background: rgba(0, 0, 0, 0.15);
}

.input-group input::placeholder {
	color: rgba(17, 17, 17, 0.6);
}

.login-button {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(135deg, #8b9098, #5d646f);
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.login-button:hover {
	opacity: 1;
	background: linear-gradient(135deg, #989ea7, #696f79);
}

@keyframes glow {
	0% {
		box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
	}

	100% {
		box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
	}
}

.register-link {
	margin-top: 20px;
	color: rgba(17, 17, 17, 0.8);
}

.register-link a {
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

.register-link a:hover {
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.error-message {
	background: rgba(255, 0, 0, 0.1);
	border: 1px solid rgba(255, 0, 0, 0.2);
	color: #d32f2f;
	padding: 10px;
	border-radius: 10px;
	margin-bottom: 20px;
	backdrop-filter: blur(5px);
}

.features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
	color: rgba(17, 17, 17, 0.95);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.features-list span {
	background: rgba(0, 0, 0, 0.15);
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 13px;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(0, 0, 0, 0.2);
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.features-list span a {
	color: #111111;
	text-decoration: none;
}

.login-container h2 {
	color: rgba(17, 17, 17, 0.95);
	text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
	margin-bottom: 30px;
}

.login-container p {
	color: rgba(17, 17, 17, 0.95);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
	line-height: 1.6;
	margin-top: 12px;
}

.logo-link {
	text-decoration: none;
	color: #111111;
}

.logo-link:hover {
	color: inherit;
}

.logo-link h1,
.logo-link h2 {
	margin: inherit;
	color: #111111;
}

.input-group+.input-group {
	margin-top: 15px;
}

.terms-text {
	margin-top: 15px;
	font-size: 12px;
	color: rgba(17, 17, 17, 0.7);
}

.terms-text a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.terms-text a:hover {
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Social Login */
.social-login {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 20px;
	padding: 15px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.1);
	color: #111111;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 20px;
}

.social-button:hover {
	transform: translateY(-2px);
	background: rgba(0, 0, 0, 0.2);
}

.metamask-icon {
	width: 20px;
	height: 20px;
	transition: all 0.3s ease;
}

.social-button.metamask:hover .metamask-icon {
	transform: scale(1.1);
}

/* ============================================
   ACCOUNT PAGE STYLES
   ============================================ */

.account-container {
	display: flex;
	flex-direction: column;
	max-width: 1000px;
	width: 100%;
	margin: 2rem auto;
	gap: 2rem;
	padding-top: 0 !important;
	padding: 1rem;
	box-sizing: border-box;
	backdrop-filter: blur(2px);
}

.delete-account {
	color: white;
}

.account-column:first-child {
	flex: 1;
	width: 100%;
	background: whitesmoke;
	border-radius: 15px;
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #111111;
}

.account-column:last-child {
	flex: 1;
	width: 100%;
	background: whitesmoke;
	border-radius: 15px;
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.2);
	color: #111111;
}

.account-section {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	padding: 1.5rem;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	padding-top: 0.1rem;
}

.account-section h3 {
	color: #111111;
	margin-top: 1rem;
	margin-bottom: 1.2rem;
	font-size: 1.3rem;
}

.subscription-active,
.subscription-inactive {
	border: 2px solid;
	border-radius: 10px;
	padding: 1rem;
	margin: 1rem 0;
}

.subscription-active {
	border-color: #28a745;
	background: rgba(40, 167, 69, 0.1);
}

.subscription-inactive {
	border-color: #dc3545;
	background: rgba(220, 53, 69, 0.1);
}

.subscription-info h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1.2rem;
}

.subscription-info p {
	margin: 0.3rem 0;
	font-size: 0.95rem;
}

.subscription-actions {
	margin-top: 1rem;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.subscription-actions .login-button {
	font-size: 0.85rem;
	padding: 8px 14px;
	margin: 0;
}

.login-button.cancel-button {
	background: #dc3545;
	font-size: 0.9em;
	padding: 8px 16px;
}

.subscription-management-actions {
	margin-top: 1rem;
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.subscription-management-actions .login-button {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.account-form {
	width: 100%;
}

.input-group {
	margin-bottom: 1.2rem;
	width: 100%;
}

.input-group input,
.input-group select,
.input-group textarea {
	width: 100%;
	padding: 12px;
	background: rgba(120, 126, 138, 0.12);
	border: 1px solid rgba(104, 111, 123, 0.45);
	border-radius: 8px;
	color: #20242b;
	font-size: 16px;
	margin-top: 0.5rem;
	box-sizing: border-box;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
	outline: none;
	background: rgba(132, 138, 149, 0.18);
	border-color: rgba(109, 117, 130, 0.85);
	box-shadow: 0 0 0 3px rgba(126, 134, 146, 0.18);
}

body>div.account-container>div>h3 {
	margin-bottom: 1.2rem;
	text-align: left;
	font-size: 1.3rem;
	color: #111111;
}

.input-group option {
	background: #f8f8f8;
	color: #111111;
}

.input-group label {
	display: block;
	color: #111111;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.delete-button {
	color: white;
	background: #ae354e;
}

.delete-button:hover {
	opacity: 0.9;
}

.alert {
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 1.4;
}

.alert-warning {
	background: rgba(231, 76, 60, 0.1);
	border: 1px solid rgba(231, 76, 60, 0.2);
	color: #e74c3c;
}

.alert p {
	margin: 0.5rem 0;
}

.options-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.options-list li {
	margin-bottom: 1rem;
}

.options-list a {
	display: block;
	padding: 0.8rem;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	color: #111111;
	text-decoration: none;
	transition: background 0.3s ease;
}

.vscode-connect-button {
	display: inline-flex;
	align-items: center;
	justify-content: left;
	gap: 12px;
	width: 100%;
	padding: 5px 24px;
	height: 64px;
	background: linear-gradient(135deg, #3367d6, #4285f454);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	margin-top: 20px;
}

.vscode-connect-button::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;
}

.vscode-connect-button:hover::before {
	left: 100%;
}

.vscode-connect-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
	border-color: #e8e8e8;
}

.vscode-connect-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.vscode-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
	border-radius: 3px;
	background: white;
	padding: 3px;
	height: 32px;
	width: 32px;
}

.vscode-connect-button:hover .vscode-icon {
	transform: scale(1.1) rotate(-5deg);
}

.chrome-connect-button {
	display: inline-flex;
	align-items: center;
	justify-content: left;
	gap: 12px;
	width: 100%;
	padding: 5px 24px;
	height: 64px;
	background: linear-gradient(135deg, #4285f4, #34a853);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid #4285f4;
	box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
	position: relative;
	overflow: hidden;
	margin-top: 20px;
}

.chrome-connect-button::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;
}

.chrome-connect-button:hover::before {
	left: 100%;
}

.chrome-connect-button:hover {
	background: linear-gradient(135deg, #3367d6, #2e7d32);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
	border-color: #3367d6;
}

.chrome-connect-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.chrome-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
	border-radius: 50%;
	background: white;
	padding: 3px;
	height: 32px;
	width: 32px;
}

.chrome-connect-button:hover .chrome-icon {
	transform: scale(1.1) rotate(5deg);
}

.security-notice {
	margin-top: 8px;
	text-align: center;
}

.security-notice small {
	color: black;
	font-size: 0.85rem;
}

.logout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	margin-top: 1rem;
	font-size: 1rem;
	transition: background 0.3s ease;
}

.app-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 1rem 0;
}

.app-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.app-link img {
	width: 48px;
	height: 48px;
	margin-bottom: 0.5rem;
}

.app-link span {
	font-size: 0.75rem;
	text-align: center;
	line-height: 1.2;
	padding: 0 0.25rem;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-link:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.disabled:hover {
	transform: none;
	box-shadow: none;
}

.subscription-plans {
	display: flex;
	gap: 1rem;
	margin: 1.5rem 0;
	flex-wrap: wrap;
}

.plan {
	flex: 1;
	min-width: 200px;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	font-size: 15pt;
}

.plan.selected {
	background: linear-gradient(135deg, #cc2e2ebe, #ae27278a);
	border: 2px solid #db3437;
	box-shadow: 0 8px 32px rgba(204, 46, 46, 0.4);
}

.plan:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

body>div.account-container>div>div>div>table>thead>tr>th>small>a {
	font-size: 12pt;
	color: whitesmoke;
	font-weight: 300;
	text-decoration: none;
}

body>div.account-container>div>div>div>table>thead>tr>th>small>a:hover {
	color: rgb(205, 50, 50)
}

body>div.account-container>div>div>div>table>thead>tr>th {
	font-size: 19pt;
}

body>div.account-container>div>div>div>table>thead>tr>th>a {
	display: inline-block;
	width: 100%;
	color: #fff;
	text-decoration: none;
	margin-top: 12px;
	font-size: 13pt;
}

.dark-theme {
	background: #1a1a1a;
}

.dark-theme .settings-section {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus,
.action-button:focus {
	outline: 2px solid #db3434;
	outline-offset: 2px;
}

/* Account Page Mobile Responsiveness */
@media screen and (max-width: 768px) {
	.vscode-connect-button {
		font-size: 0.95rem;
		padding: 5px 12px;
		height: 56px;
	}

	.vscode-icon {
		width: 28px;
		height: 28px;
	}

	.chrome-connect-button {
		font-size: 0.95rem;
		padding: 5px 12px;
		height: 56px;
	}

	.chrome-icon {
		width: 28px;
		height: 28px;
	}

	.account-container {
		flex-direction: column;
		margin: 1rem auto;
		padding: 0.5rem;
	}

	.account-column:first-child,
	.account-column:last-child {
		flex: 1;
		min-width: unset;
	}

	.account-section {
		padding: 1rem;
	}

	.input-group input,
	.input-group select,
	.input-group textarea,
	.login-button {
		font-size: 16px;
	}

	@media screen and (-webkit-min-device-pixel-ratio: 0) {

		.input-group input,
		.input-group select,
		.input-group textarea {
			font-size: 16px;
		}
	}

	.account-form {
		width: 100%;
	}

	.alert {
		padding: 0.8rem;
	}

	h3 {
		font-size: 1.4rem;
		word-wrap: break-word;
	}

	.account-section+.account-section {
		margin-top: 1rem;
	}

	.form-group {
		margin-bottom: 1rem;
	}

	.login-button,
	.options-list a {
		min-height: 44px;
		padding: 12px;
		font-size: 16px;
	}

	.app-links {
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		gap: 0.75rem;
	}

	.app-link {
		width: 100%;
		height: 80px;
		padding: 0.5rem;
	}

	.app-link img {
		width: 40px;
		height: 40px;
	}

	.app-link span {
		font-size: 0.7rem;
	}
}

@media screen and (max-width: 320px) {
	.vscode-connect-button {
		font-size: 0.85rem;
		padding: 5px 8px;
		height: 48px;
	}

	.vscode-icon {
		width: 24px;
		height: 24px;
	}

	.chrome-connect-button {
		font-size: 0.85rem;
		padding: 5px 8px;
		height: 48px;
	}

	.chrome-icon {
		width: 24px;
		height: 24px;
	}

	.account-container {
		padding: 0.25rem;
		margin: 0.5rem auto;
	}

	.account-column:first-child,
	.account-column:last-child {
		padding: 1rem;
	}

	.account-section {
		padding: 0.75rem;
	}

	.input-group {
		margin-bottom: 1rem;
	}

	.input-group input,
	.input-group select,
	.login-button {
		padding: 10px;
	}

	.settings-section {
		padding: 1rem;
	}

	.settings-section h2 {
		font-size: 1.3rem;
	}

	.input-group input,
	.input-group select,
	.action-button {
		font-size: 14px;
	}
}


/* License Card - Minimal */
.lifetime-license-card {
	max-width: 600px;
	margin: 1.5rem auto;
	padding: 1.5rem;
	background: #28a745;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.license-badge {
	background: #ffc107;
	color: #000;
	padding: 0.3rem 1rem;
	border-radius: 15px;
	font-weight: bold;
	font-size: 0.75rem;
	display: inline-block;
	margin-bottom: 0.5rem;
	letter-spacing: 0.5px;
}

.lifetime-license-card h2 {
	color: white;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.license-price {
	margin: 1rem 0;
}

.original-price {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.1rem;
	text-decoration: line-through;
	margin-right: 0.8rem;
}

.current-price {
	color: white;
	font-size: 2rem;
	font-weight: bold;
}

.license-description {
	color: white;
	font-size: 0.95rem;
	margin: 1rem 0;
	line-height: 1.5;
}

.license-features {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
	text-align: left;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.license-features li {
	color: white;
	font-size: 0.9rem;
	padding: 0.3rem 0;
}

.license-cta {
	display: inline-block;
	padding: 0.8rem 2rem;
	background: white;
	color: #28a745;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 25px;
	margin: 1rem 0 0.5rem;
	transition: all 0.3s ease;
}

.license-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.license-note {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

.plans-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.plan-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	width: 250px;
	text-align: center;
	background: #f9f9f9;
}

.plan-card.active {
	border-color: #007bff;
	box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
	background: #fff;
}

.plan-card h3 {
	margin-top: 0;
	color: #333;
}

.plan-card h4 {
	color: #555;
}

.plan-card p {
	color: #777;
	min-height: 40px;
}

.plan-card button {
	background: linear-gradient(135deg, #b5b5b5, #4b1010);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 10px;
	width: 100%;
	box-sizing: border-box;
}

.plan-card button:disabled {
	background: linear-gradient(135deg, #b5b5b5, #3367d6);
	cursor: not-allowed;
}

@media screen and (max-width: 768px) {

	.plan-card {
		width: 100%;
	}
}

.nav-button,
.nav-button:hover,
.nav-button:focus,
.nav-button:active,
.pricing-cta,
.pricing-cta:hover,
.pricing-cta:focus,
.pricing-cta:active,
.pricing-cta.secondary,
.pricing-cta.secondary:hover,
.pricing-cta.secondary:focus,
.pricing-cta.secondary:active,
.cta-button,
.cta-button:hover,
.cta-button:focus,
.cta-button:active,
.secondary-button,
.secondary-button:hover,
.secondary-button:focus,
.secondary-button:active,
.login-button,
.login-button:hover,
.login-button:focus,
.login-button:active,
.muted-auth.login-button,
.muted-auth.login-button:hover,
.muted-auth.login-button:focus,
.muted-auth.login-button:active,
.option-button,
.option-button:hover,
.option-button:focus,
.option-button:active,
.option-button.selected,
.vscode-connect-button,
.vscode-connect-button:hover,
.vscode-connect-button:focus,
.vscode-connect-button:active,
.chrome-connect-button,
.chrome-connect-button:hover,
.chrome-connect-button:focus,
.chrome-connect-button:active,
.social-button,
.social-button:hover,
.social-button:focus,
.social-button:active,
.license-cta,
.license-cta:hover,
.license-cta:focus,
.license-cta:active,
.delete-button,
.delete-button:hover,
.delete-button:focus,
.delete-button:active,
.action-button,
.action-button:hover,
.action-button:focus,
.action-button:active {
	box-shadow: none !important;
}
