/* ==========================================================================
   Gameindir Frontend Auth, Social Login & Profile Management Styles
   ========================================================================== */

/* 1. Header Auth & Profile Dropdown
   ========================================================================== */
.header__auth-wrap,
.header__user-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-left: 15px;
}

.header__auth-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	padding: 0 16px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(167, 130, 233, 0.15), rgba(255, 85, 165, 0.15));
	border: 1px solid rgba(167, 130, 233, 0.4);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header__auth-btn svg {
	width: 16px;
	height: 16px;
	fill: #a782e9;
	transition: transform 0.25s ease;
}

.header__auth-btn:hover {
	background: linear-gradient(135deg, #a782e9, #ff55a5);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 18px rgba(167, 130, 233, 0.4);
	transform: translateY(-1px);
}

.header__auth-btn:hover svg {
	fill: #fff;
	transform: scale(1.1);
}

.header__user-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 40px;
	padding: 0 14px 0 4px;
	border-radius: 20px;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.header__user-btn:hover {
	border-color: rgba(167, 130, 233, 0.4);
	background: #1c2238;
}

.gameindir-header-avatar-img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid rgba(167, 130, 233, 0.5);
}

.header__user-name {
	max-width: 110px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #f1f5f9;
}

.header__user-arrow {
	width: 14px;
	height: 14px;
	fill: #94a3b8;
	transition: transform 0.2s ease;
}

.header__user-wrap:hover .header__user-dropdown {
	display: block !important;
	animation: gameindirDropdownFade 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__user-wrap:hover .header__user-arrow {
	transform: rotate(180deg);
}

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

.header__user-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 6px;
	width: 220px;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	z-index: 1000;
	padding: 10px 0;
}

/* Invisible bridge so mouse never loses hover connection */
.header__user-dropdown::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
	background: transparent;
}

.header__user-dropdown-head {
	padding: 8px 16px 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.header__user-dropdown-title {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}

.header__user-dropdown-email {
	font-size: 11px;
	color: #94a3b8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header__user-dropdown-menu {
	list-style: none;
	padding: 6px 0;
	margin: 0;
}

.header__user-dropdown-menu li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px;
	color: #cbd5e1;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.15s ease;
}

.header__user-dropdown-menu li a svg {
	width: 16px;
	height: 16px;
	fill: #94a3b8;
	transition: fill 0.15s ease;
}

.header__user-dropdown-menu li a:hover {
	background: rgba(167, 130, 233, 0.1);
	color: #a782e9;
}

.header__user-dropdown-menu li a:hover svg {
	fill: #a782e9;
}

.header__user-dropdown-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.06);
	margin: 4px 0;
}


/* 2. Auth Modal Styles
   ========================================================================== */
.gameindir-auth-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.gameindir-auth-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 13, 22, 0.85);
	backdrop-filter: blur(8px);
}

.gameindir-auth-modal__box {
	position: relative;
	width: 100%;
	max-width: 440px;
	max-height: 90vh;
	overflow-y: auto;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 28px 30px 32px 30px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
	z-index: 2;
	animation: gameindirModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gameindir-auth-tab-content {
	display: none;
}

.gameindir-auth-tab-content.is-active {
	display: block;
}

@keyframes gameindirModalPop {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}

.gameindir-auth-modal__close {
	position: absolute;
	top: 16px;
	right: 18px;
	background: transparent;
	border: none;
	color: #94a3b8;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease;
}

.gameindir-auth-modal__close:hover {
	color: #fff;
}

.gameindir-auth-modal__nav {
	display: flex;
	gap: 8px;
	background: rgba(0, 0, 0, 0.25);
	padding: 4px;
	border-radius: 10px;
	margin-bottom: 22px;
}

.gameindir-auth-tab-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 38px;
	border: none;
	background: transparent;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gameindir-auth-tab-btn svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.gameindir-auth-tab-btn.is-active {
	background: #1f2640;
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gameindir-auth-field {
	margin-bottom: 16px;
}

.gameindir-auth-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #94a3b8;
	margin-bottom: 6px;
}

.gameindir-input-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.gameindir-input-icon-wrap svg {
	position: absolute;
	left: 12px;
	width: 16px;
	height: 16px;
	fill: #64748b;
	pointer-events: none;
	transition: fill 0.2s ease;
}

.gameindir-input-icon-wrap input {
	width: 100%;
	height: 42px;
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0 14px 0 38px;
	color: #f1f5f9;
	font-size: 13px;
	transition: all 0.2s ease;
}

.gameindir-input-icon-wrap input:focus {
	outline: none;
	border-color: #a782e9;
	box-shadow: 0 0 0 3px rgba(167, 130, 233, 0.2);
}

.gameindir-input-icon-wrap input:focus + svg,
.gameindir-input-icon-wrap input:focus ~ svg {
	fill: #a782e9;
}

.gameindir-field-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.gameindir-field-between label {
	margin-bottom: 0;
}

.gameindir-forgot-trigger {
	font-size: 11px;
	color: #a782e9;
	text-decoration: none;
	transition: color 0.15s ease;
}

.gameindir-forgot-trigger:hover {
	color: #ff55a5;
}

.gameindir-auth-remember {
	margin-bottom: 18px;
}

.gameindir-checkbox-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 12px;
	color: #94a3b8;
	user-select: none;
}

.gameindir-checkbox-label input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	background: #101423;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	margin: 0;
	flex-shrink: 0;
}

.gameindir-checkbox-label input[type="checkbox"]:hover {
	border-color: #a782e9;
	background: #161b2e;
}

.gameindir-checkbox-label input[type="checkbox"]:checked {
	background: linear-gradient(135deg, #a782e9, #ff55a5);
	border-color: transparent;
	box-shadow: 0 0 10px rgba(167, 130, 233, 0.4);
}

.gameindir-checkbox-label input[type="checkbox"]:checked::before {
	content: "";
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-0.5px, -0.5px);
	display: block;
}

.gameindir-auth-submit-btn {
	width: 100%;
	height: 44px;
	background: linear-gradient(90deg, #a782e9, #ff55a5);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: 0 4px 15px rgba(167, 130, 233, 0.35);
}

.gameindir-auth-submit-btn:hover {
	box-shadow: 0 6px 22px rgba(167, 130, 233, 0.5);
	transform: translateY(-1px);
}

.gameindir-auth-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.gameindir-auth-divider {
	display: flex;
	align-items: center;
	margin: 20px 0 16px 0;
	color: #64748b;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.gameindir-auth-divider::before,
.gameindir-auth-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

.gameindir-auth-divider span {
	padding: 0 10px;
}

.gameindir-social-buttons {
	display: flex;
	gap: 10px;
}

.gameindir-social-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 40px;
	border-radius: 8px;
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #f1f5f9;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s ease;
}

.gameindir-social-btn svg {
	width: 17px;
	height: 17px;
}

.gameindir-social-btn:hover {
	background: #1a2138;
	border-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	transform: translateY(-1px);
}

.gameindir-social-btn--google:hover { border-color: rgba(66, 133, 244, 0.5); }
.gameindir-social-btn--discord:hover { border-color: rgba(88, 101, 242, 0.5); }
.gameindir-social-btn--steam:hover { border-color: rgba(102, 192, 244, 0.5); }

.gameindir-auth-alert {
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 16px;
	line-height: 1.4;
}

.gameindir-auth-alert--error {
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.35);
	color: #f87171;
}

.gameindir-auth-alert--success {
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: #34d399;
}

.gameindir-auth-subtext {
	font-size: 13px;
	color: #94a3b8;
	line-height: 1.5;
	margin-bottom: 16px;
}

.gameindir-antibot-container {
	margin-bottom: 14px;
	display: flex;
	justify-content: center;
}


/* 3. Frontend Profile Panel Styles
   ========================================================================== */
.gameindir-profile-wrap {
	padding: 40px 0 60px 0;
}

.gameindir-profile-sidebar {
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 24px 20px;
	margin-bottom: 30px;
}

.gameindir-profile-card {
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 18px;
}

.gameindir-avatar-picker {
	position: relative;
	display: inline-block;
	margin-bottom: 12px;
}

.gameindir-avatar-preview {
	position: relative;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #a782e9;
	box-shadow: 0 4px 15px rgba(167, 130, 233, 0.3);
}

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

.gameindir-avatar-upload-btn {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	cursor: pointer;
	transition: opacity 0.2s ease;
	border-radius: 50%;
}

.gameindir-avatar-upload-btn svg {
	width: 26px;
	height: 26px;
	fill: #fff;
}

.gameindir-avatar-preview:hover .gameindir-avatar-upload-btn {
	opacity: 1;
}

.gameindir-profile-name {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.gameindir-profile-meta {
	font-size: 12px;
	color: #94a3b8;
}

.gameindir-profile-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gameindir-profile-nav li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 16px;
	border-radius: 8px;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.gameindir-profile-nav li a svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.gameindir-profile-nav li.is-active a,
.gameindir-profile-nav li a:hover {
	background: rgba(167, 130, 233, 0.12);
	color: #a782e9;
}

.gameindir-profile-nav--logout a:hover {
	background: rgba(239, 68, 68, 0.12) !important;
	color: #ef4444 !important;
}

.gameindir-profile-content {
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 30px 32px;
}

.gameindir-tab-pane {
	display: none;
}

.gameindir-tab-pane.is-active {
	display: block;
}

.gameindir-pane-header {
	margin-bottom: 24px;
}

.gameindir-pane-header h2 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.gameindir-pane-header p {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 0;
}

.gameindir-pane-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.06);
	margin: 32px 0 28px 0;
}

.gameindir-profile-form .gameindir-form-group {
	margin-bottom: 18px;
}

.gameindir-profile-form label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 600;
	color: #94a3b8;
	margin-bottom: 6px;
}

