/* Root Variables */
:root {
	--color-bg: #07070b;
	--color-purple: #7c50ff;
	--color-purple-light: #9b7fff;
	--color-purple-dark: #5a30cc;
	--color-gold: #f0a500;
	--color-text: #e8e6f0;
	--color-muted: #5c5878;
	--color-card-bg: rgba(255, 255, 255, 0.03);
	--color-card-border: rgba(255, 255, 255, 0.07);
}

.oauth-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.oauth-btn {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.2s;
	font-family: 'Inter', sans-serif;
	border: none;
}

.google-btn {
	background: #fff;
	color: #333;
}

.google-btn:hover {
	background: #f5f5f5;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.discord-btn {
	background: #5865F2;
	color: #fff;
}

.thankyou-page {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 20px;
}

.thankyou-container {
	max-width: 500px;
}

.thankyou-icon {
	width: 80px;
	height: 80px;
	background: #7c50ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: white;
	margin: 0 auto 24px;
}

.thankyou-container h1 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 36px;
	color: #fff;
	margin-bottom: 12px;
}

.thankyou-container p {
	color: #5c5878;
	margin-bottom: 32px;
	font-size: 16px;
}

.btn-primary {
	display: inline-block;
	background: #7c50ff;
	color: #fff;
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	margin: 0 8px;
	transition: background 0.2s;
}

.btn-primary:hover {
	background: #9068ff;
	color: #fff;
}

.btn-secondary {
	display: inline-block;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	color: #9994b0;
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	margin: 0 8px;
	transition: all 0.2s;
}

.btn-secondary:hover {
	background: rgba(255,255,255,0.08);
	color: #fff;
}

.discord-btn:hover {
	background: #4752C4;
}

.auth-divider {
	text-align: center;
	position: relative;
	margin: 20px 0;
}

.auth-divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255,255,255,0.07);
}

.auth-divider span {
	background: #111218;
	padding: 0 12px;
	color: #5c5878;
	font-size: 13px;
	position: relative;
}

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

body {
	background-color: var(--color-bg);
	background-image: 
		radial-gradient(at 0% 0%, rgba(124, 80, 255, 0.08) 0px, transparent 55%),
		radial-gradient(at 100% 0%, rgba(124, 80, 255, 0.05) 0px, transparent 55%),
		radial-gradient(at 50% 100%, rgba(124, 80, 255, 0.03) 0px, transparent 50%);
	color: var(--color-text);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Rajdhani', 'Inter', sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

a {
	color: var(--color-purple);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--color-purple-light);
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header Styles */
.site-header {
	background: linear-gradient(180deg, rgba(10, 11, 15, 0.98) 0%, rgba(10, 11, 15, 0.92) 100%);
	backdrop-filter: blur(24px);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(124, 80, 255, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: 'Rajdhani', sans-serif;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -1px;
	text-shadow: 0 0 30px rgba(124, 80, 255, 0.25);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}

.custom-logo {
	max-height: 50px;
	width: auto;
}

.logo:hover {
	transform: scale(1.02);
	text-shadow: 0 0 40px rgba(124, 80, 255, 0.4);
}

.logo span {
	color: var(--color-purple);
	text-shadow: 0 0 30px rgba(124, 80, 255, 0.4);
}

.main-nav ul {
	list-style: none;
	display: flex;
	gap: 36px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-item {
	position: relative;
}

.dropdown-toggle {
	color: var(--color-text);
	font-weight: 700;
	cursor: pointer;
	font-size: 15px;
	letter-spacing: 0.2px;
	transition: all 0.3s ease;
}

.dropdown-toggle:hover {
	color: var(--color-purple);
}

.nav-item .dropdown-menu {
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	background: rgba(15, 15, 25, 0.98);
	border: 1px solid rgba(124, 80, 255, 0.2);
	border-radius: 14px;
	padding: 12px 0;
	min-width: 220px;
	display: none !important;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 80, 255, 0.08);
	z-index: 999;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.nav-item:hover .dropdown-menu {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
}

.dropdown-menu li {
	padding: 0;
}

.dropdown-menu li a {
	display: block;
	padding: 12px 24px;
	color: var(--color-text);
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}

.dropdown-game-section {
	padding: 12px 0 0;
}
.dropdown-game-section:first-child {
	padding-top: 0;
}
.dropdown-game-title {
	display: block;
	padding: 8px 24px 4px;
	color: var(--color-gold);
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Rajdhani', sans-serif;
}
.dropdown-game-section ul {
	list-style: none;
	padding: 4px 0 8px;
	margin: 0;
}
.dropdown-game-section ul li a {
	display: block;
	padding: 8px 24px;
	color: var(--color-text);
	font-weight: 600;
	font-size: 14px;
	transition: all 0.2s ease;
}
.dropdown-game-section ul li a:hover {
	background-color: rgba(124, 80, 255, 0.15);
	color: var(--color-purple);
	padding-left: 30px;
}

.main-nav ul li a {
	color: var(--color-text);
	font-weight: 700;
	font-size: 15px;
	transition: all 0.3s ease;
}

.main-nav ul li a:hover {
	color: var(--color-purple);
}

.header-actions {
	display: flex;
	gap: 24px;
	align-items: center;
}

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

.switcher-btn {
	background: transparent;
	border: none;
	color: var(--color-text);
	padding: 4px 6px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Rajdhani', sans-serif;
}

.switcher-btn:hover {
	color: var(--color-purple);
}

.switcher-separator {
	color: var(--color-muted);
	font-size: 16px;
	font-weight: 600;
}

.switcher-currency {
	color: var(--color-muted);
	font-size: 16px;
	font-weight: 600;
}

.login-btn {
	background: transparent;
	color: var(--color-purple);
	padding: 12px 28px;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid var(--color-purple);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Rajdhani', sans-serif;
	font-size: 18px;
}

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

.header-status-bar {
	background: rgba(0, 0, 0, 0.2);
	padding: 8px 0;
	border-bottom: none;
}

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

.status-item {
	display: flex;
	gap: 10px;
	align-items: center;
}

.status-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.status-dot.green {
	background: #22c55e;
	box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
	}
	70% {
		opacity: 0.7;
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
	}
}

.status-text {
	color: rgba(232, 230, 240, 0.7);
	font-size: 16px;
	font-weight: 700;
	font-family: 'Rajdhani', sans-serif;
}

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

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

.status-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: 'Rajdhani', sans-serif;
}

.support-btn {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--color-text);
}

