/* Root Variables */
:root {
	--color-bg: #0a0b0f;
	--color-purple: #7c50ff;
	--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);
}

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

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
}

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

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

a:hover {
	color: #9b7fff;
}

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

/* Header Styles */
.site-header {
	background-color: rgba(10, 11, 15, 0.98);
	position: sticky;
	top: 0;
	z-index: 1000;
}

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

.logo {
	font-family: 'Rajdhani', sans-serif;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

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

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

.nav-item {
	position: relative;
}

.dropdown-toggle {
	color: var(--color-text);
	font-weight: 600;
	cursor: pointer;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(15, 15, 20, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 10px 0;
	min-width: 220px;
	display: none;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	margin-top: 8px;
}

.nav-item:hover .dropdown-menu {
	display: block;
}

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

.dropdown-menu li a:hover {
	background-color: rgba(124, 80, 255, 0.1);
	color: var(--color-purple);
}

.main-nav ul li a {
	color: var(--color-text);
	font-weight: 600;
	font-size: 14px;
}

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

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

.switchers {
	display: flex;
	gap: 4px;
}

.switchers span {
	color: var(--color-text);
	font-weight: 600;
	font-size: 14px;
	opacity: 0.95;
}

.login-btn {
	background-color: transparent;
	color: var(--color-purple);
	padding: 10px 24px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	border: 2px solid var(--color-purple);
	transition: all 0.3s ease;
}

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

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

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

.hero-title {
	font-size: 64px;
	margin-bottom: 12px;
	font-weight: 800;
	line-height: 1.1;
}

.hero-title .highlight {
	color: var(--color-purple);
}

.hero-subtitle {
	font-size: 18px;
	color: var(--color-muted);
	margin-bottom: 60px;
	font-weight: 500;
}

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

.game-cards-section .container {
	max-width: 1200px;
}

.game-cards {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.game-card-wrapper {
	width: 100%;
	max-width: 320px;
}

.game-card {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	border-radius: 16px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.game-card:hover {
	transform: scale(1.03);
}

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

.lol-card {
	background-image: url('../images/lol-card.webp');
}

.valorant-card {
	background-image: url('../images/valorant-card.webp');
}

.tft-card {
	background-image: url('../images/tft-card.webp');
}

.discount-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background-color: #FF4444;
	color: white;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 800;
	font-family: 'Rajdhani', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.card-game-name {
	position: absolute;
	bottom: 16px;
	left: 16px;
	color: white;
	font-size: 20px;
	font-weight: 800;
	font-family: 'Rajdhani', sans-serif;
	z-index: 2;
}

.card-info {
	margin-top: 16px;
	text-align: center;
}

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

.card-btn {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.buy-btn {
	background-color: white;
	color: var(--color-purple);
}

.buy-btn:hover {
	background-color: #f0f0f0;
	transform: scale(1.05);
}

.coming-soon-btn {
	background-color: #555;
	color: #aaa;
	cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.game-cards {
		gap: 24px;
	}
	.game-card-wrapper {
		max-width: 300px;
	}
}

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

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

/* Trustpilot Rating Section */
.trustpilot-section {
	padding: 40px 0 80px;
}

.trustpilot-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.trustpilot-heading {
	font-size: 40px;
	font-weight: 800;
}

.trustpilot-rating {
	display: flex;
	align-items: center;
	gap: 24px;
	background-color: rgba(255,255,255,0.03);
	padding: 24px 32px;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.05);
}

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

.trustpilot-stars .star {
	width: 60px;
	height: 70px;
	background-color: #00B67A;
	display: flex;
	justify-content: center;
	align-items: center;
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.trustpilot-stars .star::after {
	content: '★';
	color: white;
	font-size: 32px;
}

.trustpilot-stars .star.half-star {
	background: linear-gradient(to right, #00B67A 50%, #3A3A3A 50%);
}

.trustpilot-badge {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.badge-text {
	font-weight: 800;
	font-size: 18px;
}

.badge-rating {
	font-size: 16px;
	color: var(--color-muted);
}

.badge-orders {
	font-size: 14px;
	color: var(--color-muted);
}

/* Description Section (SaaS Style) */
.description-section {
	padding: 80px 0;
	background-color: rgba(255, 255, 255, 0.02);
}

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

.description-card {
	background-color: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 32px;
	transition: transform 0.3s ease;
}

.description-card:hover {
	transform: translateY(-8px);
}

.description-card .icon-wrapper {
	font-size: 40px;
	margin-bottom: 20px;
}

.description-card h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.description-card p {
	font-size: 16px;
	color: var(--color-muted);
	line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
	padding: 80px 0;
	background-color: transparent;
}

.how-it-works-section .section-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 60px;
}

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

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

.step-icon {
	font-size: 50px;
	margin-bottom: 20px;
}

.step-item h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.step-item p {
	color: var(--color-muted);
	line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
	padding: 80px 0;
	background-color: rgba(255,255,255,0.02);
}

.reviews-section .section-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 60px;
}

.reviews-carousel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 24px;
}

.review-item {
	background-color: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 32px;
	position: relative;
}

.review-star {
	color: #00FF88;
	font-size: 24px;
	position: absolute;
	top: 20px;
	right: 20px;
}

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

.user-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-purple), #5a30cc);
}

.user-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

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

.user-location {
	font-size: 14px;
	color: var(--color-muted);
}

.review-text {
	color: var(--color-text);
	line-height: 1.6;
	margin-bottom: 16px;
}

.review-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.tag {
	background-color: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	color: var(--color-muted);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 13px;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
}

.faq-section .section-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 48px;
	color: var(--color-gold);
}

.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--color-card-bg);
	border: 1px solid var(--color-card-border);
	border-radius: 12px;
	margin-bottom: 16px;
	overflow: hidden;
}

