/* Service Page Styles */
.lol-boost-page {
	background-color: #0d0e17;
	min-height: 100vh;
}

/* Service Tabs */
.service-tabs-container {
	background-color: rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(124,80,255,0.08);
}
.service-tabs {
	display: flex;
	gap: 12px;
	padding: 24px 0;
	overflow-x: auto;
}
.service-tab {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border-radius: 10px;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: rgba(232,230,240,0.6);
	background-color: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.06);
	transition: all 0.25s ease;
	text-decoration: none;
	white-space: nowrap;
}
.service-tab:hover {
	background-color: rgba(124,80,255,0.06);
	border-color: rgba(124,80,255,0.2);
	color: var(--color-purple);
}
.service-tab.active {
	background: linear-gradient(135deg, rgba(124,80,255,0.15) 0%, rgba(124,80,255,0.05) 100%);
	border: 1px solid rgba(124,80,255,0.4);
	color: white;
	box-shadow: 0 0 0 1px rgba(124,80,255,0.3), inset 0 0 24px rgba(124,80,255,0.1);
}
.tab-icon {
	font-size: 18px;
}
.tab-label {
	text-transform: none;
	letter-spacing: 0.2px;
}

/* Calculator Layout */
.calculator-container {
	padding: 40px 0;
}
.service-layout {
	display: grid;
	grid-template-columns: 64% 36%;
	gap: 32px;
}
.calculator-side {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.checkout-side {
	display: flex;
}

/* Rank Section */
.rank-section {
	background-color: rgba(13,14,23,0.8);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 28px;
}
.section-header {
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.section-title {
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: white;
	margin: 0;
}
.section-subtitle {
	color: rgba(232,230,240,0.5);
	font-size: 14px;
	margin: 0;
}

/* Rank Grid */
.rank-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}
.rank-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px 10px;
	border-radius: 12px;
	background-color: rgba(255,255,255,0.015);
	border: 2px solid rgba(255,255,255,0.04);
	cursor: pointer;
	transition: all 0.2s ease;
}
.rank-item:hover {
	background-color: rgba(124,80,255,0.05);
	border-color: rgba(124,80,255,0.15);
}
.rank-item.active {
	background: rgba(124,80,255,0.08);
	border-color: rgba(124,80,255,0.5);
	box-shadow: 0 0 0 1px rgba(124,80,255,0.2), inset 0 0 20px rgba(124,80,255,0.05);
}
.rank-grid .rank-icon,
.section-header .rank-icon {
	position: static !important;
	width: 48px !important;
	height: 48px !important;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
	border-radius: 0 !important;
	background: transparent !important;
	display: block !important;
}
.rank-name {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 13px;
	color: rgba(232,230,240,0.7);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/* Division Container */
.division-container {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
}
.division-item {
	flex: 1;
	padding: 12px;
	border-radius: 10px;
	border: 2px solid rgba(255,255,255,0.05);
	background-color: rgba(255,255,255,0.015);
	color: rgba(232,230,240,0.7);
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 17px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
}
.division-item:hover {
	background-color: rgba(124,80,255,0.05);
	border-color: rgba(124,80,255,0.15);
}
.division-item.active {
	background: rgba(255,255,255,0.05);
	border-color: rgba(255,255,255,0.15);
	color: white;
}

/* Options Row */
.options-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.option-select {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.option-select label {
	color: rgba(232,230,240,0.6);
	font-weight: 500;
	font-size: 13px;
	text-transform: none;
	letter-spacing: 0;
}
.option-select select {
	padding: 12px 14px;
	border-radius: 10px;
	background-color: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.05);
	color: rgba(232,230,240,0.85);
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.25s ease;
	font-family: 'Inter', sans-serif;
}
.option-select select:hover,
.option-select select:focus {
	border-color: rgba(124,80,255,0.25);
	outline: none;
}

/* Checkout Box */
.checkout-box {
	background: rgba(13,14,23,0.9);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.sticky {
	position: sticky;
	top: 100px;
	align-self: flex-start;
	width: 100%;
}
.checkout-title {
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin: 0 0 6px;
	text-align: center;
}
.checkout-subtitle {
	color: rgba(232,230,240,0.5);
	font-size: 14px;
	margin: 0 0 24px;
	text-align: center;
}

/* Checkout Summary */
.checkout-summary {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.selected-ranks {
	padding: 14px;
	background-color: transparent;
	border: none;
	color: white;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
}

/* Extra Options */
.extra-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}
.extra-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	background-color: transparent;
	border-radius: 0;
}
.option-info {
	display: flex;
	align-items: center;
	gap: 8px;
}
.option-name {
	font-weight: 500;
	font-size: 15px;
	color: rgba(232,230,240,0.85);
}
.option-price {
	font-weight: 700;
	font-size: 12px;
	color: #a855f7;
	font-family: 'Inter', sans-serif;
	padding: 3px 8px;
	border-radius: 6px;
	background: rgba(168,85,247,0.1);
}
.option-price.free {
	color: #22c55e;
	background: rgba(34,197,94,0.1);
}

/* Toggle Switch */
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 26px;
}
.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.1);
	transition: all 0.3s ease;
	border-radius: 999px;
}
.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: all 0.3s ease;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .slider {
	background: linear-gradient(135deg, #a855f7 0%, #7c50ff 100%);
	box-shadow: 0 0 12px rgba(124,80,255,0.3);
}
.toggle-switch input:checked + .slider:before {
	transform: translateX(22px);
}

/* Price Container */
.price-container {
	margin-bottom: 20px;
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-top: 1px solid rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.05);
	margin-bottom: 20px;
}
.price-strike {
	font-size: 18px;
	font-weight: 700;
	color: rgba(232,230,240,0.3);
	text-decoration: line-through;
	font-family: 'Inter', sans-serif;
	display: inline-block;
}
.price-final {
	font-size: 26px;
	font-weight: 700;
	color: white;
	font-family: 'Inter', sans-serif;
}