.support-btn:hover {
	background: rgba(255, 255, 255, 0.12);
}

.discord-btn {
	background: linear-gradient(135deg, #5865f2, #7c50ff);
	color: white;
}

.discord-btn:hover {
	background: linear-gradient(135deg, #4752c4, #6a44e6);
}

@media (max-width: 768px) {
	.header-status-buttons {
		gap: 8px;
	}
	.status-btn {
		font-size: 13px;
		padding: 6px 12px;
	}
}

/* Hero Section */
.hero-section {
	padding: 100px 0 80px;
	text-align: center;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
}

.hero-title {
	font-size: 72px;
	margin-bottom: 12px;
	font-weight: 800;
	line-height: 1.1;
	animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title .highlight {
	color: var(--color-purple);
	background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 40px rgba(124, 80, 255, 0.25);
}

.hero-subtitle {
	font-size: 20px;
	color: var(--color-muted);
	margin-bottom: 60px;
	font-weight: 500;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Game Cards Section */
.game-cards-section {
	padding: 60px 0;
	margin-top: 0;
}

.game-cards {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 28px;
}

.game-card-wrapper {
	width: 100%;
	max-width: 340px;
	flex: 1 1 0;
	min-width: 260px;
}

.game-card {
	position: relative;
	width: 100%;
	aspect-ratio: 4/5;
	border-radius: 20px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(124, 80, 255, 0.15);
}

.game-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 11, 15, 0.95) 0%, rgba(10, 11, 15, 0.4) 50%, rgba(10, 11, 15, 0.1) 100%);
	z-index: 1;
}

.discount-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	background: linear-gradient(135deg, #ff6b35 0%, #f0a500 100%);
	color: #0a0b0f;
	padding: 8px 18px;
	border-radius: 50px;
	font-weight: 900;
	font-family: 'Rajdhani', sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(240, 165, 0, 0.4);
	display: flex;
	align-items: center;
	gap: 8px;
}

.discount-badge i {
	font-size: 18px;
	animation: pulse 1.5s ease-in-out infinite;
}

.card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.card-game-name {
	font-size: 36px;
	font-weight: 800;
	color: white;
	margin: 0;
	font-family: 'Rajdhani', sans-serif;
}

.card-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 10px;
	font-weight: 800;
	font-size: 14px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.card-btn.buy-btn {
	background: white;
	color: #000;
}

.card-btn.buy-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.card-btn.coming-soon-btn {
	background-color: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
	cursor: not-allowed;
}

@media (max-width: 1024px) {
	.game-cards {
		flex-wrap: wrap;
	}
	.game-card-wrapper {
		max-width: 45%;
	}
}

@media (max-width: 768px) {
	.game-card-wrapper {
		max-width: 100%;
	}
}

/* Trustpilot Rating Section */
.trustpilot-section {
	padding: 20px 0 40px;
	text-align: center;
}

.trustpilot-section > .container {
	display: flex;
	justify-content: center;
}

.mt-16 {
	margin-top: 0;
}

.inline-flex {
	display: inline-flex;
}

.items-center {
	align-items: center;
}

.gap-3 {
	gap: 0.75rem;
}

.opacity-80 {
	opacity: 0.8;
}

.text-white\/90 {
	color: rgba(255, 255, 255, 0.9);
}

.font-semibold {
	font-weight: 600;
}

.text-sm {
	font-size: 0.875rem;
}

.tracking-wide {
	letter-spacing: 0.025em;
}

.flex {
	display: flex;
}

.gap-0\.5 {
	gap: 0.125rem;
}

.text-white\/70 {
	color: rgba(255, 255, 255, 0.7);
}

.text-white\/50 {
	color: rgba(255, 255, 255, 0.5);
}

@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.trustpilot-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 18px 36px;
	max-width: 650px;
	margin: 0 auto;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.trustpilot-wrapper:hover {
	transform: translateY(-2px);
	border-color: rgba(124, 80, 255, 0.25);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.trustpilot-stars {
	display: flex;
	gap: 4px;
}

.trustpilot-star {
	width: 28px;
	height: 28px;
}

.trustpilot-divider {
	color: rgba(255, 255, 255, 0.3);
	font-size: 16px;
	font-weight: 600;
}

.trustpilot-rating {
	color: white;
	font-size: 18px;
	font-weight: 800;
}

.trustpilot-reviews {
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
	font-weight: 600;
}

.trustpilot-label {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	font-weight: 700;
}

/* Description Section */
.description-section {
	padding: 20px 0 60px;
}

.description-text {
	max-width: 900px;
	margin: 0 auto;
	text-align: left;
}

.description-text p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 24px;
	text-align: left;
	font-weight: 500;
}

.description-text p:last-child {
	margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(15, 15, 30, 0.98), rgba(10, 11, 15, 0.98));
}

.faq-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: start;
}

.faq-left {
	position: sticky;
	top: 100px;
}

.faq-title {
	font-family: 'Rajdhani', sans-serif;
	font-size: 48px;
	font-weight: 800;
	color: white;
	line-height: 1.1;
	margin-bottom: 16px;
}

.faq-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: rgba(232, 230, 240, 0.7);
	margin: 0;
}

.faq-accordion {
	width: 100%;
}

.faq-item {
	margin-bottom: 16px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 28px;
	cursor: pointer;
	font-weight: 600;
	font-size: 17px;
	font-family: 'Inter', sans-serif;
	color: rgba(232, 230, 240, 0.95);
	transition: all 0.3s ease;
}

