:root {
	--bg: #050508;
	--panel: rgba(13, 14, 20, 0.78);
	--panel-strong: rgba(16, 16, 24, 0.94);
	--line: rgba(255, 255, 255, 0.09);
	--line-soft: rgba(255, 255, 255, 0.07);
	--line-red: rgba(255, 45, 70, 0.42);

	--text: #f6f6f7;
	--muted: #8e93a4;
	--soft: #c7cbd6;

	--red: #ff3048;
	--red-2: #b60d24;
	--green: #25df6b;
	--amber: #ffb84d;

	--shadow-red:
		0 0 0 1px rgba(255, 48, 72, 0.25),
		0 30px 90px rgba(255, 48, 72, 0.1);

	--font-display: "Bebas Neue", "Rajdhani", Impact, sans-serif;
	--font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-tech: "Rajdhani", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 48, 72, 0.85) rgba(10, 10, 15, 0.96);
	max-width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	min-height: 100vh;
	max-width: 100%;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-main);
	overflow-x: hidden;
	opacity: 0;
	transition: opacity 0.35s ease;
}

body.ready {
	opacity: 1;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -5;
	pointer-events: none;
	opacity: 0.065;
	mix-blend-mode: screen;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
	background-size: 180px 180px;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
	width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
	background: rgba(10, 10, 15, 0.96);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(255, 48, 72, 0.95), rgba(132, 11, 27, 0.9));
	border: 2px solid rgba(10, 10, 15, 0.96);
	border-radius: 999px;
}

::selection {
	background: rgba(255, 48, 72, 0.42);
	color: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

.hidden {
	display: none !important;
}

/* =========================================================
   Background
   ========================================================= */

.site-bg {
	position: fixed;
	inset: 0;
	z-index: -10;
	pointer-events: none;
	background: #050508;
	overflow: hidden;
}

.bg-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(circle at 50% 20%, #000 0%, rgba(0, 0, 0, 0.75) 45%, transparent 82%);
}

.bg-red-glow {
	position: absolute;
	border-radius: 999px;
	filter: blur(70px);
	opacity: 0.44;
}

.bg-red-glow-a {
	width: 680px;
	height: 400px;
	left: 26%;
	top: 5%;
	background: rgba(255, 48, 72, 0.28);
}

.bg-red-glow-b {
	width: 520px;
	height: 420px;
	right: -12%;
	bottom: -8%;
	background: rgba(255, 117, 39, 0.16);
}

.bg-vignette {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 16%, transparent 0, rgba(5, 5, 8, 0.3) 48%, rgba(5, 5, 8, 0.92) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 30%, rgba(0, 0, 0, 0.48));
}

/* =========================================================
   Header
   ========================================================= */

.topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	height: 78px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 0 44px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(5, 5, 8, 0.78);
	backdrop-filter: blur(14px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	justify-self: start;
}

.brand-logo {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	border-radius: 14px;
	background: rgba(255, 48, 72, 0.08);
	border: 1px solid rgba(255, 48, 72, 0.28);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		0 12px 32px rgba(255, 48, 72, 0.16);
	overflow: hidden;
}

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

.brand:hover .brand-logo {
	border-color: rgba(255, 48, 72, 0.55);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06) inset,
		0 16px 42px rgba(255, 48, 72, 0.26);
}

.brand-mark {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--red), #7e0b18);
	color: #fff;
	font-weight: 900;
	box-shadow: 0 0 34px rgba(255, 48, 72, 0.34);
}

.brand-text {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	min-width: 0;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: var(--font-tech);
	white-space: nowrap;
}

.brand-text strong {
	color: var(--red);
}

.brand-text em {
	font-style: normal;
	color: #fff;
}

.main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	min-width: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-family: var(--font-tech);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	justify-self: center;
}

.main-nav a {
	position: relative;
	transition:
		color 0.18s ease,
		transform 0.18s ease;
}

.main-nav a:hover {
	color: #fff;
	transform: translateY(-1px);
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 0;
	height: 2px;
	background: var(--red);
	transition: width 0.2s ease;
}

