@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
	--bg-deep: #0a0a1f;
	--bg-card: #1a1a3a;
	--bg-card-hover: #252545;
	--text-main: #e0e0e0;
	--text-dim: #ccc;
	--accent-pink: #ff84c8;
	--accent-pink-hover: #ff54b2;
	--accent-pink-glow: rgba(255, 132, 200, 0.35);
	--accent-info: #87cefa;
	--danger: #ff4444;
	--hero-grad-top: #ffc7e7;
	--hero-grad-mid: #ff95d4;
	--hero-grad-bottom: #121229;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--transition-fast: 0.2s ease;
	--transition: 0.3s ease;
	--shadow-soft: 0 5px 20px rgba(255, 105, 180, 0.12);
	--shadow-glow: 0 0 18px var(--accent-pink-glow);
	--hero-logo-bg: #0d0d22;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: var(--bg-deep);
	color: var(--text-main);
	line-height: 1.6;
}

/* Navbar */
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
	background: var(--bg-deep);
	position: fixed;
	width: 100%;
	z-index: 10;
}

.logo {
	display: flex;
	align-items: center;
	margin-left: -10px;
}

.logo img {
	height: 48px;
	width: auto;
	display: block;
}

.nav-links {
	display: flex;
	gap: 25px;
}

.nav-links a {
	color: var(--text-dim);
	text-decoration: none;
	transition: var(--transition-fast);
	font-weight: 600;
}

.nav-links a:hover {
	color: var(--accent-pink);
}

.user {
	display: flex;
	align-items: center;
	position: relative;
	gap: 8px;
}

.user-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid var(--accent-pink);
	object-fit: cover;
}

.user i {
	cursor: pointer;
	transition: var(--transition-fast);
}

.user i:hover {
	color: var(--accent-pink);
}

.user-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--bg-card);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	min-width: 160px;
	margin-top: 10px;
}

.user-menu.active {
	display: block;
}

.user-menu a {
	display: block;
	padding: 10px 15px;
	color: var(--text-main);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition-fast);
}

.user-menu a:hover {
	background: var(--accent-pink);
	color: #fff;
}

/* Hero */
.hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(180deg, var(--hero-grad-top) 0%, var(--hero-grad-mid) 45%, var(--hero-grad-bottom) 100%);
	text-align: center;
	position: relative;
	padding: 0 20px;
}

.logo-img {
	width: clamp(600px, 70vw, 1600px);
	height: auto;
	display: block;
	margin: 0 auto 0;
	filter: var(--shadow-glow);
}