/* Buy Now Button */
.buy-now-btn {
	width: 100%;
	padding: 16px;
	border-radius: 12px;
	background: linear-gradient(135deg, #a855f7 0%, #7c50ff 100%);
	color: white;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-transform: none;
	letter-spacing: 0;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 12px;
}
.buy-now-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(124,80,255,0.4);
}

/* Secure Payment */
.secure-payment {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: rgba(232,230,240,0.5);
	font-weight: 500;
	font-size: 13px;
	display: none;
}

/* Rank Price */
.rank-price {
	font-size: 11px;
	color: #7c50ff;
	font-weight: 600;
	margin-top: 4px;
}

.rank-item.active .rank-price {
	color: white;
}

/* Placement Slider */
.placement-slider-section {
	margin: 0;
}

.slider-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
}

.slider-value-circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(255,255,255,0.03);
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-value-circle #counter-display {
	font-family: 'Rajdhani', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #fff;
}

.slider-text h3 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px 0;
}

.slider-text p {
	font-size: 16px;
	color: rgba(232,230,240,0.7);
	margin: 0;
}

.slider-wrapper {
	padding: 0;
}

.placement-slider {
	width: 100%;
	height: 24px;
	-webkit-appearance: none;
	appearance: none;
	background: rgba(255,255,255,0.03);
	border-radius: 12px;
	outline: none;
	cursor: pointer;
	border: 1px solid rgba(124,80,255,0.2);
	background: linear-gradient(
		to right,
		#7c50ff 0%,
		#7c50ff calc((var(--val, 1) - 1) / 4 * 100%),
		rgba(255,255,255,0.03) calc((var(--val, 1) - 1) / 4 * 100%),
		rgba(255,255,255,0.03) 100%
	);
}

.placement-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #7c50ff;
	cursor: pointer;
	box-shadow: 0 0 0 0 rgba(124,80,255,0.2);
	transition: all 0.2s;
}

.placement-slider::-webkit-slider-thumb:hover {
	box-shadow: 0 0 0 8px rgba(124,80,255,0.2);
}

.placement-slider::-moz-range-thumb {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #7c50ff;
	cursor: pointer;
	border: none;
}

/* Rank Item Hover Tooltip */
.rank-item {
	position: relative;
}

.rank-hover-tooltip {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0,0,0,0.9);
	color: white;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 600;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	white-space: nowrap;
	z-index: 10;
}

.rank-item:hover .rank-hover-tooltip {
	opacity: 1;
	visibility: visible;
	top: -45px;
}

.rank-item .rank-name,
.rank-item .rank-price {
	display: none;
}

/* 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;
}

.description-section .seo-box {
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(124, 80, 255, 0.25);
	backdrop-filter: blur(15px);
}

.description-section .seo-content h3 {
	font-family: 'Rajdhani', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: var(--color-gold);
	margin-bottom: 12px;
	margin-top: 28px;
}

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

.description-section .seo-content p {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(232, 230, 240, 0.92);
	margin-bottom: 16px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.service-layout {
		grid-template-columns: 1fr;
	}
	.sticky {
		position: static;
	}
}

@media (max-width: 768px) {
	.rank-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.options-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.description-section {
		padding: 60px 0;
	}

	.description-section .seo-content h3 {
		font-size: 22px;
	}

	.description-section .seo-content p {
		font-size: 15px;
	}

	.description-section .seo-box {
		padding: 32px;
	}
}

@media (max-width: 480px) {
	.rank-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.options-row {
		grid-template-columns: 1fr;
	}
	.service-tabs {
		padding: 16px 0;
	}
	.rank-section,
	.checkout-box {
		padding: 24px;
	}
	.slider-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.slider-value-circle {
		width: 80px;
		height: 80px;
	}
	.slider-value-circle #counter-display {
		font-size: 36px;
	}
	.slider-text h3 {
		font-size: 24px;
	}
	.placement-slider::-webkit-slider-thumb {
		width: 48px;
		height: 48px;
	}
}