.main-nav a:hover::after {
	width: 100%;
}

.admin-link {
	color: #ffc46b !important;
}

.top-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	min-width: 0;
	justify-self: end;
}

.ghost-btn {
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	font-family: var(--font-tech);
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition:
		transform 0.16s ease,
		background 0.16s ease,
		border-color 0.16s ease;
}

.ghost-btn:hover {
	transform: translateY(-2px);
	background: rgba(255, 48, 72, 0.11);
	border-color: rgba(255, 48, 72, 0.36);
}

.ghost-btn svg {
	width: 16px;
	height: 16px;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 32px;
	padding: 0 14px;
	border: 1px solid rgba(37, 223, 107, 0.25);
	background: rgba(37, 223, 107, 0.08);
	color: #74ff9c;
	font-size: 11px;
	font-family: var(--font-tech);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.status-pill svg {
	width: 14px;
	height: 14px;
}

/* =========================================================
   GTranslate Header Dropdown
   ========================================================= */

.translate-top {
	position: relative;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 40px;
	flex: 0 0 150px;
}

.gtranslate_wrapper {
	position: relative !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

/* Native Select / Dropdown */
.gtranslate_wrapper select,
.gtranslate_wrapper .gt_selector {
	width: 150px !important;
	height: 40px !important;
	margin: 0 !important;
	padding: 0 34px 0 14px !important;
	background: rgba(9, 10, 16, 0.74) !important;
	color: #f8fafc !important;
	border: 1px solid rgba(255, 255, 255, 0.09) !important;
	border-top-color: rgba(255, 48, 72, 0.45) !important;
	border-radius: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	font-family: var(--font-tech, "Rajdhani", Inter, system-ui, sans-serif) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	letter-spacing: 0.07em !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%) !important;
}

.gtranslate_wrapper select:hover,
.gtranslate_wrapper .gt_selector:hover {
	background: rgba(14, 15, 23, 0.94) !important;
	border-color: rgba(255, 48, 72, 0.5) !important;
}

.gtranslate_wrapper select:focus,
.gtranslate_wrapper .gt_selector:focus {
	border-color: rgba(255, 48, 72, 0.75) !important;
	box-shadow: 0 0 0 3px rgba(255, 48, 72, 0.12) !important;
}

.gtranslate_wrapper select option,
.gtranslate_wrapper .gt_selector option {
	background: #090a12 !important;
	color: #f8fafc !important;
	font-family: Inter, system-ui, sans-serif !important;
	font-size: 13px !important;
}

/* GTranslate Dropdown Widget */
.gtranslate_wrapper .gt_switcher,
.gtranslate_wrapper .gt_container,
.gtranslate_wrapper .gt_float_switcher {
	position: relative !important;
	inset: auto !important;
	width: 150px !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	font-family: inherit !important;
}

.gtranslate_wrapper .gt_switcher .gt_selected,
.gtranslate_wrapper .gt_float_switcher .gt-selected {
	background: rgba(9, 10, 16, 0.74) !important;
	border: 1px solid rgba(255, 255, 255, 0.09) !important;
	border-top-color: rgba(255, 48, 72, 0.45) !important;
	color: #f8fafc !important;
	height: 40px !important;
	display: flex !important;
	align-items: center !important;
	clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%) !important;
}

.gtranslate_wrapper .gt_switcher .gt_selected a,
.gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
	color: #f8fafc !important;
	font-family: var(--font-tech, "Rajdhani", Inter, system-ui, sans-serif) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	letter-spacing: 0.07em !important;
}

.gtranslate_wrapper .gt_switcher .gt_option,
.gtranslate_wrapper .gt_float_switcher .gt_options {
	position: absolute !important;
	top: calc(100% + 2px) !important;
	left: 0 !important;
	width: 150px !important;
	background: #090a12 !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55) !important;
	z-index: 999999 !important;
}

