* {
	box-sizing: border-box;
}

body,
.site-body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-size: 14px;
	background: #f4f8ff;
	color: #143557;
	line-height: 1.75;
}

a {
	color: #2269b4;
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #0b4e8d;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.page-wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 24px 20px 48px;
}

.site-header {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: linear-gradient(135deg, #2b63a3, #4b8ccd);
	border-radius: 18px;
	padding: 12px 20px;
	box-shadow: 0 10px 22px rgba(43, 99, 163, 0.22);
	color: #ffffff;
}

.site-header .brand {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	color: inherit;
	flex-shrink: 0;
}

.header-auth {
	flex: 1;
	min-width: 280px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-end;
	text-align: right;
}

.header-secondary {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin-top: 0;
}

.brand-banner {
	display: block;
	width: clamp(180px, 25vw, 280px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 10px rgba(9, 27, 51, 0.2));
	border-radius: 8px;
	margin: 4px 0;
}

.header-main {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	align-items: flex-start;
}

.header-status {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-end;
	text-align: right;
	min-width: 200px;
}

.header-status--inline {
	display: none;
}

.header-status--bar {
	display: flex;
}

.state-auth .header-status--inline {
	display: flex;
}

.state-auth .header-status--bar {
	display: none;
}

.header-greeting {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.header-greeting:empty,
.header-meta:empty {
	display: none;
}

.header-meta {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	row-gap: 4px;
	column-gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
	opacity: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.points-label {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	font-size: 12px;
	letter-spacing: 0.08em;
}

.points-values {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: flex-end;
}

.points-value {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.points-divider {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 700;
}

.header-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	flex: 1 1 auto;
}

.header-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.03em;
	transition: background 0.2s ease, transform 0.2s ease;
}

.header-link:hover {
	background: rgba(255, 255, 255, 0.28);
	transform: translateY(-1px);
}

.header-link--logout {
	background: rgba(255, 90, 95, 0.9);
	padding: 8px 16px;
}

.header-link--ghost {
	background: rgba(255, 255, 255, 0.1);
}

.state-auth .header-link--guestonly {
	display: none;
}

.header-link--logout:hover {
	background: rgba(255, 90, 95, 1);
}

.login-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
}

.header-auth .login-block {
	align-items: flex-end;
}

.header-auth .login-form {
	justify-content: flex-end;
}

.header-auth .login-fields {
	justify-content: flex-end;
}

.login-form {
	display: flex;
	align-items: stretch;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.login-fields {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
}

.login-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.86);
}

.login-form input[type="text"],
.login-form input[type="password"] {
	padding: 8px 12px;
	border-radius: 8px;
	border: none;
	min-width: 180px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: inset 0 0 0 1px rgba(44, 111, 178, 0.2);
	font-size: 14px;
	color: #143557;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6), inset 0 0 0 1px #fff;
}