.faq-question {
	padding: 24px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

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

.faq-icon {
	font-size: 24px;
	transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
	padding: 0 24px 24px 24px;
	max-height: 300px;
}

.faq-answer p {
	color: var(--color-muted);
}

/* How It Works Section */
.how-it-works-section {
	padding: 80px 0;
	background: linear-gradient(180deg, rgba(124, 80, 255, 0.1) 0%, rgba(10, 11, 15, 1) 100%);
}

.how-it-works-section .section-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 60px;
}

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

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

.step-number {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--color-purple);
	color: white;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 36px;
	margin-bottom: 24px;
}

.step-content h3 {
	font-size: 24px;
	margin-bottom: 12px;
}

.step-content p {
	color: var(--color-muted);
	margin-bottom: 24px;
}

.step-btn {
	display: inline-block;
	background-color: white;
	color: var(--color-purple);
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

.step-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 20px rgba(124, 80, 255, 0.3);
}

/* Reviews Section */
.reviews-section {
	padding: 80px 0;
	background-color: rgba(255, 255, 255, 0.02);
}

.reviews-section .section-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 40px;
}

.reviews-header {
	text-align: center;
	margin-bottom: 48px;
}

.logo-large {
	font-family: 'Rajdhani', sans-serif;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 16px;
}

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

.stars-large {
	font-size: 32px;
	margin-bottom: 8px;
}

.rating-text-large {
	font-size: 20px;
	margin-bottom: 4px;
}

.reviews-count {
	color: var(--color-muted);
}

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

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

.reviewer-info {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 16px;
}

.reviewer-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-purple), #9b7fff);
}