.gtranslate_wrapper .gt_switcher .gt_option a,
.gtranslate_wrapper .gt_float_switcher .gt_options a {
	color: #f8fafc !important;
	background: transparent !important;
	font-family: Inter, system-ui, sans-serif !important;
	font-size: 13px !important;
	padding: 9px 12px !important;
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}

.gtranslate_wrapper .gt_switcher .gt_option a:hover,
.gtranslate_wrapper .gt_float_switcher .gt_options a:hover {
	background: rgba(255, 48, 72, 0.16) !important;
	color: #fff !important;
}

.gtranslate_wrapper img {
	width: 20px !important;
	height: auto !important;
	margin-right: 7px !important;
}

/* =========================================================
   Layout
   ========================================================= */

.section-shell {
	width: min(1500px, calc(100% - 76px));
	margin: 0 auto;
	max-width: 100%;
	min-width: 0;
}

.hero {
	min-height: calc(100vh - 78px);
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.72fr);
	align-items: center;
	gap: 64px;
	padding-top: 74px;
	padding-bottom: 88px;
}

.micro-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.micro-chip {
	height: 28px;
	display: inline-flex;
	align-items: center;
	padding: 0 16px;
	font-size: 11px;
	font-family: var(--font-tech);
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
}

.micro-chip.green {
	background: rgba(37, 223, 107, 0.12);
	color: #62ff92;
}

.micro-chip.red {
	background: rgba(255, 48, 72, 0.13);
	color: #ff6678;
}

.eyebrow,
.panel-kicker,
.section-heading span,
.red-label {
	color: var(--red);
	font-family: var(--font-tech);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.46em;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(76px, 11vw, 174px);
	line-height: 0.82;
	letter-spacing: 0.012em;
	text-transform: uppercase;
	text-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
	color: var(--red);
}

.hero-copy {
	max-width: 650px;
	margin: 28px 0 0;
	color: var(--muted);
	line-height: 1.8;
	font-size: 16px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 38px;
}

.primary-btn,
.line-btn,
.submit-btn {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	font-family: var(--font-tech);
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.primary-btn {
	padding: 0 34px;
	background: var(--red);
	color: #fff;
	clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
	box-shadow: 0 18px 44px rgba(255, 48, 72, 0.26);
	transition:
		transform 0.16s ease,
		filter 0.16s ease;
}

.primary-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
}

.line-btn {
	padding: 0 26px;
	background: transparent;
	color: #fff;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	max-width: 600px;
	margin-top: 58px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-stats strong {
	display: block;
	color: var(--red);
	font-size: 32px;
	font-family: var(--font-tech);
	line-height: 1;
}

.hero-stats span {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}



/* =========================================================
   Live Stats
   ========================================================= */

.live-stats-section {
    padding-top: 18px;
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.live-stat-card {
    position: relative;
    min-height: 170px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 48, 72, 0.18), transparent 42%),
        linear-gradient(145deg, rgba(18, 18, 27, 0.86), rgba(8, 8, 12, 0.78));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.live-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.055), transparent);
    transform: translateX(-70%);
    transition: transform 0.35s ease;
}

.live-stat-card:hover::before {
    transform: translateX(70%);
}

.live-stat-card svg {
    width: 28px;
    height: 28px;
    color: var(--red);
    margin-bottom: 22px;
    filter: drop-shadow(0 0 18px rgba(255, 48, 72, 0.32));
}