.login-button {
	padding: 10px 20px;
	border: none;
	border-radius: 999px;
	background: #f2b552;
	color: #143557;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.login-button:hover {
	background: #ffd48b;
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.login-links {
	display: flex;
	gap: 12px;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	align-items: flex-start;
	gap: 20px;
	margin-top: 20px;
}

.side-nav {
	background: #ffffff;
	padding: 20px 22px;
	border-radius: 16px;
	box-shadow: 0 12px 24px rgba(15, 40, 70, 0.12);
}

.side-nav table {
	width: 100%;
}

.side-nav table[width],
.side-nav td[width] {
	width: 100% !important;
}

.side-nav img {
	margin: 0 auto 12px;
}

.main-content {
	background: #ffffff;
	padding: 28px;
	border-radius: 16px;
	box-shadow: 0 18px 30px rgba(8, 32, 60, 0.08);
	min-height: 400px;
}

.main-content table {
	width: 100%;
}

.main-content table[width],
.main-content td[width],
.main-content th[width] {
	width: auto !important;
}

.main-content img[width] {
	width: auto;
	max-width: 100%;
	height: auto;
}

.m1005-wrapper {
	width: 100% !important;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 12px;
	box-sizing: border-box;
}

.m1005-content {
	width: 100%;
}

.m1005-wrapper img {
	max-width: 100%;
	height: auto;
}

.m1005-intro {
	width: 100%;
}

.m1005-table {
	width: 100%;
	table-layout: auto;
	border-collapse: collapse;
}

.m1005-table-wrapper {
	background: #ffffff;
	border: 1px solid #d5e1f4;
	border-radius: 12px;
	padding: 8px;
	margin-bottom: 16px;
}

table[width="520"],
table[width="500"],
table[width="491"],
table[width="490"] {
	width: 100% !important;
	margin: 0;
}

.m1005-table td,
.m1005-table th {
	padding: 12px 16px;
	text-align: center;
	border: 1px solid #e3ebfb;
}

.m1005-table td:first-child,
.m1005-table th:first-child {
	text-align: left;
}

.m1005-table [width] {
	width: auto !important;
}

td[width="520"],
td[width="500"],
td[width="491"],
td[width="490"] {
	width: 100% !important;
}

.site-footer {
	margin-top: 40px;
	text-align: center;
}

.footer-copy {
	margin: 0;
	font-size: 13px;
	color: #4c6f96;
}

.top-page {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.card {
	background: #ffffff;
	border-radius: 18px;
	padding: 20px;
	box-shadow: 0 12px 24px rgba(15, 40, 70, 0.08);
}

.sitemap-hero .breadcrumb {
	margin: 0 0 12px;
	font-size: 13px;
	color: #6f8fb8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sitemap-hero h1 {
	margin: 0 0 8px;
	font-size: 28px;
	color: #2c6fb2;
}

.sitemap-hero p {
	margin: 0;
	color: #4c6f96;
}

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

.sitemap-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sitemap-group h2 {
	margin: 0;
	font-size: 18px;
	color: #2c6fb2;
}

.hero-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.hero-intro h2 {
	margin: 0 0 6px;
	font-size: 22px;
	color: #2c6fb2;
}

.hero-intro {
	text-align: center;
	padding: 0;
	border-radius: 0;
	background: none;
	max-width: 620px;
}

.hero-intro p {
	margin: 4px 0 0;
	color: #4c6f96;
	font-size: 15px;
}

.hero-slider {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-slider-body {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 18px 30px rgba(8, 32, 60, 0.12);
	background: #142d4f;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 6;
	min-height: 260px;
}

.slider-item {
	display: none;
}

.slider-item.is-active {
	display: block;
}

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

.hero-slider-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.hero-slider-buttons button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(71, 98, 137, 0.4);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-buttons button.is-active {
	background: #f2b552;
	transform: scale(1.15);
}

.domain-search-card h2 {
	margin: 0 0 16px;
	color: #2c6fb2;
}

.domain-search-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.domain-search-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.domain-search-prefix {
	font-weight: 600;
	color: #143557;
}

.domain-search-input,
.domain-search-select {
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid rgba(44, 111, 178, 0.2);
	min-width: 160px;
	font-size: 15px;
	color: #143557;
	background: rgba(255, 255, 255, 0.96);
}

.domain-search-input:focus,
.domain-search-select:focus {
	outline: none;
	border-color: #2c6fb2;
	box-shadow: 0 0 0 3px rgba(44, 111, 178, 0.15);
}

.domain-search-button {
	padding: 10px 26px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, #f2b552, #ffd48b);
	color: #143557;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.domain-search-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.lost-password-page .top-page {
	gap: 24px;
}

.lost-hero .breadcrumb {
	margin: 0 0 10px;
	font-size: 13px;
	color: #6f8fb8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.lost-hero h1 {
	margin: 0 0 12px;
	font-size: 28px;
	color: #2c6fb2;
}

.lost-hero p {
	margin: 0;
	color: #4c6f96;
	font-size: 15px;
	line-height: 1.8;
}

.info-banner {
	margin-top: 18px;
	padding: 16px 20px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(44, 111, 178, 0.08), rgba(255, 255, 255, 0.9));
	border: 1px solid rgba(44, 111, 178, 0.15);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}

.info-banner-title {
	margin: 0 0 4px;
	font-weight: 700;
	color: #2c6fb2;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.info-banner-note {
	font-size: 13px;
	color: #4c6f96;
}

.lost-steps {
	display: flex;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
	flex-wrap: wrap;
}

.lost-steps li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(44, 111, 178, 0.12);
	color: #143557;
	font-size: 13px;
	font-weight: 600;
}

.lost-steps li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #2c6fb2;
	color: #ffffff;
	font-size: 12px;
}