.gameindir-locked-badge {
	font-size: 10px;
	color: #64748b;
	background: rgba(255, 255, 255, 0.05);
	padding: 2px 6px;
	border-radius: 4px;
}

.gameindir-profile-form input,
.gameindir-profile-form textarea {
	width: 100%;
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 10px 14px;
	color: #f1f5f9;
	font-size: 13px;
	transition: all 0.2s ease;
}

.gameindir-profile-form input.is-readonly {
	background: #0b0e18;
	color: #64748b;
	cursor: not-allowed;
	border-color: rgba(255, 255, 255, 0.04);
}

.gameindir-profile-form input:focus:not(.is-readonly),
.gameindir-profile-form textarea:focus {
	outline: none;
	border-color: #a782e9;
	box-shadow: 0 0 0 3px rgba(167, 130, 233, 0.2);
}

.gameindir-profile-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 24px;
	background: linear-gradient(90deg, #a782e9, #ff55a5);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s ease;
	text-decoration: none;
}

.gameindir-profile-submit-btn:hover {
	box-shadow: 0 4px 15px rgba(167, 130, 233, 0.4);
	color: #fff;
	transform: translateY(-1px);
}

.gameindir-profile-submit-btn--secondary {
	background: #1f2640;
	border: 1px solid rgba(167, 130, 233, 0.3);
	color: #a782e9;
}

.gameindir-profile-submit-btn--secondary:hover {
	background: #a782e9;
	color: #fff;
}

/* Comments List in Profile */
.gameindir-comments-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gameindir-comment-item {
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 16px 18px;
}

.gameindir-comment-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 8px;
}

.gameindir-comment-game {
	font-size: 13px;
	font-weight: 700;
	color: #a782e9;
	text-decoration: none;
}

.gameindir-comment-date {
	font-size: 11px;
	color: #64748b;
}

.gameindir-comment-badge {
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: 600;
}

.gameindir-comment-badge--approved {
	background: rgba(16, 185, 129, 0.15);
	color: #10b981;
}

.gameindir-comment-badge--pending {
	background: rgba(245, 158, 11, 0.15);
	color: #f59e0b;
}

.gameindir-comment-text p {
	font-size: 13px;
	color: #cbd5e1;
	margin-bottom: 0;
	line-height: 1.5;
}

/* Empty State */
.gameindir-empty-state {
	text-align: center;
	padding: 50px 20px;
}

.gameindir-empty-state svg {
	width: 48px;
	height: 48px;
	fill: #64748b;
	margin-bottom: 14px;
}

.gameindir-empty-state h3 {
	font-size: 17px;
	color: #fff;
	margin-bottom: 6px;
}

.gameindir-empty-state p {
	font-size: 13px;
	color: #94a3b8;
	max-width: 360px;
	margin: 0 auto 18px auto;
}

/* ==========================================================================
   4. Title Row & Head Action Buttons (Wishlist, Collection, Update, Report)
   ========================================================================== */
.details__title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 10px;
	width: 100%;
}

.details__title-row .details__title {
	margin-bottom: 0 !important;
}

.details__head-actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.details__head-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 32px;
	padding: 0 12px;
	border-radius: 8px;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #cbd5e1;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.details__head-btn svg {
	width: 14px;
	height: 14px;
	fill: #94a3b8;
	transition: transform 0.2s ease, fill 0.2s ease;
}

.details__head-btn:hover {
	transform: translateY(-1px);
	color: #fff;
}

.details__head-btn:hover svg {
	transform: scale(1.15);
}