.live-stat-card strong {
    display: block;
    color: #fff;
    font-family: var(--font-tech);
    font-size: clamp(42px, 5vw, 74px);
    line-height: 0.9;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.live-stat-card span {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================================================
   Finder Form
   ========================================================= */

.finder-panel {
	position: relative;
	padding: 34px;
	border: 1px solid rgba(255, 48, 72, 0.24);
	background: linear-gradient(145deg, rgba(18, 18, 27, 0.88), rgba(10, 10, 14, 0.74));
	box-shadow:
		var(--shadow-red),
		0 40px 100px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.finder-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(480px 260px at 82% 0%, rgba(255, 48, 72, 0.18), transparent 64%);
	pointer-events: none;
}

.finder-panel > * {
	position: relative;
	z-index: 2;
}

.finder-panel h2 {
	margin: 10px 0 8px;
	font-family: var(--font-display);
	font-size: 58px;
	line-height: 0.9;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.finder-panel p {
	margin: 0 0 26px;
	color: var(--muted);
	line-height: 1.7;
}

.input-label {
	display: block;
	margin-bottom: 9px;
	color: #fff;
	font-family: var(--font-tech);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 12px;
}

.search-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 60px;
	padding: 0 14px 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	background: rgba(0, 0, 0, 0.28);
	transition:
		border-color 0.18s ease,
		box-shadow 0.18s ease;
}

.search-wrap:focus-within {
	border-color: rgba(255, 48, 72, 0.72);
	box-shadow: 0 0 0 4px rgba(255, 48, 72, 0.08);
}

.search-wrap.error {
	border-color: rgba(255, 48, 72, 0.9);
}

.search-wrap svg {
	width: 20px;
	height: 20px;
	color: var(--red);
	flex: 0 0 auto;
}

.search-wrap input {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font-size: 15px;
}

.search-wrap input::placeholder {
	color: rgba(255, 255, 255, 0.32);
}

.mini-btn {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	display: grid;
	place-items: center;
}

.mini-btn:hover {
	background: rgba(255, 48, 72, 0.16);
	border-color: rgba(255, 48, 72, 0.34);
}

.validator-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 12px 0 20px;
	color: var(--muted);
	font-size: 12px;
}

.validate-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	font-family: var(--font-tech);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.validate-badge svg {
	width: 14px;
	height: 14px;
}

.validate-badge.ok {
	color: #74ff9c;
	border-color: rgba(37, 223, 107, 0.28);
	background: rgba(37, 223, 107, 0.08);
}

.validate-badge.warn {
	color: #ffd076;
	border-color: rgba(255, 184, 77, 0.3);
	background: rgba(255, 184, 77, 0.08);
}

.validate-badge.err {
	color: #ff7786;
	border-color: rgba(255, 48, 72, 0.35);
	background: rgba(255, 48, 72, 0.1);
}

.submit-btn {
	width: 100%;
	gap: 12px;
	background: var(--red);
	color: #fff;
	box-shadow: 0 18px 44px rgba(255, 48, 72, 0.23);
	transition:
		transform 0.16s ease,
		filter 0.16s ease,
		opacity 0.16s ease;
}

.submit-btn:hover:not(:disabled) {
	transform: translateY(-2px);
	filter: brightness(1.08);
}

.submit-btn:disabled {
	opacity: 0.7;
	cursor: wait;
}

.spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 999px;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.form-actions button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: var(--soft);
	font-size: 12px;
}

.form-actions button:hover {
	color: #fff;
	border-color: rgba(255, 48, 72, 0.32);
	background: rgba(255, 48, 72, 0.1);
}

.form-actions svg {
	width: 14px;
	height: 14px;
}

/* =========================================================
   Sections
   ========================================================= */

.section-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 42px;
}

.section-heading.compact {
	margin-top: 0;
	margin-bottom: 24px;
}

.section-heading h2 {
	margin: 10px 0 0;
	font-family: var(--font-display);
	font-size: clamp(46px, 6vw, 86px);
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.035em;
}

.section-heading p {
	margin: 14px auto 0;
	color: var(--muted);
	line-height: 1.75;
}