.faq-question:hover {
	background-color: rgba(255, 255, 255, 0.02);
}

.faq-icon {
	font-size: 16px;
	transition: transform 0.3s ease;
	color: rgba(139, 92, 246, 1);
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 28px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
	padding: 0 28px 28px 28px;
	max-height: 1000px;
}

.faq-answer p {
	color: rgba(232, 230, 240, 0.75);
	line-height: 1.7;
	font-size: 15px;
	font-family: 'Inter', sans-serif;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
	.faq-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.faq-left {
		position: static;
	}
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 36px;
	}
}

/* How It Works Section */
.how-it-works-section {
	padding: 60px 0 80px;
	background: linear-gradient(135deg, rgba(10, 11, 15, 0.98) 0%, rgba(15, 15, 30, 0.98) 100%);
}

.how-it-works-header {
	text-align: center;
	margin-bottom: 40px;
}

.how-it-works-subtitle {
	font-size: 18px;
	color: var(--color-muted);
}

.how-it-works-subtitle .highlight {
	color: var(--color-purple);
	font-weight: 700;
}

.step-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(124, 80, 255, 0.15);
	border-radius: 24px;
	padding: 40px 50px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 60px;
	position: relative;
	overflow: hidden;
}

.step-card:last-child {
	margin-bottom: 0;
}

.step-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(124, 80, 255, 0.5), transparent);
}

.step-content {
	flex: 1;
	min-width: 0;
}

.step-number {
	color: var(--color-purple);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 12px;
	letter-spacing: 1px;
}

.step-title {
	font-size: 32px;
	margin-bottom: 16px;
	line-height: 1.2;
	color: white;
}

.step-title-icon {
	color: var(--color-gold);
	font-size: 0.85em;
	margin-left: 6px;
}

.step-description {
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 24px;
}

.step-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-light) 100%);
	color: white;
	padding: 12px 28px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(124, 80, 255, 0.25);
}

.step-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 6px 30px rgba(124, 80, 255, 0.35);
	color: white;
}

.step-visual {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
}