.section-lead {
	margin: 0 0 16px;
	color: #4c6f96;
}

.form-tip {
	margin: -6px 0 16px;
	padding: 10px 14px;
	border-radius: 12px;
	background: rgba(255, 226, 193, 0.4);
	color: #a0640a;
	font-size: 13px;
	border: 1px solid rgba(255, 181, 79, 0.4);
}

.form-panel {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.form-section+.form-section {
	padding-top: 8px;
	border-top: 1px solid rgba(44, 111, 178, 0.12);
}

.form-section h3 {
	margin: 0;
	font-size: 18px;
	color: #2c6fb2;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.form-grid.two-cols {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-field.full-width {
	grid-column: 1 / -1;
}

.form-field label {
	font-weight: 600;
	color: #143557;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.required {
	color: #e54355;
	font-size: 0.85em;
}

.input-control,
.form-panel input[type="text"],
.form-panel input[type="email"],
.form-panel select,
.form-panel textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid rgba(44, 111, 178, 0.25);
	border-radius: 10px;
	font-size: 15px;
	color: #143557;
	background: #ffffff;
	box-sizing: border-box;
}

.input-control::placeholder {
	color: rgba(20, 53, 87, 0.55);
}

.form-panel input[type="text"]:focus,
.form-panel input[type="email"]:focus,
.form-panel select:focus,
.form-panel textarea:focus {
	outline: none;
	border-color: #2c6fb2;
	box-shadow: 0 0 0 3px rgba(44, 111, 178, 0.12);
}

.form-panel select[multiple] {
	min-height: 160px;
}

.field-hint {
	margin: 0;
	font-size: 13px;
	color: #6f8fb8;
}

.form-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}

.form-button {
	border: none;
	border-radius: 999px;
	padding: 12px 32px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-button.primary {
	background: linear-gradient(135deg, #2c6fb2, #4b8ccd);
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(44, 111, 178, 0.2);
}

.form-button.primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(44, 111, 178, 0.25);
}

.form-note {
	margin: 0;
	font-size: 13px;
	color: #6f8fb8;
}

.lost-password-notes {
	margin: 0;
	padding-left: 20px;
	color: #4c6f96;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

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

	.form-button {
		width: 100%;
		text-align: center;
	}
}

.domain-search-help {
	margin: 0;
	font-size: 13px;
	color: #4c6f96;
}

.info-panels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.info-card h3 {
	margin: 0 0 12px;
	color: #2c6fb2;
	font-size: 18px;
}

.link-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.link-list a {
	color: #2c6fb2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
}

.link-list a::before {
	content: '>';
	font-weight: 700;
	color: #f2b552;
}

.notice-card,
.updates-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.notice-card h3,
.updates-card h3 {
	margin: 0;
	color: #2c6fb2;
}
.info-card h3,
.notice-card h3,
.updates-card h3 {
	display: flex;
	align-items: center;
	gap: 8px;
}

.heading-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2c6fb2, #63b59a);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 0 0 3px rgba(44, 111, 178, 0.15);
	flex-shrink: 0;
}

.heading-icon::before {
	content: attr(data-icon);
}