.features-section,
.faq-section {
	padding: 72px 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.feature-card {
	min-height: 210px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(17, 18, 27, 0.58);
	transition:
		transform 0.18s ease,
		border-color 0.18s ease,
		background 0.18s ease;
}

.feature-card:hover,
.feature-card.active {
	transform: translateY(-6px);
	border-color: rgba(255, 48, 72, 0.58);
	background: rgba(23, 19, 28, 0.82);
	box-shadow: var(--shadow-red);
}

.feature-card svg {
	width: 30px;
	height: 30px;
	color: var(--red);
	padding: 7px;
	background: rgba(255, 48, 72, 0.1);
	box-sizing: content-box;
}

.feature-card h3 {
	margin: 26px 0 10px;
	font-family: var(--font-tech);
	font-size: 22px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.feature-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
	font-size: 14px;
}

.compare-section {
	padding: 54px 0 64px;
}

.compare-section .section-heading {
	margin-bottom: 28px;
}

.compare-list {
	display: grid;
	gap: 14px;
	max-width: 980px;
	margin: 0 auto;
}

.compare-item {
	position: relative;
	overflow: hidden;
	border-color: rgba(255, 48, 72, 0.18);
	background:
		radial-gradient(circle at 12% 0%, rgba(255, 48, 72, 0.14), transparent 38%),
		linear-gradient(145deg, rgba(18, 18, 27, 0.92), rgba(8, 8, 12, 0.84));
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.compare-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--red), rgba(255, 48, 72, 0.08));
	opacity: 0.9;
}

.compare-item summary {
	padding-left: 24px;
}

.compare-item summary span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.compare-item summary span::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--red);
	box-shadow: 0 0 18px rgba(255, 48, 72, 0.55);
}

.compare-item p {
	padding-left: 24px;
}

/* =========================================================
   Error / Result
   ========================================================= */

.error-wrap {
	padding-top: 0;
	padding-bottom: 22px;
}

.error-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 48, 72, 0.36);
	background: rgba(44, 9, 16, 0.72);
}

.error-icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	color: #fff;
	background: rgba(255, 48, 72, 0.18);
}

.error-icon svg {
	width: 24px;
	height: 24px;
}

.error-card h3 {
	margin: 0 0 4px;
}

.error-card p {
	margin: 0;
	color: #ffbdc5;
}

.error-card .ghost-btn {
	margin-left: auto;
}

.result-wrap {
	padding-bottom: 72px;
}

.result-card,
.result-body,
.result-main,
.result-side,
.result-section,
.side-card,
.result-details,
.details-content {
	max-width: 100%;
	min-width: 0;
}

.result-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(13, 14, 20, 0.76);
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.result-hero {
	position: relative;
	min-height: 250px;
	display: flex;
	align-items: flex-end;
	padding: 28px;
	background:
		radial-gradient(800px 260px at 50% 0%, rgba(255, 48, 72, 0.24), transparent 65%),
		linear-gradient(135deg, rgba(26, 22, 32, 0.9), rgba(7, 7, 10, 0.92));
}

.result-hero.has-banner {
	background-size: cover;
	background-position: center;
}

.result-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(5, 5, 8, 0.88));
}

.result-titlebar {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.server-icon,
.server-icon-placeholder {
	width: 66px;
	height: 66px;
	flex: 0 0 66px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #0d0d12;
}

.server-icon {
	object-fit: cover;
}

.server-icon-placeholder {
	display: grid;
	place-items: center;
	background: rgba(255, 48, 72, 0.13);
	border-color: rgba(255, 48, 72, 0.25);
	color: var(--red);
}

.server-name {
	margin: 0;
	font-family: var(--font-tech);
	font-size: clamp(24px, 4vw, 42px);
	line-height: 1;
	letter-spacing: 0.03em;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.server-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 10px;
	max-width: 100%;
}

.meta-chip,
.tag-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.32);
	color: var(--soft);
	font-size: 12px;
	max-width: 100%;
	min-width: 0;
}

.meta-chip.online {
	color: #74ff9c;
	border-color: rgba(37, 223, 107, 0.28);
	background: rgba(37, 223, 107, 0.08);
}

.meta-chip.red {
	color: #ff7d8a;
	border-color: rgba(255, 48, 72, 0.3);
	background: rgba(255, 48, 72, 0.08);
}

.result-body {
	padding: 28px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 26px;
}

.result-section {
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(0, 0, 0, 0.22);
	overflow: hidden;
}

.result-section + .result-section {
	margin-top: 18px;
}

.result-section h3 {
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-tech);
	font-size: 18px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.result-section h3 svg {
	width: 18px;
	height: 18px;
	color: var(--red);
}