.hero-logo {
	background: var(--hero-logo-bg);
	border-radius: 28px;
	padding: clamp(12px, 3vw, 24px);
	margin-bottom: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero p {
	max-width: 760px;
	font-size: 1.15rem;
}

.accent-pink {
	color: var(--accent-pink);
}

.hero-buttons {
	display: flex;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Buttons */
.btn {
	padding: 15px 30px;
	border-radius: 30px;
	text-decoration: none;
	transition: var(--transition);
	border: none;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	position: relative;
	display: inline-block;
}

.btn-primary {
	background: var(--accent-info);
	color: var(--bg-deep);
	box-shadow: 0 0 0 0 rgba(135, 206, 250, 0.5);
}

.btn-primary:hover {
	box-shadow: 0 0 0 6px rgba(135, 206, 250, 0.25);
}

.btn-secondary {
	background: var(--accent-pink);
	color: #fff;
}

.btn-secondary:hover {
	background: var(--accent-pink-hover);
}

.btn.disabled {
	background: var(--bg-card-hover);
	cursor: not-allowed;
	opacity: 0.6;
	pointer-events: none;
}

.btn.disabled:hover {
	background: var(--bg-card-hover);
	box-shadow: none;
}

/* Features */
.features {
	padding: 100px 50px;
	text-align: center;
}

.features h2 {
	font-size: 3rem;
	margin-bottom: 50px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature-card {
	background: var(--bg-card);
	padding: 30px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-card i {
	font-size: 2rem;
	color: var(--accent-pink);
	margin-bottom: 20px;
}

/* Pricing */
.pricing {
	padding: 100px 50px;
	background: var(--bg-deep);
	text-align: center;
}

.pricing h2 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.pricing-subtitle {
	font-size: 1.1rem;
	color: var(--accent-info);
	margin-bottom: 40px;
	font-weight: 600;
}

.price-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.price-card {
	background: var(--bg-card);
	padding: 40px;
	border-radius: var(--radius-lg);
	width: 300px;
	box-shadow: var(--shadow-soft);
}

.price-card h3 {
	font-size: 2rem;
	color: var(--accent-pink);
}

.price-card p {
	font-size: 1.2rem;
}

.price-card.striked {
	opacity: 0.6;
	filter: grayscale(0.3);
}

.old-price {
	text-decoration: line-through;
	opacity: 0.7;
}

.price-card ul {
	list-style: none;
	margin: 20px 0;
}

.price-card ul li {
	margin: 10px 0;
	color: var(--accent-info);
}

.price-card .btn {
	margin-top: 20px;
	width: 100%;
}

/* Testimonials */
.testimonials {
	padding: 100px 50px;
	text-align: center;
}

.testimonials h2 {
	font-size: 3rem;
	margin-bottom: 50px;
}

.test-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.test-card {
	background: var(--bg-card);
	padding: 20px;
	border-radius: var(--radius-lg);
	width: 250px;
}

/* FAQ */
.faq {
	padding: 100px 50px;
	text-align: center;
}

.faq h2 {
	font-size: 3rem;
	margin-bottom: 50px;
}
.credits {
	background: var(--bg-card);
	margin-top: 24px;
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-soft);
	text-align: center;
}
.credits-title {
	font-weight: 700;
	margin-bottom: 16px;
}
.credits-list {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}
.credit {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	padding: 12px 16px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	gap: 10px;
	transition: var(--transition-fast);
}
.credit:hover { transform: translateY(-3px); }
.credit-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 4px 10px rgba(0,0,0,0.35);
	border: 2px solid var(--accent-pink);
}
.credit-name { font-weight: 600; }

.faq-item {
	background: var(--bg-card);
	margin: 10px 0;
	border-radius: var(--radius-md);
	padding: 20px;
	text-align: left;
	cursor: pointer;
	transition: var(--transition);
}

.faq-item:hover {
	background: var(--bg-card-hover);
}

.faq-item .answer {
	display: none;
	margin-top: 10px;
	color: var(--accent-info);
}

.faq-item.active .answer {
	display: block;
}

.faq-item i {
	float: right;
	transition: var(--transition-fast);
}

.faq-item.active i {
	transform: rotate(180deg);
}

/* Footer */
footer {
	padding: 50px;
	text-align: center;
	background: var(--bg-deep);
}

footer .social {
	font-size: 2rem;
	color: var(--accent-pink);
	margin-bottom: 20px;
}

footer .social i {
	margin: 0 10px;
	cursor: pointer;
	transition: var(--transition-fast);
}

footer .social i:hover {
	color: var(--accent-pink-hover);
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	animation: fadeIn 0.3s;
}

.modal.active {
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: var(--bg-card);
	padding: 40px;
	border-radius: var(--radius-lg);
	width: 90%;
	max-width: 450px;
	position: relative;
	animation: slideIn 0.3s;
	box-shadow: var(--shadow-soft);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 30px;
	color: var(--text-dim);
	cursor: pointer;
	transition: var(--transition-fast);
}

.close:hover {
	color: var(--accent-pink);
}

.modal-content h2 {
	color: var(--accent-pink);
	margin-bottom: 15px;
	text-align: center;
}

.discord-login {
	text-align: center;
}

.login-subtitle {
	color: var(--text-dim);
	margin-bottom: 30px;
	font-size: 0.95rem;
}

.btn-discord {
	background: #5865F2;
	color: white;
	padding: 15px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: var(--transition);
	font-size: 16px;
}

.btn-discord:hover {
	background: #4752C4;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(88,101,242,0.4);
}

.btn-discord i {
	font-size: 20px;
}

.login-info {
	margin-top: 20px;
	color: var(--accent-info);
	font-size: 0.9rem;
}

/* Profile Modal */
.profile-content {
	text-align: center;
}

.profile-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.profile-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid var(--accent-pink);
	object-fit: cover;
	box-shadow: 0 8px 24px rgba(255,132,200,0.3);
}

.profile-details {
	width: 100%;
}

.profile-details h3 {
	color: var(--accent-pink);
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.profile-label {
	color: var(--text-dim);
	font-size: 0.85rem;
	margin-bottom: 5px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.profile-value {
	color: var(--text-main);
	font-size: 1.1rem;
	font-weight: 600;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-main);
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #2a2a4a;
	background: var(--bg-deep);
	color: var(--text-main);
	border-radius: var(--radius-md);
	font-size: 16px;
	transition: var(--transition-fast);
}

.form-group input:focus {
	outline: none;
	border-color: var(--accent-pink);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px var(--bg-deep) inset !important;
	-webkit-text-fill-color: var(--text-main) !important;
	caret-color: var(--text-main);
}

.error-message {
	color: var(--danger);
	margin: 15px 0;
	font-size: 14px;
	text-align: center;
	min-height: 20px;
}

.modal-content .btn {
	width: 100%;
	margin-top: 10px;
}

.switch-auth {
	text-align: center;
	margin-top: 20px;
	color: var(--text-dim);
}

.switch-auth a {
	color: var(--accent-pink);
	text-decoration: none;
	font-weight: bold;
}

.switch-auth a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	nav {
		padding: 15px 20px;
	}

	.nav-links {
		display: none;
	}

	.hero p {
		font-size: 1rem;
	}

	.features,
	.pricing,
	.testimonials,
	.faq {
		padding: 60px 20px;
	}

	.feature-grid {
		gap: 20px;
	}

	.hero-buttons {
		gap: 15px;
	}

}

.feature-card i {
	font-size: 2rem;
	color: #ff69b4;
	margin-bottom: 20px;
}

/* Pricing */
.pricing {
	padding: 100px 50px;
	background: #0a0a1f;
	text-align: center;
}

.pricing h2 {
	font-size: 3rem;
	margin-bottom: 50px;
}

.price-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.price-card {
	background: #1a1a3a;
	padding: 40px;
	border-radius: 20px;
	width: 300px;
	box-shadow: 0 5px 20px rgba(255, 105, 180, 0.1);
}

.price-card h3 {
	font-size: 2rem;
	color: #ff69b4;
}

.price-card p {
	font-size: 1.2rem;
}

.price-card ul {
	list-style: none;
	margin: 20px 0;
}

.price-card ul li {
	margin: 10px 0;
	color: #87cefa;
}

.price-card .btn {
	margin-top: 20px;
	width: 100%;
}

/* Testimonials */
.testimonials {
	padding: 100px 50px;
	text-align: center;
}

.testimonials h2 {
	font-size: 3rem;
	margin-bottom: 50px;
}

.test-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.test-card {
	background: #1a1a3a;
	padding: 20px;
	border-radius: 20px;
	width: 250px;
}

/* FAQ */
.faq {
	padding: 100px 50px;
	text-align: center;
}

.faq h2 {
	font-size: 3rem;
	margin-bottom: 50px;
}

.faq-item {
	background: #1a1a3a;
	margin: 10px 0;
	border-radius: 10px;
	padding: 20px;
	text-align: left;
	cursor: pointer;
	transition: 0.3s;
}

.faq-item:hover {
	background: #252545;
}

.faq-item .answer {
	display: none;
	margin-top: 10px;
	color: #87cefa;
}

.faq-item.active .answer {
	display: block;
}

.faq-item i {
	float: right;
	transition: 0.3s;
}

.faq-item.active i {
	transform: rotate(180deg);
}

/* Footer */
footer {
	padding: 50px;
	text-align: center;
	background: #0a0a1f;
}

footer .social {
	font-size: 2rem;
	color: #ff69b4;
	margin-bottom: 20px;
}

footer .social i {
	margin: 0 10px;
	cursor: pointer;
	transition: 0.3s;
}

footer .social i:hover {
	color: #ff1493;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	animation: fadeIn 0.3s;
}

.modal.active {
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: #1a1a3a;
	padding: 40px;
	border-radius: 20px;
	width: 90%;
	max-width: 450px;
	position: relative;
	animation: slideIn 0.3s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.close {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 30px;
	color: #ccc;
	cursor: pointer;
	transition: 0.3s;
}

.close:hover {
	color: #ff69b4;
}

.modal-content h2 {
	color: #ff69b4;
	margin-bottom: 30px;
	text-align: center;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #e0e0e0;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #2a2a4a;
	background: #0a0a1f;
	color: #e0e0e0;
	border-radius: 10px;
	font-size: 16px;
	transition: 0.3s;
}

.form-group input:focus {
	outline: none;
	border-color: #ff69b4;
}

.error-message {
	color: #ff4444;
	margin: 15px 0;
	font-size: 14px;
	text-align: center;
	min-height: 20px;
}

.modal-content .btn {
	width: 100%;
	margin-top: 10px;
}

.switch-auth {
	text-align: center;
	margin-top: 20px;
	color: #ccc;
}

.switch-auth a {
	color: #ff69b4;
	text-decoration: none;
	font-weight: bold;
}

.switch-auth a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	nav {
		padding: 15px 20px;
	}

	.nav-links {
		display: none;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.features,
	.pricing,
	.testimonials,
	.faq {
		padding: 50px 20px;
	}
}

/* Profile Page */
.profile-page {
	padding: 100px 50px 50px;
	min-height: 100vh;
	background: linear-gradient(135deg, var(--bg-deep) 0%, #0d0d22 100%);
}

.profile-container {
	max-width: 1200px;
	margin: 0 auto;
}

.profile-header {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 40px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 30px;
	box-shadow: var(--shadow-soft);
}

.profile-avatar-large {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid var(--accent-pink);
	box-shadow: 0 0 20px var(--accent-pink-glow);
}

.profile-header-info h1 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	margin-bottom: 10px;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-info));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.profile-tag {
	color: var(--text-dim);
	font-size: 1.1rem;
}

.profile-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
}