/* Specific button hover accents */
.details__head-btn--wishlist:hover {
	background: rgba(255, 85, 165, 0.15);
	border-color: rgba(255, 85, 165, 0.4);
	color: #ff55a5;
}
.details__head-btn--wishlist:hover svg { fill: #ff55a5; }

.details__head-btn--wishlist.is-active {
	background: rgba(255, 85, 165, 0.18);
	border-color: #ff55a5;
	color: #ff55a5;
	box-shadow: 0 0 12px rgba(255, 85, 165, 0.3);
}
.details__head-btn--wishlist.is-active svg {
	fill: #ff55a5;
	filter: drop-shadow(0 0 6px rgba(255, 85, 165, 0.8));
}

.details__head-btn--collection:hover {
	background: rgba(56, 189, 248, 0.15);
	border-color: rgba(56, 189, 248, 0.4);
	color: #38bdf8;
}
.details__head-btn--collection:hover svg { fill: #38bdf8; }

.details__head-btn--update:hover {
	background: rgba(167, 130, 233, 0.15);
	border-color: rgba(167, 130, 233, 0.4);
	color: #a782e9;
}
.details__head-btn--update:hover svg { fill: #a782e9; }

.details__head-btn--report:hover {
	background: rgba(239, 68, 68, 0.15);
	border-color: rgba(239, 68, 68, 0.4);
	color: #f87171;
}
.details__head-btn--report:hover svg { fill: #f87171; }

/* Wishlist Card in Profile */
.gameindir-wishlist-card {
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	transition: all 0.25s ease;
}

.gameindir-wishlist-card:hover {
	border-color: rgba(167, 130, 233, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gameindir-wishlist-cover {
	position: relative;
	width: 100%;
	aspect-ratio: 2/3;
	overflow: hidden;
	background: #161b2e;
}

.gameindir-wishlist-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gameindir-wishlist-card:hover .gameindir-wishlist-cover img {
	transform: scale(1.05);
}

.gameindir-wishlist-remove-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	backdrop-filter: blur(4px);
}

.gameindir-wishlist-remove-btn svg {
	width: 14px;
	height: 14px;
	fill: #94a3b8;
}

.gameindir-wishlist-remove-btn:hover {
	background: #ef4444;
	border-color: transparent;
}

.gameindir-wishlist-remove-btn:hover svg {
	fill: #fff;
}

.gameindir-wishlist-info {
	padding: 12px 14px;
}

.gameindir-wishlist-title {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gameindir-wishlist-title a {
	color: #fff;
	text-decoration: none;
}

.gameindir-wishlist-title a:hover {
	color: #a782e9;
}

.gameindir-wishlist-date {
	font-size: 11px;
	color: #64748b;
}

/* ==========================================================================
   5. Collections Management Styles
   ========================================================================== */
.gameindir-collection-form-panel {
	background: #101423;
	border: 1px solid rgba(167, 130, 233, 0.3);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 24px;
	animation: gameindirFadeIn 0.2s ease;
}

.gameindir-collection-form-panel h3 {
	font-size: 16px;
	color: #fff;
	margin-bottom: 14px;
}

.gameindir-collections-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gameindir-collection-card {
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 18px 20px;
	transition: border-color 0.2s ease;
}

.gameindir-collection-card:hover {
	border-color: rgba(255, 255, 255, 0.15);
}

.gameindir-collection-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 14px;
}

.gameindir-collection-card-title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 2px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.gameindir-collection-card-title a {
	color: #fff;
	text-decoration: none;
}

.gameindir-collection-card-title a:hover {
	color: #a782e9;
}

.gameindir-public-badge,
.gameindir-private-badge {
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 4px;
	font-weight: 600;
}

.gameindir-public-badge {
	background: rgba(16, 185, 129, 0.15);
	color: #10b981;
}

.gameindir-private-badge {
	background: rgba(245, 158, 11, 0.15);
	color: #f59e0b;
}

.gameindir-collection-card-count {
	font-size: 12px;
	color: #94a3b8;
}

.gameindir-collection-card-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.gameindir-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 6px;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #cbd5e1;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
}

.gameindir-action-btn svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.gameindir-action-btn:hover {
	background: #1f2640;
	color: #fff;
	border-color: rgba(167, 130, 233, 0.4);
}

.gameindir-action-btn--delete:hover {
	background: rgba(239, 68, 68, 0.15) !important;
	border-color: rgba(239, 68, 68, 0.3) !important;
	color: #ef4444 !important;
}

.gameindir-collection-games-strip {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gameindir-collection-thumb-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	padding: 4px 8px 4px 4px;
	font-size: 12px;
	color: #cbd5e1;
}

.gameindir-collection-thumb-pill img {
	width: 22px;
	height: 22px;
	border-radius: 4px;
	object-fit: cover;
}

.gameindir-remove-coll-game-btn {
	background: transparent;
	border: none;
	color: #94a3b8;
	font-size: 16px;
	cursor: pointer;
	line-height: 1;
	padding: 0 2px;
	transition: color 0.15s ease;
}

.gameindir-remove-coll-game-btn:hover {
	color: #ef4444;
}

/* ==========================================================================
   6. Collection Picker Modal (Single Game Page)
   ========================================================================== */
.gameindir-collection-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.gameindir-collection-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 13, 22, 0.85);
	backdrop-filter: blur(6px);
}

.gameindir-collection-modal__box {
	position: relative;
	width: 100%;
	max-width: 400px;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
	z-index: 2;
	animation: gameindirModalPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gameindir-collection-modal__close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: transparent;
	border: none;
	color: #94a3b8;
	font-size: 24px;
	cursor: pointer;
}

.gameindir-collection-modal__close:hover {
	color: #fff;
}

.gameindir-collection-modal__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	color: #fff;
	margin-bottom: 2px;
}

.gameindir-collection-modal__title svg {
	width: 18px;
	height: 18px;
	fill: #38bdf8;
}

.gameindir-collection-modal__sub {
	font-size: 12px;
	color: #94a3b8;
	margin-bottom: 16px;
}

.gameindir-collection-modal__list {
	max-height: 220px;
	overflow-y: auto;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gameindir-collection-modal-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gameindir-collection-modal-item:hover {
	border-color: rgba(56, 189, 248, 0.4);
	background: #151b2e;
}

.gameindir-collection-modal-item.is-added {
	border-color: #10b981;
	background: rgba(16, 185, 129, 0.08);
}

.gameindir-collection-modal-item-title {
	font-size: 13px;
	font-weight: 600;
	color: #f1f5f9;
}

.gameindir-collection-modal-item-badge {
	font-size: 11px;
	font-weight: 700;
	color: #94a3b8;
}

.gameindir-collection-modal-item.is-added .gameindir-collection-modal-item-badge {
	color: #10b981;
}

.gameindir-quick-create-toggle-btn {
	background: transparent;
	border: none;
	color: #38bdf8;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}

.gameindir-quick-create-toggle-btn:hover {
	text-decoration: underline;
}

/* Single Collection Page Hero */
.gameindir-collection-hero {
	background: rgba(22, 27, 46, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 32px 36px;
	backdrop-filter: blur(10px);
}

.gameindir-collection-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #38bdf8;
	margin-bottom: 10px;
}

.gameindir-collection-badge svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.gameindir-collection-title {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 8px;
}

.gameindir-collection-desc {
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.6;
	margin-bottom: 20px;
	max-width: 800px;
}

.gameindir-collection-meta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gameindir-collection-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.gameindir-collection-author-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 1.5px solid #38bdf8;
}

.gameindir-collection-curator {
	display: block;
	font-size: 11px;
	color: #64748b;
}

.gameindir-collection-author-name {
	font-size: 13px;
	color: #fff;
}

.gameindir-collection-stats {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: #94a3b8;
}

.gameindir-collection-share {
	display: flex;
	align-items: center;
	gap: 8px;
}

.gameindir-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 34px;
	padding: 0 12px;
	border-radius: 8px;
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #f1f5f9;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
}

.gameindir-share-btn svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.gameindir-share-btn:hover {
	background: #1f2640;
	color: #fff;
	border-color: rgba(56, 189, 248, 0.5);
}

/* ==========================================================================
   7. Badge Counters (Menu & Tab Items)
   ========================================================================== */
.gameindir-tab-count-badge {
	margin-left: auto;
	background: rgba(167, 130, 233, 0.18);
	border: 1px solid rgba(167, 130, 233, 0.35);
	color: #c4b5fd;
	font-size: 11px;
	font-weight: 700;
	padding: 1px 8px;
	border-radius: 12px;
	line-height: 1.4;
	transition: all 0.2s ease;
}

.gameindir-user-menu-badge {
	margin-left: auto;
	background: #ff55a5;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 1px 6px;
	border-radius: 10px;
	line-height: 1.3;
	box-shadow: 0 0 8px rgba(255, 85, 165, 0.5);
}

/* Catalog Grid Wishlist Wrapper */
.gameindir-catalog-wishlist-wrapper {
	position: relative;
	margin-bottom: 24px;
}

.gameindir-catalog-wishlist-wrapper .gameindir-wishlist-remove-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 10;
	width: 32px;
	height: 32px;
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(6px);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gameindir-catalog-wishlist-wrapper .gameindir-wishlist-remove-btn:hover {
	background: #ef4444;
	border-color: #ef4444;
	transform: scale(1.1);
	box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

.gameindir-catalog-wishlist-wrapper .gameindir-wishlist-remove-btn svg {
	width: 14px;
	height: 14px;
	fill: #cbd5e1;
}

.gameindir-catalog-wishlist-wrapper .gameindir-wishlist-remove-btn:hover svg {
	fill: #fff;
}

/* Hide platform icon circles in Wishlist Cards for a ultra-clean poster look */
.gameindir-catalog-wishlist-wrapper .card__platforms {
	display: none !important;
}

/* ==========================================================================
   8. Collection Mini Posters Rack (Profile Collections)
   ========================================================================== */
.gameindir-collection-posters-rack {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gameindir-coll-mini-card {
	position: relative;
	width: 80px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	transition: transform 0.2s ease;
}

.gameindir-coll-mini-card:hover {
	transform: translateY(-3px);
}

.gameindir-coll-mini-cover {
	position: relative;
	width: 80px;
	height: 110px;
	border-radius: 8px;
	overflow: hidden;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: block;
}

.gameindir-coll-mini-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gameindir-coll-mini-card:hover .gameindir-coll-mini-cover img {
	transform: scale(1.08);
}

.gameindir-coll-mini-title {
	font-size: 11px;
	font-weight: 600;
	color: #cbd5e1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}

.gameindir-coll-mini-remove-btn {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #ef4444;
	border: 2px solid #101423;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transition: all 0.2s ease;
	z-index: 5;
}

.gameindir-coll-mini-card:hover .gameindir-coll-mini-remove-btn {
	opacity: 1;
	transform: scale(1.05);
}

.gameindir-coll-mini-remove-btn:hover {
	background: #dc2626;
	transform: scale(1.2) !important;
}

.gameindir-coll-empty-tip {
	font-size: 12px;
	color: #64748b;
	font-style: italic;
	padding: 4px 0;
}

/* ==========================================================================
   9. Neon Toast Notifications
   ========================================================================== */
.gameindir-toast-container {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
}

.gameindir-toast {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	border-radius: 10px;
	background: rgba(16, 20, 35, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	animation: gameindirToastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	transition: all 0.25s ease;
}

.gameindir-toast--success {
	border-color: rgba(16, 185, 129, 0.4);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.gameindir-toast--info {
	border-color: rgba(255, 85, 165, 0.4);
	box-shadow: 0 8px 25px rgba(255, 85, 165, 0.25);
}

.gameindir-toast--warning {
	border-color: rgba(251, 191, 36, 0.45);
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.25);
}

.gameindir-toast--error {
	border-color: rgba(239, 68, 68, 0.45);
	box-shadow: 0 8px 25px rgba(239, 68, 68, 0.25);
}

.gameindir-toast-icon {
	font-size: 16px;
	line-height: 1;
}

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

/* ==========================================================================
   10. Modern 404 Page (Cyberpunk / Neon Gaming Theme)
   ========================================================================== */
.gameindir-404-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 0;
	position: relative;
}

.gameindir-404-card {
	background: rgba(22, 27, 46, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 50px 40px;
	text-align: center;
	backdrop-filter: blur(14px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.gameindir-404-glitch {
	font-size: 96px;
	font-weight: 900;
	line-height: 1;
	color: #fff;
	letter-spacing: 4px;
	background: linear-gradient(135deg, #a782e9 0%, #ff55a5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 16px;
	filter: drop-shadow(0 0 25px rgba(167, 130, 233, 0.4));
}

.gameindir-404-title {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}

.gameindir-404-desc {
	font-size: 14px;
	color: #94a3b8;
	max-width: 480px;
	margin: 0 auto 28px auto;
	line-height: 1.6;
}

.gameindir-404-search {
	max-width: 440px;
	margin: 0 auto 28px auto;
}

.gameindir-404-search form {
	position: relative;
	display: flex;
	align-items: center;
}

.gameindir-404-search input {
	width: 100%;
	height: 48px;
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 0 50px 0 18px;
	color: #fff;
	font-size: 13px;
	transition: all 0.2s ease;
}

.gameindir-404-search input:focus {
	outline: none;
	border-color: #a782e9;
	box-shadow: 0 0 15px rgba(167, 130, 233, 0.3);
}

.gameindir-404-search button {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #a782e9;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
}

.gameindir-404-search button svg {
	width: 18px;
	height: 18px;
	fill: #fff;
}

.gameindir-404-search button:hover {
	background: #8b5cf6;
}

.gameindir-404-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ==========================================================================
   11. Card Catalog Poster Proportions & Clean Icons
   ========================================================================== */
.card--catalog {
	margin-top: 20px;
	border-radius: 12px;
	overflow: hidden;
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card--catalog:hover {
	transform: translateY(-4px);
	border-color: rgba(167, 130, 233, 0.4);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Zero CLS Hero & Carousel Pre-Hydration Stability */
.section--bg.section--first {
	min-height: 500px;
}
.section__carousel--big:not(.owl-loaded) {
	display: flex;
	overflow: hidden;
	gap: 20px;
	min-height: 360px;
}
.section__carousel--catalog:not(.owl-loaded) {
	display: flex;
	overflow: hidden;
	gap: 20px;
	min-height: 320px;
}

.card--catalog .card__cover,
.card:not(.card--big) .card__cover {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4.2;
	overflow: hidden;
	background: #161b2e;
	display: block;
}

.card--catalog .card__cover img,
.card:not(.card--big) .card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.card--catalog:hover .card__cover img,
.card:not(.card--big):hover .card__cover img {
	transform: scale(1.06);
}

.card--catalog .card__platforms {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 5;
	list-style: none;
	padding: 0;
	margin: 0;
}

.card--catalog .card__platforms li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	margin-right: 0 !important;
}

.card--catalog .card__platforms li svg {
	width: 13px;
	height: 13px;
	fill: #fff;
}

.card--catalog .card__platforms li.dw { background: #10b981; }
.card--catalog .card__platforms li.wn { background: #0ea5e9; }
.card--catalog .card__platforms li.ap { background: #64748b; }

.card--catalog .card__title {
	padding: 12px 14px;
	border: none;
	background: #101423;
}

.card--catalog .card__title h3 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #fff;
}

.card--catalog .card__title h3 a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.card--catalog .card__title h3 a:hover {
	color: #a782e9;
}

/* ==========================================================================
   12. Header Trending Genres (Infinite Auto-Scrolling Marquee)
   ========================================================================== */
.header__marquee-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	margin-top: 14px;
	overflow: hidden;
	position: relative;
}

.header__marquee-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	color: #a782e9;
	white-space: nowrap;
	flex-shrink: 0;
	letter-spacing: 0.6px;
	z-index: 5;
	background: #101423;
	padding-right: 8px;
}

.header__marquee-label svg {
	width: 14px;
	height: 14px;
	fill: #a782e9;
}

.header__marquee-track-container {
	display: flex;
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(to right, transparent, black 15px, black 92%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 15px, black 92%, transparent);
}

.header__marquee-track {
	display: flex;
	gap: 8px;
	width: max-content;
	animation: gameindirMarquee 40s linear infinite;
}

.header__marquee-track:hover {
	animation-play-state: paused;
}

.header__marquee-group {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	white-space: nowrap;
}

@keyframes gameindirMarquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.header__genre-chip {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 28px;
	padding: 0 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #cbd5e1;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.header__genre-chip:hover {
	background: #1f2640;
	border-color: rgba(167, 130, 233, 0.5);
	color: #fff;
	transform: translateY(-1px);
}

.header__genre-count {
	font-size: 10px;
	font-weight: 700;
	color: #94a3b8;
	background: rgba(0, 0, 0, 0.35);
	padding: 1px 6px;
	border-radius: 8px;
	line-height: 1.2;
}

.header__genre-chip:hover .header__genre-count {
	color: #a782e9;
	background: rgba(167, 130, 233, 0.2);
}

/* ==========================================================================
   13. Cyber-Vault High-Conversion Download Gateway
   ========================================================================== */

/* Section Spacing & Ambient Light */
.gameindir-gateway-section {
	padding-top: 140px;
	padding-bottom: 70px;
	position: relative;
	overflow: hidden;
}

.vault-ambient-glow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 600px;
	pointer-events: none;
	z-index: 1;
	opacity: 0.85;
}

/* Cyber Navigation Bar (Breadcrumbs + Back to Game) */
.vault-nav-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.vault-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	flex-wrap: wrap;
}

.vault-breadcrumb-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 500;
}

.vault-breadcrumb-link svg {
	width: 14px;
	height: 14px;
	fill: #94a3b8;
	transition: fill 0.2s ease;
}

.vault-breadcrumb-link:hover {
	color: #a782e9;
}

.vault-breadcrumb-link:hover svg {
	fill: #a782e9;
}

.vault-breadcrumb-sep {
	color: rgba(255, 255, 255, 0.2);
	font-size: 12px;
}

.vault-breadcrumb-game {
	max-width: 220px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vault-breadcrumb-current {
	color: #38bdf8;
	font-weight: 700;
}

.vault-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: 10px;
	background: rgba(22, 28, 48, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #cbd5e1;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	backdrop-filter: blur(12px);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.vault-back-btn svg {
	width: 15px;
	height: 15px;
	fill: #a782e9;
	transition: transform 0.2s ease, fill 0.2s ease;
}

.vault-back-btn:hover {
	background: rgba(167, 130, 233, 0.18);
	border-color: rgba(167, 130, 233, 0.45);
	color: #fff;
	transform: translateX(-3px);
	box-shadow: 0 6px 20px rgba(167, 130, 233, 0.25);
}

.vault-back-btn:hover svg {
	fill: #fff;
	transform: translateX(-3px);
}

/* ==========================================================================
   Hero Ambient Showcase Banner
   ========================================================================== */
.vault-hero-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #0f1424;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
	margin-bottom: 24px;
}

.vault-hero-bg {
	position: absolute;
	inset: -20px;
	background-size: cover;
	background-position: center;
	filter: blur(35px) saturate(1.4) brightness(0.35);
	opacity: 0.65;
	transform: scale(1.1);
	pointer-events: none;
}

.vault-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 20, 36, 0.92) 0%, rgba(15, 20, 36, 0.75) 50%, rgba(22, 28, 50, 0.88) 100%);
	pointer-events: none;
}

.vault-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 30px 36px;
}

.vault-poster-wrap {
	width: 140px;
	flex-shrink: 0;
	aspect-ratio: 3 / 4.2;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.15);
	background: #14192d;
	transition: transform 0.3s ease;
}

.vault-hero-card:hover .vault-poster-wrap {
	transform: translateY(-2px) scale(1.02);
}

.vault-poster-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vault-poster-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
	pointer-events: none;
}