.rank-challenger {
	background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.rank-grandmaster {
	background: linear-gradient(135deg, #ff4444, #cc0000);
}

.rank-master {
	background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.rank-diamond {
	background: linear-gradient(135deg, #3498db, #2980b9);
}

.rank-platinum {
	background: linear-gradient(135deg, #1abc9c, #16a085);
}

.rank-gold {
	background: linear-gradient(135deg, #f39c12, #e67e22);
}

.rank-silver {
	background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.rank-bronze {
	background: linear-gradient(135deg, #cd7f32, #8b4513);
}

.rank-iron {
	background: linear-gradient(135deg, #434343, #000000);
}

.reviewer-details {
	display: flex;
	flex-direction: column;
}

.reviewer-name {
	font-weight: 600;
}

.reviewer-rank {
	font-size: 12px;
	color: var(--color-muted);
}

.review-service {
	display: inline-block;
	background-color: rgba(124, 80, 255, 0.1);
	color: var(--color-purple);
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 12px;
	margin-bottom: 12px;
}

.review-text {
	font-size: 14px;
	color: var(--color-muted);
}

.trust-bar {
	display: flex;
	justify-content: center;
	gap: 48px;
	padding: 32px;
	background-color: var(--color-card-bg);
	border: 1px solid var(--color-card-border);
	border-radius: 12px;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.trust-icon {
	font-size: 32px;
}

.trust-label {
	font-weight: 600;
}

/* SEO Section */
.seo-section {
	padding: 80px 0;
}

.seo-box {
	background-color: var(--color-card-bg);
	border: 1px solid var(--color-card-border);
	border-radius: 16px;
	padding: 40px;
	max-height: 400px;
	overflow-y: auto;
}

.seo-title {
	font-size: 28px;
	margin-bottom: 24px;
	color: var(--color-gold);
}

.seo-content h3 {
	font-size: 22px;
	margin-bottom: 12px;
	margin-top: 24px;
	color: var(--color-gold);
}

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

.seo-content p {
	color: var(--color-muted);
	margin-bottom: 16px;
}

/* Blog Section */
.blog-section {
	padding: 80px 0;
	background-color: rgba(255, 255, 255, 0.02);
}

.blog-section .section-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 8px;
}

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

.section-subtitle::after {
	content: '';
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--color-purple);
	border-radius: 2px;
}

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

.blog-card {
	background-color: var(--color-card-bg);
	border: 1px solid var(--color-card-border);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-8px);
}

.blog-thumbnail {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

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

.no-thumbnail {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-purple), #5a30cc);
}

.blog-content {
	padding: 24px;
}

.blog-category {
	display: inline-block;
	background-color: rgba(124, 80, 255, 0.1);
	color: var(--color-purple);
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 12px;
	margin-bottom: 12px;
}

.blog-title {
	font-size: 22px;
	margin-bottom: 12px;
}

.blog-excerpt {
	color: var(--color-muted);
	margin-bottom: 12px;
}

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

.view-all-posts {
	text-align: center;
}

.view-all-posts a {
	display: inline-block;
	border: 1px solid var(--color-card-border);
	color: var(--color-text);
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.view-all-posts a:hover {
	border-color: var(--color-purple);
	color: var(--color-purple);
}

/* Footer Styles */
.site-footer {
	background-color: var(--color-bg);
	border-top: 1px solid var(--color-card-border);
	padding: 48px 0;
	margin-top: 80px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 24px;
}

.footer-logo {
	font-family: 'Rajdhani', sans-serif;
	font-size: 28px;
	font-weight: 700;
}

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

.footer-links {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-links a {
	color: var(--color-text);
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--color-purple);
}

.footer-copyright {
	text-align: center;
	color: var(--color-muted);
	padding-top: 24px;
	border-top: 1px solid var(--color-card-border);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.game-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.steps-container {
		grid-template-columns: 1fr;
	}
	
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.main-nav {
		display: none;
	}
}

@media (max-width: 640px) {
	.hero-title {
		font-size: 36px;
	}
	
	.game-cards {
		grid-template-columns: 1fr;
	}
	
	.reviews-grid {
		grid-template-columns: 1fr;
	}
	
	.blog-grid {
		grid-template-columns: 1fr;
	}
	
	.trust-bar {
		flex-direction: column;
		gap: 24px;
	}
	
	.header-actions {
		gap: 8px;
	}
	
	.switcher-btn {
		padding: 6px 12px;
	}
	
	.footer-content {
		flex-direction: column;
		text-align: center;
	}
}