.profile-card {
	background: var(--bg-card);
	border-radius: var(--radius-md);
	padding: 30px;
	box-shadow: var(--shadow-soft);
	transition: var(--transition);
}

.profile-card:hover {
	background: var(--bg-card-hover);
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow);
}

.profile-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(255, 132, 200, 0.2);
}

.profile-card-header i {
	color: var(--accent-pink);
	font-size: 1.4rem;
}

.profile-card-header h3 {
	font-size: 1.3rem;
	color: var(--text-main);
}

.profile-card-body {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.profile-sub-type {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--accent-pink);
	margin-bottom: 5px;
}

.profile-sub-expiry {
	color: var(--text-dim);
	font-size: 1rem;
	margin-bottom: 10px;
}

.profile-progress {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	height: 20px;
	overflow: hidden;
	position: relative;
}

.profile-progress-bar {
	height: 100%;
	border-radius: 10px;
	transition: width 0.5s ease, background 0.5s ease;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.profile-info-row {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-info-row:last-child {
	border-bottom: none;
}

.profile-info-label {
	color: var(--text-dim);
	font-size: 0.95rem;
}

.profile-info-value {
	color: var(--text-main);
	font-weight: 600;
	font-size: 0.95rem;
}

.profile-btn {
	width: 100%;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-secondary {
	background: rgba(255, 132, 200, 0.15);
	color: var(--accent-pink);
	border: 2px solid var(--accent-pink);
}

.btn-secondary:hover {
	background: rgba(255, 132, 200, 0.25);
	box-shadow: var(--shadow-glow);
}

.btn-danger {
	background: rgba(255, 68, 68, 0.15);
	color: var(--danger);
	border: 2px solid var(--danger);
}

.btn-danger:hover {
	background: rgba(255, 68, 68, 0.25);
	box-shadow: 0 0 18px rgba(255, 68, 68, 0.35);
}

/* Profile Page Responsive */
@media (max-width: 768px) {
	.profile-page {
		padding: 80px 20px 30px;
	}

	.profile-header {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
	}

	.profile-avatar-large {
		width: 100px;
		height: 100px;
	}

	.profile-grid {
		grid-template-columns: 1fr;
	}
}