.info-panels .info-card:nth-child(1) .heading-icon {
	background: linear-gradient(135deg, #f2b552, #ff9f7a);
}

.info-panels .info-card:nth-child(2) .heading-icon {
	background: linear-gradient(135deg, #2c6fb2, #63b59a);
}

.notice-card:nth-of-type(1) .heading-icon {
	background: linear-gradient(135deg, #ff7676, #f2b552);
}

.notice-card:nth-of-type(2) .heading-icon {
	background: linear-gradient(135deg, #6c5bd6, #4bb5ff);
}

.notice-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 8px 0;
}

.notice-content img {
	max-width: 240px;
	max-height: 120px;
	object-fit: contain;
}

.legacy-domain-actions .legacy-domain-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
}

.legacy-domain-table {
	flex: 1 1 520px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.legacy-domain-table table {
	width: 100%;
	border-collapse: collapse;
	flex: 1 1 auto;
}

.legacy-domain-table td {
	text-align: center;
	vertical-align: middle;
	padding: 4px;
}

.legacy-domain-banner {
	flex: 0 0 180px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.legacy-domain-banner img {
	max-width: 180px;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 6px 16px rgba(15, 40, 70, 0.12);
}

.legacy-domain-maint {
	margin: 0;
	padding: 10px 12px;
	text-align: center;
	border: 1px dashed rgba(44, 111, 178, 0.4);
	background: rgba(44, 111, 178, 0.06);
	border-radius: 10px;
	font-weight: 700;
	color: #143557;
}

@media (min-width: 760px) {
	.legacy-domain-actions .legacy-domain-layout {
		flex-wrap: nowrap;
	}
}

.domain-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.domain-actions-header h3 {
	margin: 0;
	color: #2c6fb2;
}

.domain-actions-header p {
	margin: 0;
	color: #4c6f96;
	font-size: 13px;
}

.domain-actions-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.domain-action-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(44, 111, 178, 0.05);
	border: 1px solid rgba(44, 111, 178, 0.12);
}

.domain-action-title {
	font-weight: 700;
	color: #143557;
	text-decoration: none;
}

.domain-action-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.action-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(44, 111, 178, 0.25);
	background: #ffffff;
	color: #2c6fb2;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.action-chip:hover {
	background: rgba(44, 111, 178, 0.08);
	border-color: rgba(44, 111, 178, 0.4);
	transform: translateY(-1px);
}

.domain-action-note {
	text-align: center;
	font-size: 12px;
	color: #4c6f96;
	background: rgba(242, 181, 82, 0.08);
	border: 1px dashed rgba(242, 181, 82, 0.5);
	border-radius: 10px;
	padding: 8px 10px;
}

.updates-content {
	min-height: 120px;
	padding: 16px;
	border-radius: 12px;
	background: rgba(247, 250, 254, 0.7);
	box-shadow: inset 0 0 0 1px rgba(44, 111, 178, 0.08);
	color: #143557;
}

/* Menu Panel */
.menu-panel {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.menu-section {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(15, 40, 70, 0.08);
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.menu-section:hover {
	box-shadow: 0 6px 16px rgba(15, 40, 70, 0.12);
}

/* Menu Toggle (Main Category) */
.menu-toggle {
	width: 100%;
	background: #ffffff;
	border: none;
	border-bottom: 1px solid rgba(44, 111, 178, 0.08);
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 700;
	color: #2c6fb2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	position: relative;
}

.menu-toggle:hover {
	background: rgba(44, 111, 178, 0.04);
	color: #143557;
}

.menu-toggle:focus-visible {
	outline: 2px solid #f2b552;
	outline-offset: 2px;
}

.menu-toggle::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid #f2b552;
	border-bottom: 2px solid #f2b552;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	margin-left: 12px;
}

.menu-toggle.is-open {
	background: rgba(44, 111, 178, 0.04);
	color: #143557;
	border-bottom-color: rgba(44, 111, 178, 0.12);
	box-shadow: inset 4px 0 0 #f2b552;
}

.menu-toggle.is-open::after {
	transform: rotate(-135deg);
	border-color: #2c6fb2;
}

/* Menu Content (Accordion Body) */
.menu-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: #ffffff;
	overflow: hidden;
}

.menu-content.is-open {
	grid-template-rows: 1fr;
	border-left: 1px solid rgba(34, 105, 180, 0.18);
}

/* Inner wrapper for grid transition */
.menu-content-inner {
	overflow: hidden;
	padding: 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
	row-gap: 0;
	gap: 0;
}

.menu-content.is-open .menu-content-inner,
.menu-subcontent.is-open .menu-content-inner {
	padding: 0 !important;
}

/* Menu Group (Sub-sections) */
.menu-group {
	border-top: none;
	margin: 0;
}

.menu-group:first-child {
	border-top: none;
}

.menu-group + .menu-group {
	margin-top: -1px;
}

/* Sub-toggle (Sub-category) */
.menu-subtoggle {
	width: 100%;
	background: none;
	border: none;
	padding: 14px 20px 14px 24px;
	font-size: 14px;
	font-weight: 600;
	color: #4d6590;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
}

.menu-subtoggle:hover {
	color: #2c6fb2;
	background: rgba(44, 111, 178, 0.02);
}

.menu-subtoggle:focus-visible {
	outline: 2px solid #f2b552;
	outline-offset: 2px;
	box-shadow: inset 3px 0 0 #6fb7ff;
}

.menu-subtoggle::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 2px solid #cbd5e0;
	border-bottom: 2px solid #cbd5e0;
	transform: rotate(45deg);
	transition: transform 0.3s ease, border-color 0.3s ease;
	margin-left: 10px;
}

.menu-subtoggle.is-open {
	color: #2c6fb2;
	background: rgba(44, 111, 178, 0.04);
	box-shadow: inset 3px 0 0 #6fb7ff;
}

.menu-subtoggle.is-open::after {
	transform: rotate(-135deg);
	border-color: #2c6fb2;
}

/* Sub-content */
.menu-subcontent {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(247, 250, 254, 0.5);
	overflow: hidden;
	border-left: 1px solid rgba(34, 105, 180, 0.12);
}

.menu-subcontent.is-open {
	grid-template-rows: 1fr;
}

.menu-content-inner>* {
	overflow: hidden;
}

/* Menu Links */
.menu-subgroup {
	padding: 6px 0 2px;
}

.menu-subgroup+.menu-subgroup {
	border-top: none;
}

.menu-subgroup-inner {
	padding: 4px 0 0 8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.menu-subheading {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.02em;
	color: #2c6fb2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
}

.menu-subheading::before {
	content: '';
	width: 12px;
	height: 2px;
	border-radius: 999px;
	background: #f2b552;
	display: inline-block;
}

.menu-links {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.menu-links li {
	display: block;
}

.menu-links a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px 8px 28px;
	font-size: 14px;
	color: #4c6f96;
	transition: all 0.2s ease;
	text-decoration: none;
	border-left: 3px solid transparent;
}

.menu-subcontent .menu-links a {
	padding-left: 36px;
	font-size: 13px;
}

.menu-links a:hover {
	color: #2c6fb2;
	background: rgba(44, 111, 178, 0.04);
	border-left-color: #6fb7ff;
}

.menu-links a:focus-visible {
	color: #2c6fb2;
	background: rgba(44, 111, 178, 0.08);
	border-left-color: #6fb7ff;
	outline: 2px solid #6fb7ff;
	outline-offset: 2px;
}

.menu-links a::before {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #cbd5e0;
	transition: background 0.2s ease;
}

.menu-links a:hover::before {
	background: #6fb7ff;
}

.menu-links a:focus-visible::before {
	background: #6fb7ff;
}

/* Promos */
.menu-promos {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 16px;
}

.menu-promo {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	padding: 16px;
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(15, 40, 70, 0.06);
	min-height: 80px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid rgba(44, 111, 178, 0.05);
}

.menu-promo:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(15, 40, 70, 0.1);
}

.menu-promo img {
	max-width: 100%;
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

td,
font {
	font-style: normal;
	font-size: 14px;
	line-height: 1.75;
}

@media (max-width: 900px) {
	.page-wrapper {
		padding: 24px 16px 48px;
	}

	.site-header {
		padding: 16px;
	}

	.brand-banner {
		width: clamp(160px, 50vw, 240px);
	}

	.header-auth {
		width: 100%;
		min-width: 0;
		align-items: flex-start;
		text-align: left;
	}

	.header-secondary {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 10px;
	}

	.header-auth .login-block {
		align-items: flex-start;
	}

	.header-auth .login-form {
		justify-content: flex-start;
	}

	.header-auth .login-fields {
		justify-content: flex-start;
	}

	.header-links {
		justify-content: flex-start;
	}

	.login-block {
		align-items: stretch;
	}

	.login-fields {
		justify-content: flex-start;
	}

	.header-main {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.header-status {
		align-items: flex-start;
		text-align: left;
		margin-top: 0;
	}

	.header-meta {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.points-values {
		justify-content: flex-start;
	}

	.login-form {
		width: 100%;
		justify-content: flex-start;
	}

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

	.hero-section {
		grid-template-columns: 1fr;
	}

	.hero-intro h2 {
		font-size: 20px;
	}

	.domain-search-fields {
		flex-direction: column;
		align-items: stretch;
	}

	.domain-search-prefix {
		display: none;
	}

	.domain-search-input,
	.domain-search-select {
		width: 100%;
	}

	.info-panels {
		grid-template-columns: 1fr;
	}

	.menu-content {
		padding: 0 16px 16px;
	}

	.menu-subtoggle {
		font-size: 14px;
	}

	.menu-subcontent {
		padding-left: 0;
	}
}