.result-section p,
.details-content,
.side-card {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.endpoint-list,
.ip-list,
.tag-list {
	display: grid;
	gap: 10px;
}

.endpoint-card,
.ip-card {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.035);
	min-width: 0;
	overflow: hidden;
}

.endpoint-card > div,
.ip-card > div {
	min-width: 0;
}

.endpoint-head {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	display: flex;
	justify-content: space-between;
	gap: 14px;
	min-width: 0;
}

.endpoint-head strong {
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.mono {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.small-muted {
	color: var(--muted);
	font-size: 12px;
	margin-top: 5px;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.copy-btn,
.connect-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 32px;
	padding: 0 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 12px;
}

.copy-btn:hover,
.connect-btn:hover {
	border-color: rgba(255, 48, 72, 0.45);
	background: rgba(255, 48, 72, 0.13);
}

.result-side {
	min-width: 0;
}

.side-card {
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(0, 0, 0, 0.24);
	overflow: hidden;
}

.side-card + .side-card {
	margin-top: 18px;
}

.kv {
	display: grid;
	gap: 10px;
}

.kv div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	color: var(--muted);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 10px;
}

.kv strong {
	color: #fff;
	text-align: right;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.kv span {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
}

.tag-chip {
	color: #fff;
}

.result-details {
	margin-top: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.18);
	overflow: hidden;
}

.result-details summary {
	list-style: none;
	cursor: pointer;
	padding: 14px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	font-family: var(--font-tech);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.result-details summary::-webkit-details-marker {
	display: none;
}

.details-content {
	padding: 0 16px 16px;
	overflow-x: auto;
}

.table-scroll {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.table-scroll .data-table {
	min-width: 620px;
	border: 0;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.data-table th,
.data-table td {
	text-align: left;
	padding: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	vertical-align: top;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.data-table th {
	color: #fff;
	font-family: var(--font-tech);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.data-table td {
	color: var(--soft);
}

/* =========================================================
   Locale / Flags
   ========================================================= */

.flag-emoji {
	display: inline-flex;
	align-items: center;
}

.flag-emoji img {
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: -0.15em;
}

.locale-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.locale-flag-img {
	width: 18px;
	height: 18px;
	display: inline-block;
	object-fit: contain;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.locale-flag-fallback {
	display: inline-flex;
	width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
}

/* =========================================================
   FAQ / Footer
   ========================================================= */

.faq-list {
	max-width: 920px;
	margin: 0 auto;
	display: grid;
	gap: 13px;
}

.faq-item {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(0, 0, 0, 0.14);
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 66px;
	padding: 0 20px;
	color: #fff;
	font-family: var(--font-tech);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary svg {
	width: 18px;
	height: 18px;
	color: var(--red);
	transition: transform 0.18s ease;
}

.faq-item[open] summary svg {
	transform: rotate(45deg);
}

.faq-item div {
	padding: 0 20px 20px;
	color: var(--muted);
	line-height: 1.75;
}

.footer {
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 44px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
}

.footer strong {
	display: block;
	color: #fff;
	font-family: var(--font-tech);
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.footer span {
	font-size: 12px;
}

.footer-links {
	display: flex;
	gap: 20px;
	font-size: 12px;
	font-family: var(--font-tech);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

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

/* =========================================================
   Toast / Modal / Scroll
   ========================================================= */

.toast-host {
	position: fixed;
	right: 18px;
	top: 92px;
	z-index: 100;
	display: grid;
	gap: 10px;
	width: min(360px, calc(100vw - 36px));
	pointer-events: none;
}

.toast {
	pointer-events: auto;
	padding: 13px 15px;
	border: 1px solid rgba(255, 48, 72, 0.28);
	background: rgba(13, 14, 20, 0.96);
	color: #fff;
	box-shadow: var(--shadow-red);
	animation: toastIn 0.18s ease-out;
}

@keyframes toastIn {
	from {
		transform: translateY(-6px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.scroll-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 60;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 48, 72, 0.3);
	background: rgba(13, 14, 20, 0.86);
	color: #fff;
	display: grid;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition:
		opacity 0.18s ease,
		transform 0.18s ease;
}

.scroll-top.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-top:hover {
	background: var(--red);
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(10px);
}

.modal-backdrop.open {
	display: flex;
}

.modal-card {
	position: relative;
	width: min(860px, 100%);
	border: 1px solid rgba(255, 48, 72, 0.25);
	background: rgba(13, 14, 20, 0.96);
	box-shadow: 0 40px 110px rgba(0, 0, 0, 0.65);
}

.modal-close {
	position: absolute;
	right: 14px;
	top: 14px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
}

.modal-head {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: radial-gradient(500px 180px at 40% 0%, rgba(255, 48, 72, 0.16), transparent 70%);
}

.modal-icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	background: rgba(255, 48, 72, 0.13);
	color: var(--red);
	border: 1px solid rgba(255, 48, 72, 0.25);
}

.modal-head h3 {
	margin: 0;
	font-family: var(--font-tech);
	font-size: 30px;
	letter-spacing: 0.06em;
}

.modal-head p {
	margin: 4px 0 0;
	color: var(--muted);
}

.modal-body {
	padding: 26px;
	color: var(--soft);
}

.modal-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 18px;
}

.modal-info-grid div {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.2);
	padding: 14px;
}

.modal-info-grid span {
	display: block;
	color: var(--muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.modal-info-grid strong {
	display: block;
	color: #fff;
	margin-top: 6px;
}

.chip-row,
.owner-focus,
.owner-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.chip-row span,
.owner-focus div,
.owner-links a {
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(0, 0, 0, 0.2);
	padding: 10px 12px;
	color: #fff;
}

.owner-focus div {
	flex: 1 1 180px;
}

.owner-focus strong {
	display: block;
	color: var(--red);
}

/* =========================================================
   Animation
   ========================================================= */

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}

.reveal.reveal-in {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================================
   Mobile Data Cards
   ========================================================= */

.mobile-data-list {
	display: none;
}

.mobile-data-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.025);
	padding: 12px;
	display: grid;
	gap: 8px;
	min-width: 0;
}

.mobile-data-card .mobile-label {
	font-family: var(--font-tech);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.mobile-data-card .mobile-value {
	color: var(--soft);
	line-height: 1.55;
	overflow-wrap: anywhere;
	word-break: break-word;
	white-space: pre-wrap;
	min-width: 0;
}

.mobile-data-card .mobile-key {
	color: #fff;
	font-family: var(--font-tech);
	font-weight: 800;
	letter-spacing: 0.06em;
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1280px) {
	.main-nav {
		gap: 24px;
	}
}

@media (max-width: 1100px) {
	.topbar {
		gap: 16px;
		padding: 0 24px;
	}

	.main-nav {
		display: none;
	}

	.hero {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.compare-card,
	.result-body {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.topbar {
		height: auto;
		min-height: 70px;
		padding: 14px 18px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		overflow: visible;
	}

	.brand {
		gap: 9px;
		min-width: 0;
	}

	.brand-logo {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
		border-radius: 12px;
	}

	.brand-text {
		font-size: 13px;
		letter-spacing: 0.08em;
	}

	.top-actions {
		gap: 8px;
		flex: 0 0 auto;
	}

	.translate-top {
		width: 104px;
		height: 38px;
		flex-basis: 104px;
	}

	#gtranslate_wrapper select,
	#gtranslate_wrapper .gt_selector {
		width: 104px !important;
		height: 38px !important;
		font-size: 12px !important;
		padding-left: 12px !important;
		padding-right: 26px !important;
		letter-spacing: 0.04em !important;
	}

	.ghost-btn {
		min-height: 38px;
		height: 38px;
		padding: 0 13px;
		font-size: 12px;
	}

	.status-pill {
		display: none;
	}

	.section-shell {
		width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}

	.hero {
		padding-top: 44px;
		padding-bottom: 58px;
	}

	.hero h1 {
		font-size: clamp(68px, 22vw, 112px);
	}

	.hero-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.finder-panel {
		padding: 24px;
	}

	.finder-panel h2 {
		font-size: 44px;
	}

	.validator-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.live-stats-grid {
		grid-template-columns: 1fr;
	}

	.compare-card {
		padding: 30px;
		clip-path: none;
	}

	.result-wrap {
		padding-left: 12px;
		padding-right: 12px;
	}

	.result-card {
		width: 100%;
		border-left-width: 1px;
		border-right-width: 1px;
	}

	.result-hero,
	.result-body {
		padding: 14px;
	}

	.result-titlebar {
		align-items: flex-start;
		gap: 12px;
	}

	.server-icon,
	.server-icon-placeholder {
		width: 48px;
		height: 48px;
		flex: 0 0 48px;
	}

	.server-name {
		font-size: 20px;
		line-height: 1.05;
		max-width: 100%;
	}

	.server-meta {
		gap: 7px;
	}

	.meta-chip {
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.result-section,
	.side-card,
	.result-details {
		padding: 16px;
	}

	.endpoint-card,
	.ip-card {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		align-items: start;
	}

	.endpoint-head {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.copy-btn,
	.connect-btn {
		width: fit-content;
		max-width: 100%;
	}

	.kv {
		display: grid;
		gap: 0;
	}

	.kv > div {
		display: grid;
		grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
		gap: 12px;
		align-items: start;
	}

	.kv strong {
		text-align: right;
		min-width: 0;
	}

	.table-scroll {
		border: 0;
		overflow: visible;
	}

	.table-scroll .data-table {
		min-width: 0;
	}

	.data-table.mobile-collapse {
		display: none;
	}

	.mobile-data-list {
		display: grid;
		gap: 10px;
	}

	.error-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.error-card .ghost-btn {
		margin-left: 0;
	}

	.footer {
		padding: 24px 18px;
		flex-direction: column;
		align-items: flex-start;
	}

	.scroll-top {
		right: 14px;
		bottom: 18px;
	}
}

@media (max-width: 460px) {
	.topbar {
		padding-left: 14px;
		padding-right: 14px;
	}

	.brand-text em {
		display: none;
	}

	.translate-top {
		width: 92px;
		flex-basis: 92px;
	}

	#gtranslate_wrapper select,
	#gtranslate_wrapper .gt_selector {
		width: 92px !important;
		font-size: 11px !important;
		padding-left: 10px !important;
		padding-right: 22px !important;
	}

	.ghost-btn {
		padding: 0 10px;
		letter-spacing: 0.08em;
	}

	.ghost-btn svg {
		width: 15px;
		height: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}


@media (max-width: 720px) {
	.translate-top {
		width: 106px;
		height: 38px;
		flex-basis: 106px;
	}

	.gtranslate_wrapper,
	.gtranslate_wrapper .gt_switcher,
	.gtranslate_wrapper .gt_container,
	.gtranslate_wrapper .gt_float_switcher,
	.gtranslate_wrapper select,
	.gtranslate_wrapper .gt_selector {
		width: 106px !important;
	}

	.gtranslate_wrapper select,
	.gtranslate_wrapper .gt_selector {
		height: 38px !important;
		font-size: 12px !important;
		padding-left: 10px !important;
		padding-right: 22px !important;
	}

	.gtranslate_wrapper .gt_switcher .gt_selected,
	.gtranslate_wrapper .gt_float_switcher .gt-selected {
		height: 38px !important;
	}

	.gtranslate_wrapper .gt_switcher .gt_selected a,
	.gtranslate_wrapper .gt_float_switcher .gt-selected .gt-current-lang {
		font-size: 12px !important;
		letter-spacing: 0.04em !important;
	}

	.gtranslate_wrapper .gt_switcher .gt_option,
	.gtranslate_wrapper .gt_float_switcher .gt_options {
		width: 150px !important;
	}

	.gtranslate_wrapper img {
		width: 18px !important;
		margin-right: 5px !important;
	}
}