.vault-hero-details {
	flex: 1;
	min-width: 0;
}

.vault-badge-cluster {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.vault-shield-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.4);
	color: #10b981;
	padding: 4px 11px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.vault-shield-badge svg {
	width: 13px;
	height: 13px;
	fill: #10b981;
}

.vault-badge-pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 8px #10b981;
	animation: vaultGlowDot 1.6s infinite;
}

@keyframes vaultGlowDot {
	0%, 100% { transform: scale(0.9); opacity: 0.7; }
	50% { transform: scale(1.3); opacity: 1; }
}

.vault-version-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(167, 130, 233, 0.16);
	border: 1px solid rgba(167, 130, 233, 0.35);
	color: #c4b5fd;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11.5px;
	font-weight: 700;
}

.vault-version-pill svg {
	width: 12px;
	height: 12px;
	fill: #c4b5fd;
}

.vault-cat-pill {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #cbd5e1;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11.5px;
	font-weight: 600;
}

.vault-mirrors-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(56, 189, 248, 0.14);
	border: 1px solid rgba(56, 189, 248, 0.35);
	color: #38bdf8;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11.5px;
	font-weight: 700;
}

.vault-mirrors-pill svg {
	width: 13px;
	height: 13px;
	fill: #38bdf8;
}

.vault-game-title {
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1.25;
	margin: 0 0 16px 0;
	background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 70%, #94a3b8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.vault-features-matrix {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.vault-feature-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #cbd5e1;
	font-size: 13px;
	font-weight: 500;
}