/* Step 1 rank emblems + mockup */
.hiw-rank-showcase {
	width: 100%;
	max-width: 340px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.hiw-rank-emblems {
	display: flex;
	justify-content: center;
	gap: 24px;
	width: 100%;
}

.hiw-emblem {
	position: relative;
	width: 88px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hiw-emblem-wings {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	filter: blur(18px);
	opacity: 0.55;
}

.hiw-emblem--gold .hiw-emblem-wings {
	background: radial-gradient(circle, rgba(46, 204, 113, 0.5), rgba(240, 165, 0, 0.35));
}

.hiw-emblem--purple .hiw-emblem-wings {
	background: radial-gradient(circle, rgba(124, 80, 255, 0.55), rgba(255, 105, 180, 0.25));
}

.hiw-emblem-inner {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	border: 2px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hiw-emblem--gold .hiw-emblem-inner {
	background: linear-gradient(145deg, rgba(46, 204, 113, 0.35), rgba(240, 165, 0, 0.25));
	color: #f0a500;
}

.hiw-emblem--purple .hiw-emblem-inner {
	background: linear-gradient(145deg, rgba(124, 80, 255, 0.45), rgba(255, 105, 180, 0.2));
	color: #c89bff;
}

.visual-mockup {
	width: 100%;
	max-width: 280px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mockup-header {
	height: 40px;
	background: linear-gradient(135deg, rgba(124, 80, 255, 0.3), rgba(124, 80, 255, 0.1));
	border-radius: 8px;
	margin-bottom: 20px;
}

.mockup-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.mockup-options .option {
	height: 32px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 6px;
}

.mockup-options .option.active {
	background: linear-gradient(135deg, rgba(124, 80, 255, 0.4), rgba(124, 80, 255, 0.2));
}

.mockup-btn {
	height: 40px;
	background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mockup-btn span {
	color: white;
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Step 2 payment mockup */
.visual-payment {
	width: 100%;
	max-width: 300px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.payment-header {
	margin-bottom: 20px;
}

.payment-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.payment-logo i {
	font-size: 28px;
	color: var(--color-purple);
}

.payment-logo div div:first-child {
	font-weight: 800;
	font-size: 14px;
	color: white;
}

.payment-logo div div:last-child {
	color: var(--color-purple);
	font-weight: 700;
	font-size: 12px;
}

.payment-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.payment-card .card-number {
	font-family: 'Courier New', monospace;
	letter-spacing: 2px;
	font-size: 16px;
	color: white;
}

.payment-card .fa-cc-visa {
	font-size: 28px;
	color: rgba(255, 255, 255, 0.7);
}

.payment-methods {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.payment-methods .method {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.03);
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid transparent;
}

.payment-methods .method.active {
	background: rgba(124, 80, 255, 0.12);
	border-color: rgba(124, 80, 255, 0.25);
}

.payment-methods .method i {
	font-size: 20px;
	width: 24px;
	text-align: center;
}

.payment-methods .method span {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
}

.payment-methods .method .radio {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	flex-shrink: 0;
}

.payment-methods .method.active .radio {
	background: var(--color-purple);
	border-color: var(--color-purple);
	box-shadow: inset 0 0 0 3px rgba(10, 11, 15, 0.35);
}

.payment-total {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.promo {
	display: flex;
	gap: 8px;
}

.promo input {
	flex: 1;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	padding: 8px 12px;
	color: var(--color-text);
	font-size: 13px;
}

.promo button {
	background: rgba(255, 255, 255, 0.05);
	border: none;
	border-radius: 6px;
	padding: 8px 16px;
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: var(--color-muted);
}

.total .price {
	font-weight: 800;
	font-size: 18px;
	color: white;
}

.pay-btn {
	background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
	border: none;
	border-radius: 8px;
	padding: 12px;
	color: white;
	font-weight: 700;
	font-size: 14px;
	width: 100%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* Step 3 crown visual */
.visual-crown {
	text-align: center;
	width: 100%;
	max-width: 280px;
}

.crown-pedestal {
	position: relative;
	padding: 24px 0 0;
}

.crown-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 180px;
	height: 180px;
	transform: translate(-50%, -55%);
	background: radial-gradient(circle, rgba(124, 80, 255, 0.45) 0%, transparent 70%);
	pointer-events: none;
}

.crown-sparkles {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.crown-sparkles span {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(200, 160, 255, 0.9);
	box-shadow: 0 0 8px rgba(124, 80, 255, 0.8);
}

.crown-sparkles span:nth-child(1) { top: 18%; left: 20%; }
.crown-sparkles span:nth-child(2) { top: 10%; right: 24%; }
.crown-sparkles span:nth-child(3) { bottom: 42%; left: 12%; }
.crown-sparkles span:nth-child(4) { bottom: 38%; right: 14%; }

.crown-badge {
	position: relative;
	margin-bottom: -18px;
	z-index: 2;
}

.crown-badge i {
	font-size: 72px;
	color: #b388ff;
	filter: drop-shadow(0 0 30px rgba(124, 80, 255, 0.65));
}

.crown-platform {
	position: relative;
	width: 160px;
	height: 48px;
	margin: 0 auto;
	background: linear-gradient(180deg, rgba(124, 80, 255, 0.35), rgba(60, 30, 120, 0.5));
	border-radius: 50% / 20%;
	border: 1px solid rgba(124, 80, 255, 0.35);
	box-shadow: 0 16px 40px rgba(124, 80, 255, 0.2);
}

.crown-stars {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding-top: 14px;
	color: var(--color-purple-light);
	font-size: 14px;
}

@media (max-width: 1024px) {
	.step-card {
		flex-direction: column;
		gap: 40px;
		padding: 30px;
	}

	.step-card.step-2 {
		flex-direction: column-reverse;
	}

	.step-content {
		text-align: center;
	}

	.step-btn {
		justify-content: center;
	}

	.step-visual {
		width: 100%;
	}
}

/* Reviews Section */
.reviews-section {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(15, 15, 30, 0.98), rgba(10, 11, 15, 0.98));
}

.reviews-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	margin-bottom: 56px;
}

.logo-large {
	font-size: 44px;
	font-weight: 800;
	letter-spacing: 2px;
	color: white;
}

.logo-large span {
	color: var(--color-purple);
}

.rating-header {
	display: flex;
	align-items: center;
	gap: 48px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 20px 40px;
}

.rating-score {
	text-align: center;
}

.rating-number-large {
	font-size: 48px;
	font-weight: 800;
	color: white;
}

.rating-stars {
	font-size: 20px;
	color: var(--color-gold);
	margin-top: 4px;
}

.rating-stars i {
	margin: 0 2px;
}

.rating-label {
	text-align: center;
}

.rating-label-text {
	font-size: 18px;
	font-weight: 700;
	color: white;
	margin-bottom: 4px;
}

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

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-bottom: 56px;
}

@media (max-width: 1400px) {
	.reviews-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 1200px) {
	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.reviews-grid {
		grid-template-columns: 1fr;
	}
}

.review-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(124, 80, 255, 0.15);
	border-radius: 20px;
	padding: 24px;
	position: relative;
	transition: all 0.4s ease;
}

.review-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(124, 80, 255, 0.12);
	border-color: rgba(124, 80, 255, 0.3);
}

.review-top {
	margin-bottom: 20px;
}

.review-user {
	display: flex;
	align-items: center;
	gap: 16px;
}

.user-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(124, 80, 255, 0.3), rgba(124, 80, 255, 0.1));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-weight: 800;
	font-size: 20px;
	overflow: hidden;
}

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

.rank-icon {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20px;
	height: 20px;
	background: var(--color-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: #0a0b0f;
}

.user-details {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.user-name {
	font-weight: 800;
	font-size: 15px;
}

.user-rank {
	display: flex;
	gap: 8px;
	align-items: center;
}

.rank-badge {
	background: rgba(124, 80, 255, 0.15);
	border: 1px solid rgba(124, 80, 255, 0.4);
	color: var(--color-purple);
	padding: 4px 10px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 11px;
}

.service-type {
	color: var(--color-muted);
	font-size: 12px;
}

.review-text {
	color: rgba(200, 198, 212, 0.95);
	font-size: 15px;
	line-height: 1.7;
}

.review-quote {
	position: absolute;
	right: 20px;
	bottom: 16px;
	color: rgba(124, 80, 255, 0.25);
	font-size: 32px;
}

.trust-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(124, 80, 255, 0.2);
	border-radius: 24px;
	padding: 36px 40px;
}

@media (max-width: 1024px) {
	.trust-bar {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
}

@media (max-width: 640px) {
	.trust-bar {
		grid-template-columns: 1fr;
	}
}

.trust-item {
	display: flex;
	gap: 16px;
	align-items: center;
}

.trust-icon {
	width: 60px;
	height: 60px;
	border: 2px solid rgba(124, 80, 255, 0.35);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-purple);
	font-size: 26px;
	background: rgba(124, 80, 255, 0.05);
	transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
	transform: scale(1.1) rotate(5deg);
	background: rgba(124, 80, 255, 0.15);
	border-color: var(--color-purple);
}

.trust-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.trust-title {
	font-weight: 800;
	font-size: 17px;
}

.trust-desc {
	color: var(--color-muted);
	font-size: 13px;
}

/* SEO Content Section (Tag + Title) */
.seo-section:first-of-type {
	padding: 70px 0 80px;
	text-align: center;
	background: rgba(0, 0, 0, 0.2);
}

.seo-section:first-of-type .container {
	max-width: 1200px;
	margin: 0 auto;
}

.seo-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 24px;
	background: linear-gradient(135deg, rgba(255,193,66,0.25) 0%, rgba(212,175,55,0.25) 100%);
	color: #ffc142;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 18px;
	font-family: 'Rajdhani', sans-serif;
}

.seo-section:first-of-type .seo-title {
	font-size: 32px;
	font-weight: 800;
	color: white;
	line-height: 1.25;
	font-family: 'Rajdhani', sans-serif;
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
}

/* SEO Heading Section */
.seo-heading {
	margin: 80px 0;
	text-align: center;
}

.seo-heading .container {
	max-width: 900px;
	margin: 0 auto;
}

.seo-heading .seo-tag {
	margin-bottom: 16px;
}

/* Home Page Description Section */
.description-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.description-bg-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.description-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.15;
	filter: blur(20px);
}



/* SEO Section (Scrolling Content) */
.seo-section:last-of-type {
	position: relative;
	padding: 40px 0 80px;
	background: linear-gradient(135deg, rgba(15, 15, 30, 0.98), rgba(10, 11, 15, 0.98));
	text-align: left;
	overflow: hidden;
}

.seo-section:last-of-type::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-image: url('../images/prince-bg.png');
	background-size: cover;
	background-position: center;
	opacity: 0.12;
	filter: blur(8px);
	pointer-events: none;
	z-index: 0;
}

.seo-section:last-of-type .container {
	position: relative;
	z-index: 1;
}

/* Home Page Description Section */
.description-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.description-bg-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.description-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.15;
	filter: blur(20px);
}

.description-section .container {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
}

.description-text p {
	font-family: 'Inter', sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: rgba(232, 230, 240, 0.9);
	margin: 0;
	text-align: left;
	background: rgba(0, 0, 0, 0.3);
	padding: 32px;
	border-radius: 16px;
	backdrop-filter: blur(10px);
}

.seo-section:last-of-type .container {
	max-width: 1100px;
	margin: 0 auto;
}

.seo-box {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(124, 80, 255, 0.15);
	border-radius: 24px;
	padding: 48px;
	max-height: 550px;
	overflow-y: auto;
	text-align: left;
}

.seo-box::-webkit-scrollbar {
	width: 10px;
}

.seo-box::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 4px;
}

.seo-box::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--color-purple), var(--color-purple-light));
	border-radius: 4px;
}

.seo-content {
	text-align: left;
}

.seo-content h3 {
	font-size: 24px;
	margin-bottom: 12px;
	margin-top: 28px;
	color: var(--color-gold);
	font-weight: 700;
	text-align: left;
}

.seo-content h3:first-child {
	margin-top: 0;
}

.seo-content p {
	color: rgba(232, 230, 240, 0.9);
	margin-bottom: 24px;
	line-height: 1.8;
	font-size: 17px;
	text-align: left;
}

/* Footer Styles */
.site-footer {
	background: #0a0b0f;
	border-top: 1px solid rgba(124, 80, 255, 0.15);
	padding: 70px 0 36px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 64px;
	margin-bottom: 48px;
	align-items: start;
}

@media (max-width: 992px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.footer-logo-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-logo {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -1px;
}

.footer-logo span {
	color: var(--color-purple);
}

.footer-tagline {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.7;
}

.footer-links-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

@media (max-width: 576px) {
	.footer-links-section {
		grid-template-columns: 1fr;
	}
}

.footer-column h3 {
	font-size: 16px;
	margin-bottom: 20px;
	color: var(--color-purple);
	font-weight: 800;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-column a {
	color: rgba(232, 230, 240, 0.9);
	transition: all 0.3s ease;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.footer-column a:hover {
	color: var(--color-purple);
	transform: translateX(4px);
}

.footer-copyright {
	text-align: center;
	color: var(--color-muted);
	padding-top: 32px;
	border-top: 1px solid rgba(124, 80, 255, 0.15);
	font-size: 14px;
	font-weight: 500;
}

/* Responsive Header */
@media (max-width: 1024px) {
	.header-container {
		flex-wrap: wrap;
		gap: 20px;
		padding: 20px 24px;
	}
	
	.main-nav {
		width: 100%;
		order: 3;
	}
	
	.main-nav ul {
		justify-content: center;
		flex-wrap: wrap;
		gap: 24px;
	}
}

@media (max-width: 640px) {
	.logo {
		font-size: 28px;
	}
	
	.header-actions {
		gap: 12px;
	}
	
	.login-btn {
		padding: 10px 20px;
		font-size: 13px;
	}
	
	.hero-title {
		font-size: 48px;
	}
	
	.hero-subtitle {
		font-size: 18px;
	}
}

/* Page Heading Section */
.page-heading-section {
	padding: 80px 0 40px;
	text-align: center;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border: 1px solid rgba(255,255,255,0.15);
	background: rgba(255,255,255,0.03);
	border-radius: 100px;
	margin-bottom: 30px;
	color: rgba(255,255,255,0.8);
	font-size: 15px;
	backdrop-filter: blur(10px);
}

.hero-tag svg {
	color: #ffc142;
}

.hero-main-title {
	font-size: 60px;
	font-weight: 900;
	color: white;
	margin-bottom: 24px;
	line-height: 1.1;
	font-family: 'Rajdhani', sans-serif;
}

.hero-main-title .highlight {
	background: linear-gradient(90deg, #ffc142 0%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 24px;
	color: rgba(255,255,255,0.6);
	line-height: 1.4;
	font-weight: 400;
}

/* Blog Section */
.blog-section {
	padding: 60px 0;
}

.section-title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 12px;
	font-family: 'Rajdhani', sans-serif;
}

.section-subtitle {
	font-size: 16px;
	text-align: center;
	color: var(--color-muted);
	margin-bottom: 48px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

.blog-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(124, 80, 255, 0.15);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(124, 80, 255, 0.12);
	border-color: rgba(124, 80, 255, 0.3);
}

.blog-thumbnail {
	width: 100%;
	aspect-ratio: 16/9;
	background: rgba(124, 80, 255, 0.1);
}

.blog-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.no-thumbnail {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(124, 80, 255, 0.1), rgba(240, 165, 0, 0.05));
}

.blog-content {
	padding: 24px;
}

.blog-category {
	display: inline-block;
	background: rgba(124, 80, 255, 0.15);
	color: var(--color-purple);
	padding: 4px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.blog-title {
	font-size: 22px;
	margin-bottom: 12px;
	font-weight: 800;
	font-family: 'Rajdhani', sans-serif;
}

.blog-title a {
	color: var(--color-text);
	text-decoration: none;
	transition: all 0.3s ease;
}

.blog-title a:hover {
	color: var(--color-purple);
}

.blog-excerpt {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 12px;
}

.blog-date {
	color: var(--color-muted);
	font-size: 13px;
}

.view-all-posts {
	text-align: center;
	margin-top: 48px;
}

.view-all-posts a {
	display: inline-block;
	background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
	color: white;
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(124, 80, 255, 0.3);
}

.view-all-posts a:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(124, 80, 255, 0.4);
}

@media (max-width: 1024px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.page-heading {
		font-size: 36px;
	}
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* Checkout Page Styles */
.checkout-page {
	min-height: 80vh;
	padding: 60px 20px;
	background: #0a0b0f;
}

.checkout-container {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 32px;
	align-items: start;
}

.checkout-order-summary {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 24px;
	position: sticky;
	top: 100px;
}

.checkout-order-summary h3 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 20px;
	color: white;
	margin-bottom: 16px;
}

#checkout-order-details {
	font-size: 14px;
	color: #9994b0;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.checkout-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.checkout-total-row span:first-child {
	font-size: 14px;
	color: #5c5878;
}

.checkout-total-row span:last-child {
	font-family: 'Rajdhani', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: white;
}

.checkout-payment-section {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 32px;
}

.checkout-payment-section h2 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 24px;
	color: white;
	margin-bottom: 24px;
}