.vault-feature-icon {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vault-feature-icon svg {
	width: 13px;
	height: 13px;
}

.vault-icon-cyan {
	background: rgba(6, 182, 212, 0.15);
	border: 1px solid rgba(6, 182, 212, 0.3);
}
.vault-icon-cyan svg { fill: #06b6d4; }

.vault-icon-emerald {
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.3);
}
.vault-icon-emerald svg { fill: #10b981; }

.vault-icon-amber {
	background: rgba(245, 158, 11, 0.15);
	border: 1px solid rgba(245, 158, 11, 0.3);
}
.vault-icon-amber svg { fill: #f59e0b; }

/* ==========================================================================
   Interactive Core Panel (Countdown + Mirror Chamber)
   ========================================================================== */
.vault-core-panel {
	background: rgba(16, 21, 38, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	padding: 36px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
}

/* Chamber 1: Quantum Radar Decryption Chamber */
.vault-decrypt-chamber {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 10px 0;
}

.vault-radar-stage {
	position: relative;
	width: 170px;
	height: 170px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vault-radar-halo {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, rgba(139, 92, 246, 0.1) 60%, transparent 80%);
	filter: blur(12px);
	animation: vaultHaloPulse 2.4s infinite ease-in-out;
}

@keyframes vaultHaloPulse {
	0%, 100% { transform: scale(0.92); opacity: 0.6; }
	50% { transform: scale(1.08); opacity: 1; }
}

.vault-radar-svg-box {
	position: relative;
	width: 160px;
	height: 160px;
}

.vault-radar-svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.vault-radar-track {
	fill: none;
	stroke: rgba(255, 255, 255, 0.08);
}

.vault-radar-bar {
	fill: none;
	stroke: url(#vaultRadarGrad);
	stroke: #06b6d4;
	stroke-linecap: round;
	filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.7));
	transition: stroke-dashoffset 1s linear;
}

.vault-radar-center {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	user-select: none;
}

.vault-digit-wrapper {
	display: flex;
	align-items: baseline;
	gap: 2px;
	line-height: 1;
}

.vault-digit-counter {
	font-size: 42px;
	font-weight: 900;
	color: #fff;
	letter-spacing: -1px;
	text-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
	font-variant-numeric: tabular-nums;
}

.vault-digit-sec {
	font-size: 13px;
	font-weight: 800;
	color: #06b6d4;
	letter-spacing: 0.5px;
}

.vault-center-sub {
	font-size: 9.5px;
	font-weight: 800;
	color: #94a3b8;
	letter-spacing: 1.5px;
	margin-top: 4px;
}

.vault-status-intel {
	flex: 1;
	min-width: 0;
}

.vault-intel-heading {
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 6px 0;
	letter-spacing: -0.3px;
}

.vault-intel-sub {
	color: #94a3b8;
	font-size: 14px;
	margin: 0 0 20px 0;
	line-height: 1.5;
}

/* Diagnostic Pipeline Nodes */
.vault-pipeline-nodes {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.vault-pipe-node {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.vault-pipe-node.node-done {
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #34d399;
}

.vault-pipe-node.node-done svg {
	width: 13px;
	height: 13px;
	fill: #10b981;
}

.vault-pipe-node.node-active {
	background: rgba(6, 182, 212, 0.14);
	border: 1px solid rgba(6, 182, 212, 0.4);
	color: #38bdf8;
}

.pipe-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #06b6d4;
	box-shadow: 0 0 8px #06b6d4;
	animation: vaultGlowDot 1.2s infinite;
	display: inline-block;
}

.vault-pipe-node.node-pending {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #64748b;
}

.pipe-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #64748b;
	display: inline-block;
}

/* Linear Cyber Progress Bar */
.vault-linear-progress-box {
	max-width: 580px;
}

.vault-linear-labels {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
}

.vault-progress-state-text {
	color: #94a3b8;
}

.vault-progress-percent {
	color: #06b6d4;
	font-family: monospace;
	font-weight: 700;
	font-size: 13px;
}

.vault-linear-track {
	width: 100%;
	height: 7px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.vault-linear-fill {
	height: 100%;
	background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
	border-radius: 10px;
	position: relative;
	transition: width 1s linear;
}

.vault-linear-head {
	position: absolute;
	right: 0;
	top: -2px;
	bottom: -2px;
	width: 8px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px #06b6d4, 0 0 5px #fff;
}

/* Chamber 2: Unlocked High-Speed Mirror Matrix */
.vault-mirrors-chamber {
	animation: vaultFadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.vault-chamber-header {
	text-align: center;
	margin-bottom: 28px;
}

.vault-unlock-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	border-radius: 20px;
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: #34d399;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.vault-unlock-badge svg {
	width: 14px;
	height: 14px;
	fill: #10b981;
}

.vault-mirrors-title {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 6px 0;
	letter-spacing: -0.4px;
}

.vault-mirrors-desc {
	color: #94a3b8;
	font-size: 14px;
	margin: 0;
}

/* Segmented Platform Matrix Selector */
.vault-platform-selector {
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}

.vault-platform-pills {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(13, 17, 30, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 5px;
}

.vault-platform-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border-radius: 10px;
	background: transparent;
	border: none;
	color: #94a3b8;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	user-select: none;
}

.vault-plat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.vault-plat-icon svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.vault-plat-count {
	font-size: 11px;
	padding: 2px 7px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	color: #cbd5e1;
}

.vault-platform-btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
}

.vault-platform-btn.active {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
	color: #fff;
	border: 1px solid rgba(6, 182, 212, 0.45);
	box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.vault-platform-btn.active .vault-plat-count {
	background: rgba(6, 182, 212, 0.25);
	color: #fff;
}

/* Branded Mirror Matrix Grid */
.vault-mirror-matrix {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.vault-mirror-card {
	background: rgba(13, 17, 30, 0.85);
	border: 1px solid var(--brand-border, rgba(255, 255, 255, 0.09));
	border-radius: 14px;
	padding: 18px 20px;
	position: relative;
	overflow: hidden;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.vault-mirror-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	bottom: 0;
	background: var(--brand-color, #06b6d4);
	border-radius: 4px 0 0 4px;
	opacity: 0.8;
}

.vault-mirror-card:hover {
	transform: translateY(-3px);
	border-color: var(--brand-color, #06b6d4);
	box-shadow: 0 10px 25px var(--brand-glow, rgba(6, 182, 212, 0.25));
}

.vault-card-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.vault-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	flex: 1;
}

.vault-host-badge {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid;
}

.vault-host-badge svg {
	width: 22px;
	height: 22px;
}

.vault-host-meta {
	min-width: 0;
	flex: 1;
}

.vault-host-name {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	margin: 0 0 3px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: -0.2px;
}

.vault-host-subline {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #94a3b8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vault-status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 6px #10b981;
	flex-shrink: 0;
}

.vault-host-tag {
	color: #cbd5e1;
	font-weight: 600;
}

.vault-host-size {
	color: #94a3b8;
}

.vault-card-action {
	flex-shrink: 0;
}

.vault-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(6, 182, 212, 0.25) 100%);
	border: 1px solid rgba(6, 182, 212, 0.45);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.vault-download-btn svg {
	width: 15px;
	height: 15px;
	fill: #06b6d4;
	transition: transform 0.2s ease, fill 0.2s ease;
}

.vault-download-btn:hover {
	background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
	color: #fff;
	box-shadow: 0 6px 18px rgba(6, 182, 212, 0.4);
	transform: scale(1.03);
}

.vault-download-btn:hover svg {
	fill: #fff;
	transform: translateY(2px);
}

/* ==========================================================================
   Utilities Grid: Decryption Key Capsule & Bento Setup Matrix
   ========================================================================== */
.vault-utilities-grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr;
	gap: 24px;
	align-items: flex-start;
}

/* Decryption Key Capsule (RAR Password) */
.vault-key-capsule {
	background: linear-gradient(135deg, rgba(22, 28, 50, 0.85) 0%, rgba(16, 21, 38, 0.95) 100%);
	border: 1px solid rgba(245, 158, 11, 0.35);
	border-radius: 16px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
	margin-bottom: 24px;
	position: relative;
	overflow: hidden;
}

.vault-key-capsule::after {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.vault-key-left {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.vault-key-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(245, 158, 11, 0.15);
	border: 1px solid rgba(245, 158, 11, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vault-key-icon svg {
	width: 20px;
	height: 20px;
	fill: #f59e0b;
}

.vault-key-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.vault-key-sub {
	font-size: 11px;
	font-weight: 800;
	color: #f59e0b;
	letter-spacing: 1px;
}

.vault-key-title {
	font-size: 14px;
	font-weight: 600;
	color: #cbd5e1;
}

.vault-key-right {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.vault-token-badge {
	background: #0b0f19;
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 8px 18px;
	border-radius: 10px;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.vault-token-code {
	color: #38bdf8;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.5px;
	user-select: all;
}

.vault-copy-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border-radius: 10px;
	background: #8b5cf6;
	border: none;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.vault-copy-btn svg {
	width: 15px;
	height: 15px;
	fill: #fff;
}

.vault-copy-btn:hover {
	background: #7c3aed;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.vault-copy-btn.copied {
	background: #10b981 !important;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
}

/* Bento Cards (Installation + Guarantee) */
.vault-bento-card {
	background: rgba(16, 21, 38, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	padding: 26px 28px;
	backdrop-filter: blur(16px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.vault-bento-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.vault-bento-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vault-bento-title {
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	margin: 0 0 2px 0;
	letter-spacing: -0.2px;
}

.vault-bento-sub {
	color: #94a3b8;
	font-size: 12.5px;
}

/* 4-Step Grid */
.vault-steps-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.vault-step-item {
	background: rgba(13, 17, 30, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	transition: border-color 0.2s ease;
}

.vault-step-item:hover {
	border-color: rgba(6, 182, 212, 0.3);
}

.vault-step-number {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(6, 182, 212, 0.12);
	border: 1px solid rgba(6, 182, 212, 0.35);
	color: #06b6d4;
	font-size: 13px;
	font-weight: 900;
	font-family: monospace;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vault-step-info h4 {
	color: #fff;
	font-size: 13.5px;
	font-weight: 700;
	margin: 0 0 4px 0;
}

.vault-step-info p {
	color: #94a3b8;
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
}

.vault-step-info code {
	background: rgba(6, 182, 212, 0.15);
	color: #38bdf8;
	padding: 1px 6px;
	border-radius: 4px;
	font-size: 11px;
}

.vault-extra-install-note {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #94a3b8;
	font-size: 12.5px;
	line-height: 1.6;
}

.vault-extra-install-note ol {
	padding-left: 18px;
	margin: 8px 0 0 0;
}

/* Guarantee Trust Bento */
.vault-guarantee-bento {
	position: relative;
	overflow: hidden;
}

.vault-guarantee-seal {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vault-seal-core {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vault-seal-core svg {
	width: 24px;
	height: 24px;
	fill: #10b981;
}

.vault-seal-text h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	margin: 0 0 3px 0;
}

.vault-seal-verified {
	color: #10b981;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.6px;
}

.vault-guarantee-list {
	list-style: none;
	padding: 0;
	margin: 0 0 22px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vault-guarantee-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.vault-check-icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(16, 185, 129, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vault-check-icon svg {
	width: 12px;
	height: 12px;
	fill: #10b981;
}

.vault-check-text {
	color: #cbd5e1;
	font-size: 13px;
	font-weight: 500;
}

.vault-trust-footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vault-trust-stat {
	background: rgba(13, 17, 30, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 10px;
	text-align: center;
}

.trust-value {
	display: block;
	font-size: 18px;
	font-weight: 900;
	color: #10b981;
	font-family: monospace;
	letter-spacing: 0.5px;
}

.trust-label {
	display: block;
	font-size: 11px;
	color: #94a3b8;
	margin-top: 2px;
	font-weight: 600;
}

/* Ad Containers */
.vault-ad-container {
	text-align: center;
	margin: 0 auto 24px auto;
}

/* Floating Copy Toast */
.vault-copy-toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: rgba(16, 21, 38, 0.95);
	border: 1px solid #10b981;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.3);
	color: #fff;
	padding: 12px 20px;
	border-radius: 12px;
	font-size: 13.5px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 999999;
	transform: translateY(80px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	backdrop-filter: blur(12px);
}

.vault-copy-toast svg {
	width: 18px;
	height: 18px;
	fill: #10b981;
}

.vault-copy-toast.show {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

/* ==========================================================================
   Responsive Architecture (Tablet & Mobile Perfection)
   ========================================================================== */
@media (max-width: 991px) {
	.gameindir-gateway-section {
		padding-top: 100px !important;
		padding-bottom: 50px !important;
	}

	.vault-hero-content {
		padding: 24px;
		gap: 20px;
	}

	.vault-poster-wrap {
		width: 115px;
	}

	.vault-game-title {
		font-size: 22px;
	}

	.vault-decrypt-chamber {
		flex-direction: column;
		text-align: center;
		gap: 24px;
	}

	.vault-pipeline-nodes {
		justify-content: center;
	}

	.vault-linear-progress-box {
		margin: 0 auto;
	}

	.vault-mirror-matrix {
		grid-template-columns: 1fr;
	}

	.vault-utilities-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.gameindir-gateway-section {
		padding-top: 85px !important;
		padding-bottom: 40px !important;
	}

	.vault-nav-strip {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.vault-back-btn {
		width: 100%;
		justify-content: center;
	}

	.vault-hero-content {
		padding: 18px;
		gap: 16px;
	}

	.vault-poster-wrap {
		width: 96px;
		border-radius: 10px;
	}

	.vault-game-title {
		font-size: 19px;
		margin-bottom: 12px;
	}

	.vault-features-matrix {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.vault-core-panel {
		padding: 20px 16px;
		border-radius: 16px;
	}

	.vault-key-capsule {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 16px;
	}

	.vault-key-right {
		width: 100%;
		justify-content: space-between;
	}

	.vault-token-badge {
		flex: 1;
		text-align: center;
	}

	.vault-steps-grid {
		grid-template-columns: 1fr;
	}

	.vault-platform-selector {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		justify-content: flex-start;
		padding-bottom: 6px;
	}

	.vault-platform-pills {
		white-space: nowrap;
	}
}

@media (max-width: 575px) {
	.gameindir-gateway-section {
		padding-top: 75px !important;
		padding-bottom: 30px !important;
	}

	.vault-hero-content {
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
		padding: 14px;
	}

	.vault-poster-wrap {
		width: 80px;
		min-width: 80px;
		max-width: 80px;
		border-radius: 8px;
	}

	.vault-game-title {
		font-size: 16.5px;
		line-height: 1.25;
		margin-bottom: 8px;
	}

	.vault-badge-cluster {
		gap: 5px;
		margin-bottom: 8px;
	}

	.vault-shield-badge,
	.vault-version-pill,
	.vault-cat-pill,
	.vault-mirrors-pill {
		font-size: 10px;
		padding: 3px 8px;
	}

	.vault-feature-item {
		font-size: 11.5px;
	}

	.vault-core-panel {
		padding: 16px 12px;
	}

	.vault-radar-stage {
		width: 140px;
		height: 140px;
	}

	.vault-radar-svg-box {
		width: 130px;
		height: 130px;
	}

	.vault-digit-counter {
		font-size: 34px;
	}

	.vault-intel-heading {
		font-size: 18px;
	}

	.vault-pipe-node {
		font-size: 11px;
		padding: 4px 8px;
	}

	.vault-card-main {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.vault-download-btn {
		width: 100%;
		justify-content: center;
		padding: 11px;
		font-size: 13.5px;
	}

	.vault-copy-toast {
		left: 16px;
		right: 16px;
		bottom: 16px;
		justify-content: center;
	}
}


/* ==========================================================================
   14. Social Proof Ticker
   ========================================================================== */
.gameindir-social-proof-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(16, 20, 35, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	padding: 8px 16px;
	margin-top: 14px;
	font-size: 12px;
	color: #94a3b8;
	flex-wrap: wrap;
}

.gameindir-proof-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.gameindir-proof-item strong {
	color: #fff;
}

.gameindir-proof-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 8px #10b981;
	animation: pulseProof 1.5s infinite;
}

@keyframes pulseProof {
	0% { opacity: 0.4; }
	50% { opacity: 1; }
	100% { opacity: 0.4; }
}

.gameindir-proof-divider {
	color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   15. Gamer Badges & Gamification
   ========================================================================== */
.gameindir-gamer-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 2px 8px;
	border-radius: 12px;
	border: 1px solid;
	font-size: 11px;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.gameindir-badge-lvl {
	font-size: 9px;
	padding: 1px 4px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   16. In-App Notification Center
   ========================================================================== */
.header__notif-wrap {
	position: relative;
}

.header__notif-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
}

.header__notif-btn svg {
	width: 18px;
	height: 18px;
	fill: #cbd5e1;
}

.header__notif-btn:hover {
	border-color: #a782e9;
	background: #1f2640;
}

.header__notif-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	background: #ef4444;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 10px;
	line-height: 1.2;
	box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.header__notif-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	width: 320px;
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
	z-index: 1000;
	overflow: hidden;
}

.header__notif-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background: #161b2e;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}

.header__notif-head button {
	background: none;
	border: none;
	color: #a782e9;
	font-size: 11px;
	font-weight: 600;
	cursor: pointer;
}

.header__notif-list {
	max-height: 320px;
	overflow-y: auto;
}

@media (max-width: 767px) {
	.header__notif-wrap {
		position: static !important;
	}

	.header__notif-dropdown {
		position: absolute !important;
		top: calc(100% + 6px) !important;
		left: 12px !important;
		right: 12px !important;
		width: auto !important;
		max-width: 380px !important;
		margin: 0 auto !important;
		border-radius: 14px !important;
		z-index: 1000000 !important;
		box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 20px rgba(167, 130, 233, 0.2) !important;
		box-sizing: border-box !important;
	}

	.header__notif-list {
		max-height: 55vh !important;
	}
}

.gameindir-notif-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	text-decoration: none;
	color: #cbd5e1;
	transition: background 0.2s ease;
}

.gameindir-notif-item:hover {
	background: #161b2e;
	color: #fff;
}

.gameindir-notif-item.is-unread {
	background: rgba(167, 130, 233, 0.08);
}

.gameindir-notif-icon {
	font-size: 18px;
}

.gameindir-notif-body strong {
	display: block;
	font-size: 12px;
	color: #fff;
	margin-bottom: 2px;
}

.gameindir-notif-body p {
	font-size: 11px;
	color: #94a3b8;
	margin: 0 0 4px 0;
	line-height: 1.4;
}

.gameindir-notif-body small {
	font-size: 10px;
	color: #64748b;
}

/* ==============================================
   Catalog Filter Premium Cyberpunk Overhaul
   ============================================== */
.filter__group {
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 16px 18px;
	margin-bottom: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter__group:hover {
	border-color: rgba(56, 189, 248, 0.2);
}

.filter__label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	cursor: pointer;
	user-select: none;
}

.filter__label {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: 0.2px;
}

.filter__count-badge {
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(167, 130, 233, 0.2));
	color: #38bdf8;
	border: 1px solid rgba(56, 189, 248, 0.4);
	font-size: 10px;
	font-weight: 800;
	padding: 1px 7px;
	border-radius: 12px;
	box-shadow: 0 0 8px rgba(56, 189, 248, 0.2);
}

.filter__toggle-icon {
	color: #64748b;
	font-size: 12px;
	transition: transform 0.2s ease, color 0.2s ease;
}

.filter__label-row:hover .filter__toggle-icon {
	color: #38bdf8;
}

.filter__quick-search-box {
	position: relative;
	margin-bottom: 12px;
}

.filter__quick-search-box svg {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	fill: #64748b;
	pointer-events: none;
	transition: fill 0.2s ease;
}

.filter__quick-search-input {
	width: 100%;
	height: 34px;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 0 10px 0 32px;
	font-size: 12px;
	color: #fff;
	outline: none;
	transition: all 0.2s ease;
}

.filter__quick-search-input:focus {
	border-color: #38bdf8 !important;
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.filter__quick-search-input:focus + svg {
	fill: #38bdf8;
}

.filter__checkboxes--scrollable {
	max-height: 180px;
	overflow-y: auto;
	padding-right: 6px;
	margin: 0;
	list-style: none;
}

/* Custom Scrollbar for Filters */
.filter__checkboxes--scrollable::-webkit-scrollbar {
	width: 4px;
}

.filter__checkboxes--scrollable::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 4px;
}

.filter__checkboxes--scrollable::-webkit-scrollbar-thumb {
	background: rgba(56, 189, 248, 0.3);
	border-radius: 4px;
	transition: background 0.2s ease;
}

.filter__checkboxes--scrollable:hover::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #38bdf8, #a782e9);
}

.filter__term-item {
	display: flex;
	align-items: center;
	padding: 6px 8px;
	margin-bottom: 4px;
	border-radius: 6px;
	transition: background 0.15s ease;
}

.filter__term-item.is-hidden {
	display: none !important;
}

.filter__term-item:hover {
	background: rgba(255, 255, 255, 0.04);
}

.filter__term-item label {
	cursor: pointer;
	font-size: 13px !important;
	color: #cbd5e1 !important;
	transition: color 0.15s ease;
	width: 100%;
	display: block;
}

.filter__term-item:hover label {
	color: #fff !important;
}

.filter__term-item input:checked + label {
	color: #38bdf8 !important;
	font-weight: 600 !important;
}

/* ==========================================================================
   17. Spoilers & Comments Screenshots
   ========================================================================== */
.gameindir-spoiler-wrap {
	display: inline-block;
	background: #1f2640;
	border: 1px solid rgba(251, 191, 36, 0.3);
	border-radius: 6px;
	padding: 4px 10px;
	cursor: pointer;
	user-select: none;
	transition: all 0.2s ease;
}

.gameindir-spoiler-label {
	color: #fbbf24;
	font-size: 11px;
	font-weight: 700;
}

.gameindir-spoiler-content {
	filter: blur(8px);
	transition: filter 0.25s ease;
	display: block;
	margin-top: 4px;
}

.gameindir-spoiler-wrap.is-revealed .gameindir-spoiler-content {
	filter: blur(0);
}

.gameindir-spoiler-wrap.is-revealed .gameindir-spoiler-label {
	display: none;
}

.gameindir-comment-attach {
	margin-top: 10px;
}

.gameindir-comment-img-link {
	position: relative;
	display: inline-block;
	max-width: 220px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.gameindir-comment-thumb {
	width: 100%;
	height: auto;
	display: block;
}

.gameindir-attach-zoom {
	position: absolute;
	bottom: 6px;
	right: 6px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
}

/* ==========================================================================
   18. Follow Curator Button
   ========================================================================== */
.gameindir-follow-curator-btn {
	background: rgba(56, 189, 248, 0.15);
	border: 1px solid rgba(56, 189, 248, 0.3);
	color: #38bdf8;
	padding: 4px 12px;
	border-radius: 14px;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gameindir-follow-curator-btn:hover {
	background: #38bdf8;
	color: #fff;
	transform: scale(1.04);
}

.gameindir-follow-curator-btn.is-following {
	background: #10b981;
	border-color: #10b981;
	color: #fff;
}

.gameindir-collection-author-link {
	transition: opacity 0.2s ease;
}

.gameindir-collection-author-link:hover {
	opacity: 0.85;
}

.gameindir-collection-author-link:hover .gameindir-collection-author-name {
	color: #38bdf8 !important;
}

/* ==========================================================================
   19. Cyberpunk Gaming Comments & Admin Badges
   ========================================================================== */
.comments__list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.comments__item {
	margin-bottom: 18px;
}

.comments__item .children {
	list-style: none;
	padding-left: 28px;
	margin-top: 14px;
	border-left: 2px solid rgba(167, 130, 233, 0.35);
}

.gameindir-comment-card {
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 18px 22px;
	transition: all 0.2s ease;
}

.gameindir-comment-card:hover {
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.gameindir-comment--admin {
	border-color: rgba(251, 191, 36, 0.45) !important;
	background: linear-gradient(135deg, rgba(251, 191, 36, 0.06) 0%, rgba(16, 20, 35, 0.95) 100%) !important;
	box-shadow: 0 0 20px rgba(251, 191, 36, 0.12) !important;
}

.gameindir-admin-badge {
	background: linear-gradient(90deg, #fbbf24, #f59e0b);
	color: #000;
	font-size: 10px;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
	letter-spacing: 0.5px;
}

.gameindir-comment-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	flex-wrap: wrap;
	gap: 10px;
}

.gameindir-comment-user {
	display: flex;
	align-items: center;
	gap: 12px;
}

.gameindir-comment-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.gameindir-comment-name-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 2px;
	flex-wrap: wrap;
}

.gameindir-comment-author-name {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.gameindir-comment-author-name:hover {
	color: #a782e9;
}

.gameindir-comment-time {
	font-size: 11px;
	color: #64748b;
}

.gameindir-comment-reply-btn-wrap a {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	color: #94a3b8;
	text-decoration: none;
	transition: all 0.2s ease;
}

.gameindir-comment-reply-btn-wrap a:hover {
	background: #a782e9;
	color: #fff;
	border-color: #a782e9;
}

.gameindir-comment-body {
	color: #cbd5e1;
	font-size: 13px;
	line-height: 1.6;
}

.gameindir-comment-body p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS SUITE FOR USER PROFILE & AUTH (< 992px & < 768px)
   Strictly scoped to mobile devices - Zero impact on desktop!
   ========================================================================== */

/* 1. Tablet & Mobile Navigation Breakpoint (< 992px) */
@media (max-width: 991px) {
  .gameindir-profile-wrap {
    padding: 20px 0 45px 0 !important;
  }

  .gameindir-profile-sidebar {
    padding: 16px 14px 14px !important;
    margin-bottom: 20px !important;
    border-radius: 12px !important;
    background: #141829 !important;
  }

  .gameindir-profile-card {
    padding-bottom: 14px !important;
    margin-bottom: 12px !important;
  }

  .gameindir-avatar-preview {
    width: 80px !important;
    height: 80px !important;
  }

  .gameindir-profile-name {
    font-size: 17px !important;
    margin-bottom: 2px !important;
  }

  .gameindir-profile-meta {
    font-size: 11.5px !important;
  }

  /* Transform Profile Menu Tabs into a Native-App Swipeable Pill Strip */
  .gameindir-profile-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding: 4px 2px 10px 2px !important;
    margin: 0 !important;
    scrollbar-width: none !important;
  }

  .gameindir-profile-nav::-webkit-scrollbar {
    display: none !important;
  }

  .gameindir-profile-nav li {
    flex: 0 0 auto !important;
  }

  .gameindir-profile-nav li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .gameindir-profile-nav li a svg {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0 !important;
  }

  .gameindir-profile-nav li.is-active a {
    background: linear-gradient(135deg, rgba(167, 130, 233, 0.28), rgba(255, 85, 165, 0.18)) !important;
    border-color: rgba(167, 130, 233, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 0 14px rgba(167, 130, 233, 0.35) !important;
  }

  .gameindir-profile-nav li a:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
  }

  .gameindir-profile-nav--logout a {
    border-color: rgba(239, 68, 68, 0.25) !important;
    color: #f87171 !important;
  }

  .gameindir-profile-nav--logout a:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
  }

  .gameindir-tab-count-badge {
    font-size: 10px !important;
    padding: 1px 6px !important;
    border-radius: 10px !important;
  }
}

/* 2. Mobile Screens & Handheld Polish (< 768px) */
@media (max-width: 767px) {
  .gameindir-profile-content {
    padding: 20px 16px !important;
    border-radius: 12px !important;
    background: #141829 !important;
  }

  .gameindir-pane-header {
    margin-bottom: 18px !important;
  }

  .gameindir-pane-header h2 {
    font-size: 17px !important;
    letter-spacing: -0.2px !important;
  }

  .gameindir-pane-header p {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .gameindir-pane-divider {
    margin: 24px 0 20px 0 !important;
  }

  /* Full-width Touch Form Controls */
  .gameindir-profile-form input,
  .gameindir-profile-form textarea {
    height: 44px !important;
    font-size: 13.5px !important;
    padding: 0 12px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }

  .gameindir-profile-form textarea {
    height: auto !important;
    padding: 10px 12px !important;
  }

  .gameindir-profile-submit-btn {
    width: 100% !important;
    height: 46px !important;
    font-size: 13.5px !important;
    border-radius: 10px !important;
    justify-content: center !important;
    margin-top: 6px !important;
  }

  /* Rank & Level Tab Polish */
  .gameindir-rank-summary-card {
    padding: 16px !important;
    border-radius: 12px !important;
  }

  /* Collections Tab Mobile Polish */
  .gameindir-collection-card {
    padding: 14px 16px !important;
    border-radius: 10px !important;
  }

  .gameindir-collection-card-title {
    font-size: 14px !important;
    flex-wrap: wrap !important;
  }

  .gameindir-collection-posters-rack {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding-bottom: 6px !important;
    scrollbar-width: none !important;
  }

  .gameindir-collection-posters-rack::-webkit-scrollbar {
    display: none !important;
  }

  .gameindir-coll-mini-card {
    flex: 0 0 68px !important;
    width: 68px !important;
  }

  .gameindir-collection-form-panel {
    padding: 16px 14px !important;
    border-radius: 10px !important;
  }

  /* Public Curator View Hero Card */
  .gameindir-curator-hero-card {
    padding: 20px 16px !important;
    border-radius: 12px !important;
    margin-bottom: 24px !important;
  }

  .gameindir-curator-hero-card h1 {
    font-size: 20px !important;
  }
}

/* 3. Small Mobile Devices (<= 575px) */
@media (max-width: 575px) {
  /* Wishlist: Native 2-Column Mobile Game Cards */
  .gameindir-wishlist-item-col {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    margin-bottom: 12px !important;
  }

  .gameindir-wishlist-remove-btn {
    top: 6px !important;
    right: 6px !important;
    width: 30px !important;
    height: 30px !important;
    z-index: 5 !important;
  }

  .gameindir-wishlist-remove-btn svg {
    width: 13px !important;
    height: 13px !important;
  }

  /* Rank & Level: 2x2 Earn XP Grid */
  #tab-rank div[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  /* Followers Grid: Single Column */
  #tab-followers div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* ==========================================================================
   15. Legal & Compliance Page Styles
   ========================================================================== */
.legal-gateway-section {
	padding-top: 150px;
	padding-bottom: 70px;
}

/* Sidebar Styles */
.legal-sidebar {
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 22px;
	position: -webkit-sticky;
	position: sticky;
	top: 95px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.legal-sidebar__badge {
	display: inline-block;
	background: rgba(167, 130, 233, 0.15);
	border: 1px solid rgba(167, 130, 233, 0.35);
	color: #a782e9;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 6px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.legal-sidebar__title {
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 6px 0;
}

.legal-sidebar__desc {
	color: #94a3b8;
	font-size: 12.5px;
	line-height: 1.5;
	margin: 0 0 18px 0;
}

.legal-sidebar__list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.legal-sidebar__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: rgba(22, 27, 46, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	color: #cbd5e1;
	text-decoration: none !important;
	transition: all 0.25s ease;
}

.legal-sidebar__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	flex-shrink: 0;
	transition: all 0.25s ease;
}

.legal-sidebar__icon svg {
	width: 16px;
	height: 16px;
	fill: #94a3b8;
	transition: fill 0.25s ease;
}

.legal-sidebar__text {
	flex-grow: 1;
	min-width: 0;
}

.legal-sidebar__doc-title {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

.legal-sidebar__doc-badge {
	display: block;
	font-size: 11px;
	color: #94a3b8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 2px;
}

.legal-sidebar__arrow {
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.25s ease;
}

.legal-sidebar__link:hover {
	background: rgba(167, 130, 233, 0.12);
	border-color: rgba(167, 130, 233, 0.35);
	transform: translateX(3px);
}

.legal-sidebar__link:hover .legal-sidebar__icon svg {
	fill: #a782e9;
}

.legal-sidebar__link:hover .legal-sidebar__arrow {
	color: #a782e9;
	transform: translateX(2px);
}

.legal-sidebar__item.is-active .legal-sidebar__link {
	background: linear-gradient(135deg, rgba(167, 130, 233, 0.22), rgba(56, 189, 248, 0.14));
	border-color: #a782e9;
	box-shadow: 0 4px 18px rgba(167, 130, 233, 0.2);
}

.legal-sidebar__item.is-active .legal-sidebar__icon {
	background: #a782e9;
}

.legal-sidebar__item.is-active .legal-sidebar__icon svg {
	fill: #fff;
}

.legal-sidebar__item.is-active .legal-sidebar__doc-title {
	color: #fff;
}

.legal-sidebar__item.is-active .legal-sidebar__doc-badge {
	color: #c4b5fd;
}

.legal-sidebar__item.is-active .legal-sidebar__arrow {
	color: #a782e9;
	transform: translateX(3px);
}

/* Sidebar Legal Assistance Box */
.legal-sidebar__support {
	background: linear-gradient(135deg, rgba(22, 27, 46, 0.95), rgba(16, 20, 35, 0.95));
	border: 1px solid rgba(167, 130, 233, 0.25);
	border-radius: 12px;
	padding: 16px;
	text-align: center;
}

.legal-sidebar__support-icon {
	width: 38px;
	height: 38px;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	background: rgba(167, 130, 233, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.legal-sidebar__support-icon svg {
	width: 18px;
	height: 18px;
	fill: #a782e9;
}

.legal-sidebar__support h4 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 6px 0;
}

.legal-sidebar__support p {
	color: #94a3b8;
	font-size: 11.5px;
	line-height: 1.45;
	margin: 0 0 12px 0;
}

.legal-sidebar__support-btn {
	display: inline-block;
	width: 100%;
	padding: 7px 12px;
	background: rgba(167, 130, 233, 0.2);
	border: 1px solid rgba(167, 130, 233, 0.4);
	border-radius: 8px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.legal-sidebar__support-btn:hover {
	background: #a782e9;
	color: #fff;
	box-shadow: 0 4px 14px rgba(167, 130, 233, 0.35);
}

/* Legal Article Main Box */
.legal-article {
	background: #101423;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 36px 42px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.legal-article__meta-top {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.legal-article__badge {
	background: rgba(167, 130, 233, 0.15);
	border: 1px solid rgba(167, 130, 233, 0.35);
	color: #a782e9;
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.legal-article__read-time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #94a3b8;
	font-size: 12.5px;
}

.legal-article__read-time svg {
	width: 14px;
	height: 14px;
	fill: #94a3b8;
}

.legal-article__last-rev {
	color: #94a3b8;
	font-size: 12.5px;
	margin-left: auto;
}

.legal-article__last-rev strong {
	color: #cbd5e1;
}

.legal-article__title {
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.legal-article__lead {
	color: #94a3b8;
	font-size: 14.5px;
	line-height: 1.65;
	margin: 0 0 28px 0;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Legal Body Typography */
.legal-article__body {
	color: #cbd5e1;
	font-size: 14px;
	line-height: 1.75;
}

.legal-article__body h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	margin: 34px 0 14px 0;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	gap: 8px;
}

.legal-article__body h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin: 22px 0 10px 0;
}

.legal-article__body h4 {
	color: #fff;
	font-size: 14.5px;
	font-weight: 700;
	margin: 16px 0 8px 0;
}

.legal-article__body p {
	margin-bottom: 14px;
}

.legal-article__body ul,
.legal-article__body ol {
	padding-left: 24px;
	margin-bottom: 16px;
}

.legal-article__body li {
	margin-bottom: 8px;
}

.legal-article__body li strong {
	color: #fff;
}

.legal-article__body a {
	color: #38bdf8;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.legal-article__body a:hover {
	color: #a782e9;
}

.legal-article__body code {
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #38bdf8;
	padding: 2px 7px;
	border-radius: 5px;
	font-family: monospace;
	font-size: 13px;
}

/* Callout Alert Boxes */
.legal-callout {
	background: #161b2e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 4px solid #a782e9;
	border-radius: 10px;
	padding: 16px 20px;
	margin: 22px 0;
}

.legal-callout h4 {
	color: #fff;
	font-size: 14.5px;
	font-weight: 700;
	margin: 0 0 6px 0;
}

.legal-callout p:last-child {
	margin-bottom: 0;
}

.legal-callout--warning {
	border-left-color: #f59e0b;
	background: rgba(245, 158, 11, 0.08);
	border-color: rgba(245, 158, 11, 0.2);
}

.legal-callout--warning h4 {
	color: #fbbf24;
}

.legal-callout--info {
	border-left-color: #38bdf8;
	background: rgba(56, 189, 248, 0.08);
	border-color: rgba(56, 189, 248, 0.2);
}

.legal-callout--info h4 {
	color: #38bdf8;
}

.legal-callout--danger {
	border-left-color: #ef4444;
	background: rgba(239, 68, 68, 0.08);
	border-color: rgba(239, 68, 68, 0.2);
}

.legal-callout--danger h4 {
	color: #f87171;
}

/* Document Footer */
.legal-article__footer {
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.legal-article__footer-left span {
	display: block;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.legal-article__footer-left small {
	display: block;
	color: #64748b;
	font-size: 11.5px;
	margin-top: 2px;
}

.legal-article__footer-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.legal-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.2s ease;
}

.legal-btn svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.legal-btn--ghost {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #cbd5e1;
}

.legal-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.legal-btn--primary {
	background: #a782e9;
	border: 1px solid #a782e9;
	color: #fff;
	box-shadow: 0 4px 14px rgba(167, 130, 233, 0.35);
}

.legal-btn--primary:hover {
	background: #8b5cf6;
	color: #fff;
}

/* ==========================================================================
   Legal & Compliance Responsive Styles (Tablet & Mobile)
   ========================================================================== */
@media (max-width: 991px) {
	.legal-gateway-section {
		padding-top: 105px !important;
		padding-bottom: 45px !important;
	}

	.legal-sidebar {
		position: static;
		margin-bottom: 24px;
	}

	.legal-sidebar__list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.legal-article {
		padding: 26px 22px;
	}

	.legal-article__title {
		font-size: 24px;
	}
}

@media (max-width: 575px) {
	.legal-gateway-section {
		padding-top: 85px !important;
		padding-bottom: 35px !important;
	}

	.legal-sidebar {
		padding: 16px 14px;
		border-radius: 12px;
		margin-bottom: 18px;
	}

	.legal-sidebar__title {
		font-size: 16px;
	}

	.legal-sidebar__desc {
		font-size: 12px;
		margin-bottom: 14px;
	}

	/* Mobile Sidebar: Horizontal Scrollable Pills */
	.legal-sidebar__list {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 8px;
		margin-bottom: 14px;
		padding-bottom: 4px;
	}

	.legal-sidebar__list::-webkit-scrollbar {
		display: none;
	}

	.legal-sidebar__item {
		flex-shrink: 0;
	}

	.legal-sidebar__link {
		padding: 8px 12px;
		border-radius: 8px;
		gap: 8px;
	}

	.legal-sidebar__icon {
		width: 26px;
		height: 26px;
	}

	.legal-sidebar__icon svg {
		width: 13px;
		height: 13px;
	}

	.legal-sidebar__doc-title {
		font-size: 12px;
	}

	.legal-sidebar__doc-badge {
		display: none; /* Hide subtitle badge on ultra-compact mobile pills */
	}

	.legal-sidebar__arrow {
		display: none;
	}

	.legal-sidebar__support {
		display: none; /* Keep mobile clean, support is in footer */
	}

	/* Article Mobile Polish */
	.legal-article {
		padding: 20px 16px;
		border-radius: 12px;
	}

	.legal-article__title {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.legal-article__lead {
		font-size: 13px;
		margin-bottom: 20px;
		padding-bottom: 16px;
	}

	.legal-article__body {
		font-size: 13px;
		line-height: 1.7;
	}

	.legal-article__body h2 {
		font-size: 17px;
		margin: 26px 0 10px 0;
	}

	.legal-article__body h3 {
		font-size: 15px;
		margin: 18px 0 8px 0;
	}

	.legal-callout {
		padding: 14px 14px;
		margin: 16px 0;
	}

	.legal-article__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.legal-article__footer-right {
		width: 100%;
	}

	.legal-article__footer-right .legal-btn {
		flex: 1;
		justify-content: center;
	}
}

/* ==========================================================================
   16. HOMEPAGE EDITORIAL SEO CONTENT & GUIDE CARD
   ========================================================================== */
.home-seo-card {
	position: relative;
	background: linear-gradient(135deg, rgba(22, 27, 46, 0.95) 0%, rgba(17, 21, 36, 0.98) 100%);
	border: 1px solid rgba(167, 130, 233, 0.18);
	border-radius: 16px;
	padding: 36px 40px;
	overflow: hidden;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(12px);
}

.home-seo-card__glow {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(167, 130, 233, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.home-seo-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(167, 130, 233, 0.12);
	border: 1px solid rgba(167, 130, 233, 0.28);
	color: #a782e9;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.home-seo-card__badge svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.home-seo-card__title {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 18px 0;
	letter-spacing: -0.4px;
	line-height: 1.35;
}

.home-seo-card__body {
	color: #94a3b8;
	font-size: 14.5px;
	line-height: 1.8;
}

.home-seo-card__body p {
	margin-bottom: 16px;
}

.home-seo-card__body p:last-child {
	margin-bottom: 0;
}

.home-seo-card__body strong {
	color: #f1f5f9;
}

.home-seo-card__body a {
	color: #a782e9;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(167, 130, 233, 0.4);
	text-underline-offset: 3px;
	transition: all 0.2s ease;
}

.home-seo-card__body a:hover {
	color: #ff55a5;
	text-decoration-color: #ff55a5;
}

.home-seo-card__footer {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.home-seo-pillar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.home-seo-pillar__icon {
	font-size: 22px;
	line-height: 1;
	flex-shrink: 0;
}

.home-seo-pillar__text {
	display: flex;
	flex-direction: column;
}

.home-seo-pillar__text strong {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.home-seo-pillar__text span {
	color: #64748b;
	font-size: 11.5px;
}

@media (max-width: 767px) {
	.home-seo-card {
		padding: 24px 18px;
	}
	.home-seo-card__title {
		font-size: 18px;
	}
	.home-seo-card__body {
		font-size: 13.5px;
	}
	.home-seo-card__footer {
		grid-template-columns: 1fr;
	}
}