#payment-element {
	margin-bottom: 24px;
}

.pay-btn {
	background: linear-gradient(135deg, #7c50ff, #9b7fff);
	border: none;
	border-radius: 8px;
	padding: 12px;
	color: white;
	font-weight: 700;
	font-size: 16px;
	width: 100%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 16px;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
}

.pay-btn:hover {
	background: linear-gradient(135deg, #9b7fff, #7c50ff);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(124,80,255,0.3);
}

.pay-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.payment-error {
	background: rgba(231,76,60,0.1);
	border: 1px solid rgba(231,76,60,0.3);
	color: #e74c3c;
	padding: 12px;
	border-radius: 8px;
	font-size: 13px;
	margin-bottom: 16px;
	font-family: 'Inter', sans-serif;
}

.secure-badge {
	text-align: center;
	font-size: 12px;
	color: #4a4768;
	font-family: 'Inter', sans-serif;
}

.checkout-error {
	text-align: center;
	padding: 60px;
	color: #5c5878;
	font-family: 'Inter', sans-serif;
}

.checkout-error a {
	color: #7c50ff;
	text-decoration: none;
	font-weight: 600;
}

@media (max-width: 900px) {
	.checkout-container {
		grid-template-columns: 1fr;
	}

	.checkout-order-summary {
		position: static;
		order: -1;
	}
}

/* Rating Pill */
.rating-pill {
	display: flex;
	align-items: center;
	gap: 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 16px 32px;
}

.rating-pill-left {
	flex: 1;
}

.rating-pill .rating-label {
	color: var(--color-text);
	font-weight: 700;
	font-size: 15px;
}

.rating-pill .stars-large {
	font-size: 18px;
	color: var(--color-gold);
	margin: 4px 0;
}

.rating-pill .reviews-count {
	color: var(--color-muted);
	font-size: 13px;
}

.rating-pill-right {
	font-size: 32px;
	font-weight: 800;
	color: var(--color-gold);
}

/* Reviews Brand */
.reviews-brand {
	display: flex;
	align-items: center;
	gap: 16px;
}

.reviews-brand-icon {
	font-size: 40px;
	color: var(--color-purple);
}

/* Overall Stars */
.overall-stars {
	text-align: center;
}

.overall-stars-row {
	font-size: 24px;
	color: var(--color-gold);
	margin-bottom: 8px;
}

.overall-stars-text {
	color: var(--color-text);
	font-size: 16px;
}

/* How It Works Styles (continued) — legacy helpers removed; see section above */

/* Contact Page Responsive */
@media (max-width: 992px) {
	.contact-content {
		grid-template-columns: 1fr !important;
	}
}

/* Testimonial Masonry Styles */
.testimonial-masonry {
	padding: 80px 0;
}

.masonry-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.masonry-item {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.testimonial-mini {
	background: rgba(124, 80, 255, 0.05);
	border: 1px solid rgba(124, 80, 255, 0.15);
	border-radius: 16px;
	padding: 24px;
}

.testimonial-mini .stars {
	color: var(--color-purple);
	margin-bottom: 12px;
	font-size: 14px;
}

.testimonial-mini p {
	color: var(--color-text);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.testimonial-mini-author {
	color: var(--color-muted);
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 992px) {
	.masonry-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.masonry-grid {
		grid-template-columns: 1fr;
	}
}

/* ======================================
   CONTACT PAGE - 1v9 STYLE
   ====================================== */

.contact-hero {
	padding: 120px 0 80px;
	text-align: center;
}

.contact-hero-content {
	max-width: 900px;
	margin: 0 auto;
}

.contact-hero-title {
	font-size: 56px;
	font-weight: 800;
	font-family: 'Rajdhani', sans-serif;
	background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
}

.contact-hero-subtitle {
	font-size: 20px;
	color: var(--color-muted);
	font-weight: 600;
	margin-bottom: 16px;
}

.contact-hero-description {
	font-size: 18px;
	color: var(--color-text);
	line-height: 1.7;
	margin-bottom: 36px;
}

.contact-hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 10px;
	font-weight: 800;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-btn.chat-btn {
	background: var(--color-purple);
	color: white;
	box-shadow: 0 4px 20px rgba(124, 80, 255, 0.3);
}

.contact-btn.chat-btn:hover {
	background: var(--color-purple-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(124, 80, 255, 0.4);
}

.contact-btn.discord-btn {
	background: #5865f2;
	color: white;
	box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.contact-btn.discord-btn:hover {
	background: #4752c4;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.contact-faq {
	padding: 40px 0 80px;
}

.contact-testimonials {
	padding: 80px 0 120px;
}

.contact-section-title {
	text-align: center;
	font-size: 40px;
	font-weight: 800;
	font-family: 'Rajdhani', sans-serif;
	margin-bottom: 48px;
}

.contact-section-title span {
	color: var(--color-purple);
}

.contact-faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.contact-faq-item {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(124, 80, 255, 0.1);
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.contact-faq-item:hover {
	border-color: rgba(124, 80, 255, 0.3);
}

.contact-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	font-weight: 700;
	font-size: 17px;
	color: var(--color-text);
	transition: all 0.3s ease;
}

.contact-faq-question:hover {
	color: var(--color-purple);
}

.contact-faq-question i {
	transition: transform 0.3s ease;
	color: var(--color-muted);
}

.contact-faq-item.active .contact-faq-question i {
	transform: rotate(180deg);
}

.contact-faq-answer {
	padding: 0 24px 20px;
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.7;
	display: none;
}

.contact-faq-item.active .contact-faq-answer {
	display: block;
}

.contact-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.contact-testimonial-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(124, 80, 255, 0.1);
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
}

.contact-testimonial-card:hover {
	border-color: rgba(124, 80, 255, 0.3);
	transform: translateY(-4px);
}

.contact-testimonial-card p {
	color: var(--color-text);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 12px;
}

.contact-testimonial-author {
	color: var(--color-muted);
	font-size: 14px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.contact-hero-title {
		font-size: 38px;
	}
	.contact-hero-description {
		font-size: 16px;
	}
	.contact-section-title {
		font-size: 28px;
	}
	.contact-faq-question {
		font-size: 15px;
		padding: 16px;
	}
	.contact-faq-answer {
		padding: 0 16px 16px;
		font-size: 14px;
	}
}

/* Reviews Page New Styles */
.reviews-hero {
	padding: 100px 0 60px;
	text-align: center;
}

.reviews-hero-title {
	font-size: 48px;
	font-weight: 800;
	font-family: 'Rajdhani', sans-serif;
	margin-bottom: 12px;
}

.reviews-hero-title span {
	color: var(--color-purple);
	background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.reviews-hero-subtitle {
	color: var(--color-muted);
	font-size: 18px;
	margin-bottom: 24px;
}

.reviews-hero-rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.reviews-hero-stars {
	display: flex;
	gap: 4px;
	color: var(--color-gold);
	font-size: 22px;
}

.reviews-hero-score {
	font-size: 20px;
	color: var(--color-text);
	font-weight: 700;
}

.reviews-hero-count {
	color: var(--color-muted);
	font-weight: 400;
}

.reviews-grid-section {
	padding: 40px 0 100px;
}

.reviews-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.review-card-new {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(124, 80, 255, 0.08);
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
}

.review-card-new:hover {
	border-color: rgba(124, 80, 255, 0.2);
}

.review-stars {
	color: var(--color-gold);
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
	font-size: 16px;
}

.review-text-new {
	color: var(--color-text);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.review-user-section {
	display: flex;
	align-items: center;
	gap: 12px;
}

.user-avatar-new {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
}

.user-avatar-new img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.user-details-new {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.user-name-new {
	color: var(--color-text);
	font-weight: 700;
	font-size: 15px;
}

.user-country-new {
	color: var(--color-muted);
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.country-flag {
	font-size: 14px;
}

@media (max-width: 1024px) {
	.reviews-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.reviews-cards-grid {
		grid-template-columns: 1fr;
	}
	.reviews-hero-title {
		font-size: 36px;
	}
}

/* Currency Switcher */
.currency-switcher {
	position: relative;
}
.currency-toggle {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	color: #e8e6f0;
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.currency-toggle:hover {
	border-color: rgba(124,80,255,0.4);
	background: rgba(124,80,255,0.08);
}
.currency-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: #0a0b0f;
	border: 1px solid rgba(124,80,255,0.2);
	border-radius: 10px;
	padding: 8px;
	min-width: 200px;
	display: none;
	z-index: 999;
	box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.currency-switcher.open .currency-dropdown {
	display: block;
}
.currency-option {
	display: block;
	width: 100%;
	background: transparent;
	border: none;
	color: #9994b0;
	padding: 9px 12px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
	font-family: 'Inter', sans-serif;
	transition: all 0.2s;
}
.currency-option:hover {
	background: rgba(124,80,255,0.1);
	color: #fff;
}
.currency-option.active {
	color: #7c50ff;
	font-weight: 700;
	background: rgba(124,80,255,0.08);
}

/* ======================================
   NEW CHECKOUT PAGE
   ====================================== */
.checkout-page-new {
	min-height: 100vh;
	padding: 60px 20px;
	background: var(--color-bg);
}

.checkout-container-new {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 32px;
	align-items: start;
}

.checkout-card {
	background: var(--color-card-bg);
	border: 1px solid var(--color-card-border);
	border-radius: 12px;
	padding: 28px;
}

.checkout-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.checkout-right {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.amount-due-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.amount-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-muted);
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.currency-selector {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	padding: 6px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
}

.amount-due-value {
	font-size: 40px;
	font-weight: 800;
	color: var(--color-text);
	font-family: 'Rajdhani', sans-serif;
	margin-bottom: 32px;
}

.payment-method-section {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 28px;
}

.section-heading {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text);
	font-family: 'Rajdhani', sans-serif;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.payment-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border: 2px solid var(--color-card-border);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.payment-option.active {
	border-color: var(--color-purple);
	background: rgba(124,80,255,0.08);
}

.payment-option-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.stripe-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #635bff 0%, #7c50ff 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	color: white;
	font-family: 'Rajdhani', sans-serif;
}

.payment-option-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.payment-option-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
}

.payment-option-subtitle {
	font-size: 13px;
	color: var(--color-muted);
	font-family: 'Inter', sans-serif;
}

.payment-option-right {
	display: flex;
	align-items: center;
}

.processing-fee-badge {
	background: rgba(255,255,255,0.06);
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
}

/* Order Item */
.order-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.order-item-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: rgba(124,80,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.order-item-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.order-item-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.order-item-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text);
	font-family: 'Rajdhani', sans-serif;
}

.order-item-subtitle {
	font-size: 13px;
	color: var(--color-muted);
	font-family: 'Inter', sans-serif;
}

.order-item-delete {
	background: transparent;
	border: none;
	color: var(--color-muted);
	padding: 8px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.order-item-delete:hover {
	background: rgba(231,76,60,0.1);
	color: #e74c3c;
}

/* Order Summary Card */
.order-summary-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Inter', sans-serif;
}

.summary-label {
	font-size: 14px;
	color: var(--color-muted);
}

.summary-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
}

.summary-divider {
	height: 1px;
	background: rgba(255,255,255,0.08);
	margin: 8px 0;
}

.total-row {
	margin-top: 8px;
	margin-bottom: 24px;
}

.total-left {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.total-label {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text);
	font-family: 'Rajdhani', sans-serif;
}

.total-strikethrough {
	font-size: 13px;
	color: var(--color-muted);
	text-decoration: line-through;
	font-family: 'Inter', sans-serif;
}

.total-final {
	font-size: 22px;
	font-weight: 800;
	color: var(--color-purple);
	font-family: 'Rajdhani', sans-serif;
}

/* Payment Element Wrapper */
.payment-element-wrapper {
	margin-bottom: 20px;
}

/* New Pay Button */
.pay-btn-new {
	width: 100%;
	background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
	color: white;
	border: none;
	padding: 16px 24px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.pay-btn-new:hover:not(:disabled) {
	background: linear-gradient(135deg, var(--color-purple-light), var(--color-purple));
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(124,80,255,0.3);
}

.pay-btn-new:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.btn-arrow {
	transition: transform 0.2s ease;
}

.pay-btn-new:hover:not(:disabled) .btn-arrow {
	transform: translateX(4px);
}

.btn-spinner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.spinner {
	width: 20px;
	height: 20px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Payment Error */
.payment-error-new {
	background: rgba(231,76,60,0.1);
	border: 1px solid rgba(231,76,60,0.3);
	color: #e74c3c;
	padding: 12px;
	border-radius: 8px;
	font-size: 13px;
	margin-top: 12px;
	font-family: 'Inter', sans-serif;
}

/* Secure Badge New */
.secure-badge-new {
	background: var(--color-card-bg);
	border: 1px solid var(--color-card-border);
	border-radius: 12px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.secure-icon {
	width: 44px;
	height: 44px;
	background: rgba(124,80,255,0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-purple);
}

.secure-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.secure-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text);
	font-family: 'Rajdhani', sans-serif;
}

.secure-subtitle {
	font-size: 12px;
	color: var(--color-muted);
	font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
	.checkout-container-new {
		grid-template-columns: 1fr;
	}
	
	.checkout-right {
		order: -1;
	}
}

@media (max-width: 600px) {
	.checkout-page-new {
		padding: 40px 16px;
	}
	
	.amount-due-value {
		font-size: 32px;
	}
	
	.checkout-card {
		padding: 20px;
	}
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	background: #0a0b0f;
}

.thankyou-wrapper {
	max-width: 560px;
	width: 100%;
	text-align: center;
}

.thankyou-icon-wrap {
	margin-bottom: 28px;
}

.thankyou-circle {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #7c50ff, #9068ff);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 0 40px rgba(124,80,255,0.3);
	animation: thankyou-pulse 2s ease-in-out infinite;
}

@keyframes thankyou-pulse {
	0%, 100% { box-shadow: 0 0 40px rgba(124,80,255,0.3); }
	50% { box-shadow: 0 0 60px rgba(124,80,255,0.5); }
}

.thankyou-title {
	font-family: 'Rajdhani', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.2;
}

.thankyou-subtitle {
	font-size: 16px;
	color: #5c5878;
	margin-bottom: 28px;
	line-height: 1.6;
}

.thankyou-order-ref {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(124,80,255,0.1);
	border: 1px solid rgba(124,80,255,0.2);
	padding: 10px 20px;
	border-radius: 8px;
	margin-bottom: 36px;
}

.thankyou-ref-label {
	font-size: 13px;
	color: #5c5878;
}

.thankyou-ref-value {
	font-family: 'Rajdhani', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #7c50ff;
	letter-spacing: 1px;
}

.thankyou-steps {
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 32px;
	text-align: left;
}

.thankyou-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.thankyou-step:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.thankyou-step:first-child {
	padding-top: 0;
}

.thankyou-step-icon {
	font-size: 22px;
	flex-shrink: 0;
	width: 36px;
	text-align: center;
}

.thankyou-step-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.thankyou-step-text strong {
	font-size: 14px;
	font-weight: 600;
	color: #d4cfed;
}

.thankyou-step-text span {
	font-size: 13px;
	color: #4a4768;
}

.thankyou-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.thankyou-btn-primary {
	background: #7c50ff;
	color: #fff;
	padding: 13px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
	display: inline-block;
}

.thankyou-btn-primary:hover {
	background: #9068ff;
	color: #fff;
}

.thankyou-btn-secondary {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	color: #9994b0;
	padding: 13px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	display: inline-block;
}

.thankyou-btn-secondary:hover {
	background: rgba(255,255,255,0.08);
	color: #fff;
}

.thankyou-support {
	font-size: 13px;
	color: #3a384f;
}

.thankyou-support a {
	color: #7c50ff;
	text-decoration: none;
}

.thankyou-support a:hover {
	color: #9068ff;
}

@media (max-width: 480px) {
	.thankyou-title { font-size: 28px; }
	.thankyou-actions { flex-direction: column; }
	.thankyou-btn-primary,
	.thankyou-btn-secondary { width: 100%; text-align: center; }
}
