/* Account-specific styles extracted from style.css */
.account-wrapper {
	max-width: 960px;
	width: 100%;
	margin: 24px auto;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.account-hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(8, 145, 178, 0.15));
	border: 1px solid rgba(148, 163, 184, 0.25);
	box-shadow: 0 25px 50px rgba(2, 6, 23, 0.45);
}

.account-hero--subpage {
	align-items: flex-start;
	padding: 22px 24px;
	gap: 20px;
}

.account-hero__eyebrow {
	font-size: var(--font-size-eyebrow);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
	margin-bottom: 6px;
}

.account-hero__title {
	font-size: var(--font-size-hero);
	margin: 0;
}

.account-hero__subtitle {
	font-size: var(--font-size-subtitle);
	color: #cbd5f5;
	max-width: 420px;
}

.account-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.12);
	color: #bbf7d0;
	font-size: 0.86rem;
	border: 1px solid rgba(34, 197, 94, 0.4);
}

.account-hero__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.account-hero__actions .btn-secondary-outline {
	min-width: 180px;
}

.account-panels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
}

.account-panel {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px;
	border-radius: 20px;
	border: 1px solid rgba(59, 130, 246, 0.25);
	background: rgba(13, 18, 35, 0.85);
	box-shadow: 0 18px 35px rgba(2, 6, 23, 0.45);
	min-height: 210px;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


.account-panel:hover {
	transform: translateY(-4px);
	border-color: rgba(125, 211, 252, 0.8);
	box-shadow: 0 25px 50px rgba(8, 145, 178, 0.25);
}

.account-panel h2 {
	margin: 0;
	font-size: var(--font-size-card-title);
}

.account-panel p {
	margin: 0;
	font-size: var(--font-size-subtitle);
	color: #cbd5f5;
	line-height: 1.4;
}

.account-panel__icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(59, 130, 246, 0.15);
	color: #93c5fd;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.account-panel__icon svg {
	display: block;
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.account-panel__link {
	margin-top: auto;
	align-self: flex-start;
	padding: 8px 14px;
	border-radius: 12px;
	border: 1px solid rgba(59, 130, 246, 0.6);
	background: rgba(59, 130, 246, 0.15);
	color: #bfdbfe;
	text-decoration: none;
	font-size: 0.85rem;
	text-transform: lowercase;
	letter-spacing: 0.04em;
	transition: background 0.2s ease, color 0.2s ease;
}

.account-panel__link:hover {
	background: rgba(96, 165, 250, 0.25);
	color: #e0f2fe;
}

.account-page-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 0 6px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.account-page-header__eyebrow {
	font-size: var(--font-size-eyebrow);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #94a3b8;
	margin-bottom: 4px;
}

.account-page-header__title {
	margin: 0;
	font-size: var(--font-size-card-title);
}

.account-page-header__subtitle {
	font-size: var(--font-size-subtitle);
	color: #cbd5f5;
	max-width: 520px;
}

.account-header-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 10px;
}

.account-header-stats__item {
	padding: 10px 14px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(148, 163, 184, 0.25);
	text-align: center;
}

.account-header-stats__item span {
	display: block;
	font-size: 0.78rem;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.account-header-stats__item strong {
	display: block;
	margin-top: 6px;
	font-size: 1.3rem;
}

.account-section-card {
	margin-top: 16px;
	padding: 20px;
	border-radius: 20px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(51, 65, 85, 0.7);
	box-shadow: 0 20px 40px rgba(2, 6, 23, 0.4);
	position: relative;
	overflow: hidden;
}

.account-section-card.referral-section {
	overflow: visible;
}

.account-section-card--narrow {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.account-section-card--password {
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}

.account-password-card {
	display: grid;
	gap: 24px;
}

@media (min-width: 960px) {
	.account-password-card {
		grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.9fr);
		align-items: start;
	}
}
 }
.confirmation-actions--inline {
	justify-content: flex-start;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.account-password-card__form {
	padding: 28px;
	border-radius: 26px;
	background: linear-gradient(135deg, rgba(30, 64, 175, 0.35), rgba(17, 24, 39, 0.9));
	border: 1px solid rgba(59, 130, 246, 0.25);
	box-shadow: 0 25px 60px rgba(2, 6, 23, 0.55);
}

.account-password-card__intro {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.account-password-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: rgba(59, 130, 246, 0.18);
	border: 1px solid rgba(59, 130, 246, 0.4);
	color: #bfdbfe;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.account-password-card__icon svg {
	width: 28px;
	height: 28px;
}

.account-password-card__eyebrow {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	color: #cbd5f5;
}

.account-password-card__lead {
	margin: 4px 0 0;
	color: #f8fafc;
	font-size: 1rem;
}

.account-password-card__form-body {
	margin-top: 18px;
	gap: 20px;
}

.account-password-card__form .account-field {
	padding: 16px;
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(148, 163, 184, 0.25);
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.35);
}

.account-password-card__form .account-label {
	font-weight: 600;
	color: #e2e8f0;
}

.account-password-card__form .account-input {
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.35);
}

.account-password-card__submit {
	width: 100%;
	margin-top: 4px;
}

.account-password-card__hint {
	margin: 8px 0 0;
	font-size: 0.85rem;
	color: #cbd5f5;
}

.account-password-success {
	padding: 24px;
	border-radius: 20px;
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(34, 197, 94, 0.25);
	color: #dcfce7;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.account-password-card__tips {
	padding: 24px;
	border-radius: 24px;
	background: rgba(6, 11, 28, 0.92);
	border: 1px solid rgba(148, 163, 184, 0.25);
	box-shadow: 0 18px 35px rgba(2, 6, 23, 0.45);
}

.account-password-card__tips-title {
	margin: 0 0 14px;
	font-size: var(--font-size-card-title);
	color: #f8fafc;
}

.account-password-tips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.account-password-tip {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.account-password-tip__badge {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.35);
	color: #bbf7d0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.account-password-tip__title {
	margin: 0;
	font-weight: 600;
	font-size: var(--font-size-subtitle);
}

.account-password-tip__desc {
	margin: 4px 0 0;
	font-size: var(--font-size-small);
	color: #cbd5f5;
}

.account-password-card__tips-note {
	margin-top: 16px;
	font-size: 0.85rem;
	color: #a5b4fc;
}

@media (max-width: 640px) {
	.account-password-card__form {
		padding: 20px;
	}

	.account-password-card__tips {
		padding: 20px;
	}
}

.account-verification-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.account-verification-card__intro {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 18px 20px;
	border-radius: 24px;
	background: rgba(6, 11, 28, 0.9);
	border: 1px solid rgba(59, 130, 246, 0.25);
}

.account-verification-card__icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 18px;
	background: rgba(59, 130, 246, 0.18);
	border: 1px solid rgba(59, 130, 246, 0.4);
	color: #bfdbfe;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.account-verification-card__icon svg {
	width: 26px;
	height: 26px;
}

.account-verification-card__eyebrow {
	margin: 0;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.account-verification-card__lead {
	margin: 6px 0 0;
	color: #cbd5f5;
	line-height: 1.45;
}

.account-verification-card__hint {
	margin: 0;
	font-size: 0.9rem;
	color: #9ca3af;
}

.account-verification-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.account-verification-form .account-field {
	margin: 0;
}

.account-verification-form button {
	grid-column: 1 / -1;
	justify-self: flex-start;
	margin-top: 8px;
}

.account-input-error {
	font-size: 0.82rem;
	color: #fecaca;
	margin: 2px 0 0;
}

.account-input-error:empty {
	display: none;
}

.account-input--date {
	cursor: pointer;
}

.account-input--date::-webkit-calendar-picker-indicator {
	background: none;
	display: none;
}

@media (max-width: 640px) {
	.account-verification-card__intro {
		flex-direction: column;
	}

	.account-verification-card__icon {
		width: 52px;
		height: 52px;
		border-radius: 16px;
	}

	.account-verification-form {
		grid-template-columns: 1fr;
	}
}

.account-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.account-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.account-table thead {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	color: #94a3b8;
}

.account-table th,
.account-table td {
	padding: 10px 8px;
	border-bottom: 1px solid rgba(30, 41, 59, 0.9);
}

.account-table tr:last-child th,
.account-table tr:last-child td {
	border-bottom: none;
}

.account-table__compact {
	width: 1%;
	white-space: nowrap;
}

.account-table__amount {
	white-space: nowrap;
}

.account-table__status {
	width: 160px;
}

.account-table__actions {
	width: 160px;
	text-align: right;
}

.account-table--transactions {
	border-collapse: separate;
	border-spacing: 0 12px;
}

.account-table--transactions thead th {
	padding: 0 16px 12px;
	border-bottom: none;
}

.account-table--transactions tbody tr {
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 18px;
	box-shadow: 0 18px 35px rgba(2, 6, 23, 0.4);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.account-table--transactions tbody tr:hover {
	border-color: rgba(94, 234, 212, 0.6);
	transform: translateY(-2px);
}

.account-table--transactions tbody td {
	border-bottom: none;
	padding: 14px 16px;
}

.account-table--transactions tbody td + td {
	border-left: 1px solid rgba(30, 41, 59, 0.6);
}

.account-table--transactions .account-table__actions .btn-secondary-outline {
	min-width: 140px;
}

.account-direction {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.account-direction span {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 0.86rem;
}

.account-direction strong {
	font-weight: 600;
}

.account-direction img {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	object-fit: contain;
	margin-right: 6px;
	padding: 4px;
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-sizing: border-box;
}

.account-direction i {
	color: #94a3b8;
}

.account-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.8rem;
	background: var(--status-bg, rgba(59, 130, 246, 0.2));
	color: var(--status-color, #dbeafe);
}

.account-empty-state {
	text-align: center;
	padding: 26px 16px;
	border-radius: 16px;
	border: 1px dashed rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.35);
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.account-section-card.is-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.65);
	backdrop-filter: blur(2px);
	border-radius: inherit;
	z-index: 10;
}

.account-section-card.is-loading::before {
	content: '';
	position: absolute;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 3px solid rgba(148, 163, 184, 0.4);
	border-top-color: #38bdf8;
	z-index: 11;
	top: 50%;
	left: 50%;
	margin-top: -17px;
	margin-left: -17px;
	animation: account-spin 0.8s linear infinite;
}

.account-empty-state p {
	font-size: 0.95rem;
	color: #cbd5f5;
}

.account-pagination {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
}

.account-pagination__button {
	display: inline-flex;
	min-width: 32px;
	align-items: center;
	justify-content: center;
	padding: 4px 8px;
	margin: 0 2px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	color: #e2e8f0;
	text-decoration: none;
	background: rgba(15, 23, 42, 0.65);
	transition: border-color 0.2s ease, background 0.2s ease;
}

.account-pagination__button:hover {
	border-color: rgba(59, 130, 246, 0.6);
	background: rgba(59, 130, 246, 0.2);
}

.account-pagination__button.is-active {
	border-color: rgba(59, 130, 246, 0.9);
	background: rgba(37, 99, 235, 0.3);
}

.account-pagination__button.is-disabled {
	opacity: 0.4;
	pointer-events: none;
	cursor: default;
}

.account-pagination__ellipsis {
	margin: 0 4px;
	color: #94a3b8;
}

@media (max-width: 640px) {
	.account-page-header {
		flex-direction: column;
	}

	.account-header-stats {
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.account-table__actions {
		width: auto;
		text-align: left;
	}

	.account-table--transactions tbody td + td {
		border-left: none;
	}

	.account-section-card {
		padding: 16px;
	}
}

@media (max-width: 900px) {
	.account-table--transactions {
		border-spacing: 0;
	}

	.account-table--transactions thead {
		display: none;
	}

	.account-table--transactions,
	.account-table--transactions tbody,
	.account-table--transactions tr,
	.account-table--transactions td {
		display: block;
		width: 100%;
	}

	.account-table--transactions tbody tr {
		padding: 18px;
		border-radius: 20px;
		margin-bottom: 18px;
	}

	.account-table--transactions tbody tr:last-child {
		margin-bottom: 0;
	}

	.account-table--transactions tbody td {
		padding: 0;
		margin-top: 14px;
		border-left: none;
	}

	.account-table--transactions tbody td:first-child {
		margin-top: 0;
	}

	.account-table--transactions tbody td::before {
		content: attr(data-label);
		display: block;
		font-size: 0.72rem;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #94a3b8;
		margin-bottom: 6px;
	}

	.account-table--transactions .account-table__status,
	.account-table--transactions .account-table__actions {
		width: 100%;
		text-align: left;
	}

	.account-table--transactions .account-table__actions .btn-secondary-outline {
		width: 100%;
	}
}

@keyframes account-spin {
	to {
		transform: rotate(360deg);
	}
}

.account-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.account-field {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.account-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.account-label {
	font-size: 0.85rem;
	color: #94a3b8;
}

.account-input {
	width: 100%;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: rgba(15, 23, 42, 0.9);
	color: #f8fafc;
	font-size: 0.92rem;
}

.account-input__icon + .account-input {
	padding-left: 52px;
}

.account-input__label {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
	color: #94a3b8;
	margin-bottom: 6px;
}

.account-textarea {
	resize: vertical;
	line-height: 1.45;
	font-family: inherit;
}

.account-input:focus {
	outline: none;
	border-color: rgba(59, 130, 246, 0.9);
	box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.45);
}

.account-input__icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border-radius: 12px;
	background: rgba(59, 130, 246, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.25);
	color: #93c5fd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.account-input__icon svg {
	display: block;
	width: 16px;
	height: 16px;
}

.account-input__toggle {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: rgba(15, 23, 42, 0.95);
	color: #cbd5f5;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.account-input__toggle:hover,
.account-input__toggle.is-active {
	color: #f8fafc;
	border-color: rgba(59, 130, 246, 0.7);
	background: rgba(37, 99, 235, 0.25);
}

.account-input__toggle-eye {
	width: 18px;
	height: 18px;
	display: none;
}

.account-input__toggle-eye--show {
	display: block;
}

.account-input__toggle.is-active .account-input__toggle-eye--show {
	display: none;
}

.account-input__toggle.is-active .account-input__toggle-eye--hide {
	display: block;
}

.account-alert {
	padding: 12px 14px;
	border-radius: 14px;
	font-size: 0.9rem;
	margin-bottom: 12px;
}

.account-alert--error {
	background: rgba(248, 113, 113, 0.12);
	border: 1px solid rgba(248, 113, 113, 0.4);
	color: #fecaca;
}

.account-alert--success {
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.4);
	color: #bbf7d0;
}

.account-alert--warning {
	background: rgba(250, 204, 21, 0.18);
	border: 1px solid rgba(250, 204, 21, 0.45);
	color: #fef08a;
}

.account-alert a {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
}

.account-alert a:hover {
	text-decoration: none;
}

.email-confirm-pill {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 16px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.8);
	border: 1px solid rgba(148, 163, 184, 0.25);
	min-width: 220px;
}

.email-confirm-pill span {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.email-confirm-pill strong {
	font-size: 1rem;
	color: #f8fafc;
}

.email-confirm-card {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.email-confirm-card__intro {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.email-confirm-card__icon {
	width: 64px;
	height: 64px;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	background: rgba(59, 130, 246, 0.18);
	border: 1px solid rgba(59, 130, 246, 0.35);
	color: #bfdbfe;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.email-confirm-card__icon svg {
	width: 30px;
	height: 30px;
}

.email-confirm-card__eyebrow {
	margin: 0 0 4px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	color: #94a3b8;
}

.email-confirm-card__title {
	margin: 0;
	font-size: 1.4rem;
}

.email-confirm-card__text {
	margin: 8px 0 0;
	color: #cbd5f5;
	line-height: 1.5;
}

.email-confirm-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.email-confirm-steps li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid rgba(148, 163, 184, 0.2);
}

.email-confirm-steps__badge {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.35);
	color: #bfdbfe;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.email-confirm-steps strong {
	display: block;
	margin-bottom: 2px;
}

.email-confirm-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.email-confirm-form__hint {
	margin: 0;
	font-size: 0.85rem;
	color: #a5b4fc;
}

.email-confirm-form__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.email-confirm-form__primary,
.email-confirm-form__secondary {
	flex: 1 1 200px;
}

.email-confirm-form__secondary {
	color: #e0f2fe;
	border-color: rgba(59, 130, 246, 0.6);
}

.email-confirm-card__complete {
	padding: 18px;
	border-radius: 18px;
	background: rgba(34, 197, 94, 0.08);
	border: 1px solid rgba(34, 197, 94, 0.35);
	color: #dcfce7;
}

.email-confirm-card__complete a {
	color: #99f6e4;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.email-confirm-card__intro {
		flex-direction: column;
	}

	.email-confirm-card__icon {
		width: 56px;
		height: 56px;
	}

	.email-confirm-form__primary,
	.email-confirm-form__secondary {
		flex: 1 1 100%;
	}

	.email-confirm-pill {
		align-self: flex-start;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.account-input {
		padding: 12px;
	}

	.account-input__icon,
	.account-input__toggle {
		transform: translateY(-50%);
	}

	.support-create-highlight {
		flex-direction: column;
	}

	.support-create-highlight__icon {
		width: 60px;
		height: 60px;
	}

	.support-form__actions .btn-primary {
		width: 100%;
	}
}

.notify-settings {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 18px;
}

.notify-card {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
}

.notify-channel-card {
	padding: 22px;
	border-radius: 24px;
	background: rgba(6, 11, 28, 0.9);
	border: 1px solid rgba(59, 130, 246, 0.25);
	box-shadow: 0 20px 40px rgba(2, 6, 23, 0.35);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.notify-channel-card.is-disabled {
	opacity: 0.85;
}

.notify-channel-card__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.notify-channel-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: rgba(59, 130, 246, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.3);
	color: #93c5fd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.notify-channel-card__eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
	margin: 0 0 4px;
}

.notify-channel-card__title {
	margin: 0;
	font-size: 1.2rem;
}

.notify-channel-card__subtitle {
	margin: 6px 0 0;
	color: #cbd5f5;
	font-size: 0.92rem;
}

.notify-channel-card__status {
	margin-left: auto;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	background: rgba(148, 163, 184, 0.12);
	border: 1px solid rgba(148, 163, 184, 0.3);
}

.notify-channel-card__status.is-online {
	background: rgba(34, 197, 94, 0.12);
	border-color: rgba(34, 197, 94, 0.4);
	color: #bbf7d0;
}

.notify-channel-card__status.is-offline {
	background: rgba(248, 113, 113, 0.12);
	border-color: rgba(248, 113, 113, 0.35);
	color: #fecaca;
}

.notify-channel-card__note {
	margin: 0;
	padding: 12px 14px;
	border-radius: 16px;
	border: 1px dashed rgba(148, 163, 184, 0.3);
	background: rgba(15, 23, 42, 0.55);
	font-size: 0.9rem;
	color: #cbd5f5;
}

.notify-channel-card__note a {
	color: #60a5fa;
	text-decoration: underline;
}

.notify-channel-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.notify-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.notify-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.7);
	border: 1px solid rgba(51, 65, 85, 0.65);
}

.notify-item__control {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.notify-item__status {
	font-size: 0.82rem;
	color: #34d399;
	min-width: 76px;
	opacity: 0;
	transform: translateY(-2px);
	transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.notify-item__status.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.notify-item__status--success {
	color: #34d399;
}

.notify-item__status--error {
	color: #fca5a5;
}

.notify-info {
	max-width: 75%;
}

.notify-info strong {
	display: block;
	font-size: 0.95rem;
}

.notify-switch {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	user-select: none;
	cursor: pointer;
	position: relative;
}

.notify-switch.is-disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.notify-switch-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.notify-switch-slider {
	width: 46px;
	height: 26px;
	border-radius: 999px;
	background: #475569;
	position: relative;
	transition: background 0.2s ease;
}

.notify-switch-slider::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	left: 3px;
	top: 3px;
	transition: transform 0.2s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.notify-switch-input:checked + .notify-switch-slider {
	background: #22c55e;
}

.notify-switch-input:checked + .notify-switch-slider::after {
	transform: translateX(20px);
}

.notify-disabled-note {
	margin-top: 12px;
	font-size: 0.9rem;
	color: #94a3b8;
}

.notify-alerts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 12px;
}

.account-flash-message {
	opacity: 1;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.account-flash-message.is-hidden {
	opacity: 0;
	transform: translateY(-6px);
}

.account-input--readonly {
	background: rgba(6, 11, 28, 0.9);
	border-color: rgba(59, 130, 246, 0.35);
	color: #e2e8f0;
	cursor: default;
}

.account-input-wrapper--compact {
	width: 100%;
	max-width: 360px;
}

.tg-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tg-card {
	padding: 20px;
	border-radius: 20px;
	background: rgba(6, 11, 28, 0.85);
	border: 1px solid rgba(59, 130, 246, 0.25);
	box-shadow: 0 18px 35px rgba(2, 6, 23, 0.4);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tg-card--guide {
	gap: 18px;
}

.tg-card__header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.tg-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(59, 130, 246, 0.18);
	color: #93c5fd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.tg-card__eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
	margin: 0 0 4px;
}

.tg-card__title {
	margin: 0;
	font-size: 1.05rem;
}

.tg-card__text {
	margin: 4px 0 0;
	font-size: 0.92rem;
	color: #cbd5f5;
}

.tg-card__text a {
	color: #60a5fa;
	text-decoration: none;
}

.tg-card__text a:hover {
	text-decoration: underline;
}

.tg-card__note {
	margin: 0;
	font-size: 0.85rem;
	color: #94a3b8;
}

.tg-card__actions {
	margin-top: 6px;
}

.tg-guide code {
	background: rgba(15, 23, 42, 0.65);
	border-radius: 6px;
	padding: 0 5px;
	font-size: 0.85rem;
}

.tg-switch-form {
	margin-top: 6px;
}

.tg-action-control,
.tg-switch-control {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	flex-wrap: wrap;
}

.tg-switch-control {
	justify-content: space-between;
}

.tg-switch {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	user-select: none;
	font-weight: 600;
	color: #e2e8f0;
}

.tg-action-status {
	font-size: 0.82rem;
	color: #34d399;
	min-width: 90px;
	opacity: 0;
	text-align: right;
	transform: translateY(-2px);
	transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.tg-action-status.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tg-action-status--success {
	color: #34d399;
}

.tg-action-status--error {
	color: #fca5a5;
}

.tg-save-btn {
	flex: 0 0 auto;
}

.tg-save-btn.is-success {
	border-color: rgba(34, 197, 94, 0.5);
	color: #bbf7d0;
}

.tg-notify-hint a {
	color: #38bdf8;
	text-decoration: underline;
}

@media (max-width: 640px) {
	.tg-action-control,
	.tg-switch-control {
		flex-direction: column;
		align-items: flex-start;
	}

	.tg-action-status {
		min-width: 0;
		text-align: left;
		width: 100%;
	}
}

.referral-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.referral-highlight {
	padding: 24px;
	border-radius: 28px;
	background: rgba(6, 11, 28, 0.92);
	border: 1px solid rgba(59, 130, 246, 0.2);
	box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.08), 0 25px 50px rgba(2, 6, 23, 0.35);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.referral-highlight__header {
	display: flex;
	gap: 16px;
	align-items: center;
}

.referral-highlight__icon {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.3);
	color: #93c5fd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.referral-highlight__eyebrow {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
	margin: 0;
}

.referral-highlight__title {
	margin: 0;
	font-size: 1.25rem;
}

.referral-highlight__text {
	margin: 4px 0 0;
	font-size: 0.95rem;
	color: #cbd5f5;
}


.referral-cta-btn {
	align-self: flex-start;
	margin-top: 4px;
	min-width: 190px;
}

.referral-link-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.referral-link-field {
	flex: 1;
	min-width: 240px;
}

.referral-copy-controls {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.referral-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 14px;
}

.referral-stat-card {
	padding: 18px;
	border-radius: 20px;
	background: rgba(15, 23, 42, 0.92);
	border: 1px solid rgba(51, 65, 85, 0.7);
	box-shadow: 0 18px 35px rgba(2, 6, 23, 0.35);
}

.referral-stat-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #94a3b8;
	margin: 0;
}

.referral-stat-value {
	margin: 8px 0 0;
	font-size: 1.35rem;
	font-weight: 600;
}

.referral-cta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}

.referral-stat-meta {
	margin: 6px 0 0;
	font-size: 0.85rem;
	color: #94a3b8;
}

.referral-cta-note {
	margin: 0;
	font-size: 0.85rem;
	color: #fca5a5;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.referral-cta-note.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.referral-payout-card {
	padding: 24px;
	border-radius: 24px;
	background: rgba(6, 11, 28, 0.9);
	border: 1px solid rgba(59, 130, 246, 0.2);
	box-shadow: 0 20px 40px rgba(2, 6, 23, 0.35);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.referral-payout-card__header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex-wrap: wrap;
}

.referral-payout-card__icon {
	width: 60px;
	height: 60px;
	border-radius: 20px;
	background: rgba(96, 165, 250, 0.14);
	border: 1px solid rgba(96, 165, 250, 0.35);
	color: #bfdbfe;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.referral-payout-card__eyebrow {
	margin: 0 0 4px;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.referral-payout-card__title {
	margin: 0;
	font-size: 1.2rem;
}

.referral-payout-card__text {
	margin: 6px 0 0;
	color: #cbd5f5;
	font-size: 0.92rem;
}

.referral-hint {
	margin: 6px 0 0;
	font-size: 0.85rem;
	color: #94a3b8;
}


.referral-method-field {
	margin-top: 18px;
}

.referral-method-dropdown {
	position: relative;
	z-index: 2;
}

.referral-method-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 16px;
	border: 1px solid rgba(55, 65, 81, 0.9);
	background: rgba(15, 23, 42, 0.96);
	color: #e2e8f0;
	font: inherit;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.referral-method-trigger:hover {
	border-color: rgba(129, 140, 248, 0.8);
	background: rgba(30, 64, 175, 0.85);
}

.referral-method-trigger.has-value {
	border-color: rgba(59, 130, 246, 0.7);
}

.referral-method-dropdown.is-open .referral-method-trigger,
.referral-method-trigger[aria-expanded='true'] {
	border-color: rgba(59, 130, 246, 0.9);
	box-shadow: 0 18px 35px rgba(2, 6, 23, 0.35);
	background: rgba(30, 64, 175, 0.95);
}

.referral-method-trigger__value {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.referral-method-trigger__icon {
	flex-shrink: 0;
}

.referral-method-trigger__placeholder {
	flex: 1;
	text-align: left;
	color: #94a3b8;
	font-size: 0.95rem;
}

.referral-method-trigger__caret {
	width: 10px;
	height: 10px;
	border-left: 2px solid rgba(148, 163, 184, 0.8);
	border-bottom: 2px solid rgba(148, 163, 184, 0.8);
	transform: rotate(-45deg);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.referral-method-dropdown.is-open .referral-method-trigger__caret {
	transform: rotate(135deg);
	border-color: rgba(59, 130, 246, 0.9);
}

.referral-method-trigger__icon-placeholder svg {
	width: 18px;
	height: 18px;
	color: #cbd5f5;
	display: block;
}

.referral-method-trigger__icon-placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.referral-method-trigger__icon-placeholder[hidden] {
	display: none;
}

.referral-method-trigger__icon img[hidden] {
	display: none;
}

.referral-method-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 15;
	border-radius: 18px;
	border: 1px solid rgba(55, 65, 81, 0.9);
	background: rgba(6, 11, 28, 0.98);
	box-shadow: 0 25px 55px rgba(2, 6, 23, 0.55);
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 320px;
	overflow-y: auto;
}

.referral-method-menu[hidden] {
	display: none;
}

.referral-method-native-select {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.referral-method-option {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid rgba(55, 65, 81, 0.9);
	background: rgba(15, 23, 42, 0.96);
	color: #e2e8f0;
	cursor: pointer;
	font: inherit;
	text-align: left;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.referral-method-option:hover {
	border-color: rgba(129, 140, 248, 0.8);
	background: rgba(30, 64, 175, 0.85);
	transform: translateY(-1px);
}

.support-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.support-table-card,
.support-create-card,
.support-detail-card {
	padding: 24px;
	border-radius: 24px;
	background: rgba(5, 10, 25, 0.92);
	border: 1px solid rgba(59, 130, 246, 0.18);
	box-shadow: 0 25px 45px rgba(2, 6, 23, 0.45);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.support-table-block {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.support-create-highlight {
	display: flex;
	gap: 18px;
	padding: 20px;
	border-radius: 24px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(59, 130, 246, 0.04));
	box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.25);
}

.support-create-highlight__icon {
	width: 72px;
	height: 72px;
	border-radius: 22px;
	background: rgba(15, 23, 42, 0.8);
	border: 1px solid rgba(59, 130, 246, 0.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #bfdbfe;
	flex-shrink: 0;
	box-shadow: 0 12px 24px rgba(2, 6, 23, 0.65);
}

.support-create-highlight__text h2 {
	margin: 0 0 6px;
	font-size: 1.1rem;
}

.support-create-highlight__text p {
	margin: 0;
	color: #cbd5f5;
	font-size: 0.95rem;
}

.support-create-highlight__text ul {
	margin: 14px 0 0;
	padding-left: 20px;
	color: #e2e8f0;
	font-size: 0.92rem;
}

.support-create-highlight__text li + li {
	margin-top: 6px;
}

.support-form__error {
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(248, 113, 113, 0.12);
	border: 1px solid rgba(248, 113, 113, 0.35);
	color: #fecaca;
	font-size: 0.9rem;
}

.support-form__error[hidden] {
	display: none;
}

.support-form__actions .btn-primary {
	min-width: 220px;
}

.support-table-card__header {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.support-table-card__eyebrow {
	margin: 0;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #94a3b8;
}

.support-table-card__title {
	margin: 4px 0 0;
	font-size: 1.2rem;
}

.support-table-card__title-group {
	display: flex;
	align-items: center;
	gap: 14px;
}

.support-table-card__icon svg {
	width: 36px;
	height: 36px;
	color: #c7d2fe;
	opacity: 0.9;
}

.support-empty {
	padding: 32px;
	text-align: center;
	border-radius: 24px;
	border: 1px dashed rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.6);
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.support-empty h3 {
	margin: 0;
	font-size: 1.1rem;
}

.support-empty p {
	margin: 0;
	color: #cbd5f5;
}

.support-table .support-link {
	color: #93c5fd;
	text-decoration: underline;
}

.support-table .support-link:hover {
	color: #bfdbfe;
}

.support-link-unstyled {
	text-decoration: none;
}

.support-link-unstyled:hover,
.support-link-unstyled:focus {
	text-decoration: none;
}

.support-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
}

.support-status-badge--created {
	background: rgba(129, 140, 248, 0.16);
	color: #c7d2fe;
	border: 1px solid rgba(99, 102, 241, 0.4);
}

.support-status-badge--awaiting {
	background: rgba(248, 250, 252, 0.08);
	color: #fcd34d;
	border: 1px solid rgba(250, 204, 21, 0.35);
}

.support-status-badge--reply {
	background: rgba(34, 197, 94, 0.15);
	color: #bbf7d0;
	border: 1px solid rgba(34, 197, 94, 0.4);
}

.support-status-badge--closed {
	background: rgba(248, 113, 113, 0.12);
	color: #fecaca;
	border: 1px solid rgba(248, 113, 113, 0.35);
}

.support-status-badge--unknown {
	background: rgba(148, 163, 184, 0.16);
	color: #e2e8f0;
	border: 1px solid rgba(148, 163, 184, 0.4);
}

.support-detail-card__header {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.support-detail-card__number {
	font-weight: 600;
	font-size: 1rem;
	margin-right: 8px;
}

.support-detail-card__status {
	display: flex;
	align-items: center;
	gap: 10px;
}

.support-messages {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.support-message {
	padding: 16px 18px;
	border-radius: 20px;
	max-width: 680px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.support-message--user {
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.35);
	align-self: flex-end;
}

.support-message--admin {
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(71, 85, 105, 0.8);
	align-self: flex-start;
}

.support-message__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-size: 0.85rem;
	color: #94a3b8;
	margin-bottom: 6px;
}

.support-message__body {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #e2e8f0;
}

.support-info-block {
	padding: 16px;
	border-radius: 16px;
	border: 1px dashed rgba(148, 163, 184, 0.45);
	background: rgba(15, 23, 42, 0.75);
	color: #cbd5f5;
}

.support-info-block--closed {
	border-color: rgba(248, 113, 113, 0.45);
	color: #fecaca;
}

.support-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.support-form__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.support-form__actions--single {
	justify-content: flex-end;
}

.support-close-form {
	margin: 0;
}

.support-close-form--bottom {
	margin-top: 24px;
	display: flex;
	justify-content: flex-end;
}

.support-table-card__actions {
	display: flex;
	gap: 10px;
}

@media (max-width: 768px) {
	.support-table-card,
	.support-create-card,
	.support-detail-card {
		padding: 20px;
	}

	.support-close-form--bottom {
		justify-content: flex-start;
	}

	.support-close-form--bottom .btn-secondary-outline {
		width: 100%;
	}

	.support-form__actions {
		flex-direction: column;
	}

	.support-form__actions .btn-primary,
	.support-form__actions .btn-secondary-outline {
		width: 100%;
	}

	.support-message {
		max-width: 100%;
	}
}

.referral-method-option.is-active {
	border-color: rgba(59, 130, 246, 0.9);
	background: rgba(30, 64, 175, 0.92);
	box-shadow: 0 18px 35px rgba(2, 6, 23, 0.4);
}

.referral-method-option:focus-visible {
	outline: none;
	border-color: rgba(129, 140, 248, 0.95);
	box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.35);
}

.referral-method-option__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(59, 130, 246, 0.25);
	background: rgba(15, 23, 42, 0.9);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.referral-method-option__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.referral-method-option__icon--placeholder svg {
	width: 18px;
	height: 18px;
	color: #cbd5f5;
}

.referral-method-option__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.15;
}

.referral-method-option__name {
	font-size: 0.92rem;
	font-weight: 600;
}

.referral-method-option__currency {
	font-size: 0.78rem;
	color: #cbd5f5;
}

.referral-rate {
	margin: 8px 0 0;
	font-size: 0.85rem;
	color: #94a3b8;
}

.referral-textarea {
	min-height: 72px;
	max-height: 120px;
	resize: vertical;
	padding: 12px;
}

.referral-wallet-field {
	margin-top: 12px;
}

.referral-preview {
	margin: 18px 0 22px;
	font-size: 0.95rem;
	color: #e2e8f0;
}

.referral-form-alert {
	margin-bottom: 16px;
}

.referral-submit {
	width: 100%;
}

.referral-payout-fieldset {
	border: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.referral-data-card {
	padding: 18px;
	border-radius: 20px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(51, 65, 85, 0.7);
	box-shadow: 0 18px 35px rgba(2, 6, 23, 0.3);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.referral-data-card__header h2 {
	margin: 0;
	font-size: 1.05rem;
}

.referral-table th {
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.referral-empty {
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px dashed rgba(148, 163, 184, 0.35);
	background: rgba(15, 23, 42, 0.55);
	color: #cbd5f5;
	font-size: 0.9rem;
}

.referral-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	text-transform: capitalize;
	border: 1px solid transparent;
}

.referral-status-badge--created {
	background: rgba(100, 116, 139, 0.2);
	border-color: rgba(148, 163, 184, 0.5);
	color: #e2e8f0;
}

.referral-status-badge--paid {
	background: rgba(34, 197, 94, 0.18);
	border-color: rgba(34, 197, 94, 0.45);
	color: #bbf7d0;
}

.referral-status-badge--rejected {
	background: rgba(239, 68, 68, 0.18);
	border-color: rgba(239, 68, 68, 0.4);
	color: #fecaca;
}

.referral-status-badge--cancelled {
	background: rgba(249, 115, 22, 0.18);
	border-color: rgba(249, 115, 22, 0.4);
	color: #ffedd5;
}

.referral-status-badge--processing,
.referral-status-badge--pending {
	background: rgba(59, 130, 246, 0.18);
	border-color: rgba(59, 130, 246, 0.4);
	color: #bfdbfe;
}

.referral-detail-btn,
.support-detail-btn {
	border: 1px solid rgba(59, 130, 246, 0.45);
	background: rgba(15, 23, 42, 0.92);
	color: #bfdbfe;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.referral-detail-btn:hover,
.support-detail-btn:hover {
	border-color: rgba(96, 165, 250, 0.8);
	background: rgba(37, 99, 235, 0.8);
	color: #f8fafc;
	transform: translateY(-1px);
}

.referral-detail-btn:focus-visible,
.support-detail-btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35);
}

.referral-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.referral-cancel-btn {
	border: 1px solid rgba(249, 115, 22, 0.6);
	background: rgba(249, 115, 22, 0.15);
	color: #fdba74;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.referral-cancel-btn:hover:not(:disabled) {
	border-color: rgba(249, 115, 22, 0.9);
	background: rgba(249, 115, 22, 0.35);
	color: #fff7ed;
	transform: translateY(-1px);
}

.referral-cancel-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.referral-detail-actions .referral-cancel-btn.is-loading::after {
	content: '';
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-top-color: transparent;
	border-radius: 50%;
	display: inline-block;
	margin-left: 6px;
	animation: referral-spin 0.8s linear infinite;
}

@keyframes referral-spin {
	to {
		transform: rotate(360deg);
	}
}

.referral-cancel-message {
	margin-bottom: 12px;
}

body.referral-detail-modal-open {
	overflow: hidden;
}

.referral-detail-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(2, 6, 23, 0.75);
	backdrop-filter: blur(6px);
	z-index: 60;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.referral-detail-modal.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.referral-detail-modal[hidden] {
	display: none;
}

.referral-detail-modal__backdrop {
	position: absolute;
	inset: 0;
}

.referral-detail-modal__dialog {
	position: relative;
	width: min(420px, 100%);
	border-radius: 24px;
	background: rgba(6, 11, 28, 0.98);
	border: 1px solid rgba(59, 130, 246, 0.45);
	box-shadow: 0 35px 65px rgba(2, 6, 23, 0.6);
	padding: 32px 28px;
	color: #e2e8f0;
	z-index: 1;
}

.referral-detail-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	border: none;
	background: rgba(15, 23, 42, 0.8);
	color: #94a3b8;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.referral-detail-modal__close:hover {
	background: rgba(30, 64, 175, 0.9);
	color: #f8fafc;
}

.referral-detail-modal__eyebrow {
	margin: 0;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.referral-detail-modal__title {
	margin: 6px 0 18px;
	font-size: 1.25rem;
	font-weight: 600;
}

.referral-detail-modal__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
}

.referral-detail-modal__item {
	display: flex;
	flex-direction: column;
}

.referral-detail-modal__item dt {
	margin: 0 0 4px;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #94a3b8;
}

.referral-detail-modal__item dd {
	margin: 0;
	font-size: 1rem;
	color: #f8fafc;
	word-break: break-word;
}

.referral-detail-modal__item dd a {
	color: #ffffff;
	text-decoration: underline;
	transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.referral-detail-modal__item dd a:hover,
.referral-detail-modal__item dd a:focus-visible {
	text-decoration: none;
	opacity: 0.8;
}

@media (max-width: 720px) {
	.referral-table thead {
		display: none;
	}

	.referral-table tbody tr {
		display: block;
		margin-bottom: 16px;
		border: 1px solid rgba(51, 65, 85, 0.6);
		border-radius: 14px;
		padding: 12px 14px;
		background: rgba(6, 11, 28, 0.7);
	}

	.referral-table tbody td {
		display: flex;
		justify-content: space-between;
		gap: 16px;
		padding: 6px 0;
		border: none;
	}

	.referral-table tbody td::before {
		content: attr(data-label);
		font-size: 0.78rem;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		color: #94a3b8;
	}

	.referral-table td[data-label="Детали"]::before {
		content: '';
	}
}

@media (max-width: 640px) {
	.site-header .nav-list-item--cta,
	.site-header .nav-link--cta {
		display: flex;
	}

	.referral-link-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.referral-highlight__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.referral-copy-controls {
		flex-direction: row;
		justify-content: space-between;
	}

	.referral-stats-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

@media (max-width: 640px) {
	.notify-channel-card__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.notify-channel-card__status {
		margin-left: 0;
	}

	.notify-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.notify-item__control {
		width: 100%;
		justify-content: space-between;
	}

	.notify-info {
		max-width: 100%;
	}
}

.tg-connected-block {
	padding: 16px;
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(51, 65, 85, 0.6);
	margin-top: 16px;
}

.tg-connected-block:first-of-type {
	margin-top: 0;
}

.tg-unlink-form {
	margin-top: 10px;
}

.tg-unlink-notice {
	margin-bottom: 16px;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid rgba(34, 197, 94, 0.4);
	background: rgba(34, 197, 94, 0.12);
	color: #bbf7d0;
	font-weight: 600;
}

.tg-copy {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(148, 163, 184, 0.35);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
}

.tg-copy:hover {
	border-color: rgba(59, 130, 246, 0.7);
	box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
}

	gap: 10px;
	user-select: none;
	cursor: pointer;
	font-weight: 500;
}

.tg-switch-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tg-switch-slider {
	width: 48px;
	height: 28px;
	border-radius: 999px;
	background: #475569;
	position: relative;
	transition: background 0.2s ease;
}

.tg-switch-slider::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	left: 4px;
	top: 4px;
	transition: transform 0.2s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.tg-switch-input:checked + .tg-switch-slider {
	background: #22c55e;
}

.tg-switch-input:checked + .tg-switch-slider::after {
	transform: translateX(20px);
}

.tg-unlink-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, #f87171, #ef4444);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.tg-unlink-btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.tg-unlink-btn.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.tg-unlink-btn.is-loading::after {
	content: "";
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-top-color: #fff;
	animation: tg-spin 0.7s linear infinite;
}

@keyframes tg-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.tg-notify-hint {
	margin-top: 18px;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px dashed rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.3);
	font-size: 0.92rem;
}

.tg-guide {
	margin: 0;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.92rem;
	color: #cbd5f5;
	margin-bottom: 14px;
}

.tg-guide li {
	margin-bottom: 6px;
}

.tg-link-block {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tg-link-action {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	border-radius: 999px;
	background: linear-gradient(120deg, #38bdf8, #0ea5e9);
	color: #051025;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tg-link-action:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(14, 165, 233, 0.35);
}

.tg-step-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #e2e8f0;
}

.tg-muted-text {
	font-size: 0.9rem;
	color: #94a3b8;
	margin-top: 8px;
}

.tg-warning-text {
	font-size: 0.9rem;
	color: #9ca3af;
}

@media (max-width: 640px) {
	.tg-connected-block {
		padding: 14px;
	}

	.tg-copy {
		width: 100%;
		justify-content: space-between;
	}
}


.account-menu {
	margin-top: 6px;
	margin-bottom: 18px;
	padding: 16px 18px;
	border-radius: 28px;
	background: rgba(6, 11, 28, 0.9);
	border: 1px solid rgba(59, 130, 246, 0.15);
	color: #cbd5f5;
	box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.08), 0 20px 40px rgba(2, 6, 23, 0.55);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.account-menu__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.account-menu__eyebrow {
	font-size: var(--font-size-eyebrow);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 6px;
}

.account-menu__title {
	margin: 0;
	font-size: var(--font-size-card-title);
}

.account-menu__subtitle {
	margin: 6px 0 0;
	font-size: var(--font-size-subtitle);
	color: #94a3b8;
}

.account-menu__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid rgba(59, 130, 246, 0.5);
	background: rgba(15, 118, 255, 0.15);
	color: #bfdbfe;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.account-menu__cta::after {
	content: "→";
	font-size: 1rem;
}

.account-menu__cta:hover {
	border-color: rgba(125, 211, 252, 0.8);
	color: #e0f2fe;
	background: rgba(59, 130, 246, 0.25);
}


.account-menu-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
	width: 100%;
	list-style: none;
}

.account-menu-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: rgba(15, 23, 42, 0.6);
	color: #d5e3ff;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.account-menu-tab__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: inherit;
}

.account-menu-tab__icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.account-menu__toggle {
	display: none;
	width: 100%;
	margin-bottom: 12px;
	padding: 10px 16px;
	border-radius: 14px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.7);
	color: #e2e8f0;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.account-menu__toggle-icon svg,
.account-menu__toggle-chevron svg {
	width: 20px;
	height: 20px;
	color: inherit;
}

.account-menu__toggle-chevron {
	display: inline-flex;
	transition: transform 0.2s ease;
}

.account-menu.is-open .account-menu__toggle-chevron {
	transform: rotate(180deg);
}

.account-menu-tab__label {
	font-size: 0.85rem;
	line-height: 1.2;
	letter-spacing: 0.01em;
}

.account-menu-tab:hover {
	border-color: rgba(96, 165, 250, 0.85);
	color: #f8fafc;
	background: rgba(37, 99, 235, 0.35);
}

.account-menu-tab.is-active {
	border-color: rgba(59, 130, 246, 0.95);
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(14, 165, 233, 0.35));
	color: #fff;
	box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.account-menu-tab.is-danger {
	border-color: rgba(239, 68, 68, 0.7);
	color: #fecaca;
}

.account-menu-tab.is-danger:hover,
.account-menu-tab.is-danger.is-active {
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.65), rgba(153, 27, 27, 0.45));
	color: #fff5f5;
	border-color: rgba(248, 113, 113, 0.9);
}

@media (max-width: 960px) {
	.account-menu-tab {
		flex: 1 1 calc(50% - 12px);
		justify-content: flex-start;
		text-align: left;
	}
}

@media (max-width: 720px) {
	.account-menu__toggle {
		display: inline-flex;
	}

	.account-menu-tabs {
		display: none;
		flex-direction: column;
		width: 100%;
	}

	.account-menu.is-open .account-menu-tabs {
		display: flex;
	}
}

@media (max-width: 560px) {
	.account-menu {
		padding: 14px 16px;
	}

	.account-menu-tab {
		flex-basis: 100%;
	}
}

@media (max-width: 560px) {
	.account-menu__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.account-menu__cta {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.account-hero {
		padding: 20px;
	}

	.account-hero__actions {
		width: 100%;
		align-items: stretch;
	}

	.account-hero__actions .btn-secondary-outline {
		width: 100%;
		min-width: 0;
	}

	.account-panels {
		gap: 10px;
	}
}

/* Auth pages */
.auth-page {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: clamp(28px, 6vw, 64px) clamp(16px, 5vw, 36px) 72px;
}

.auth-shell {
	display: grid;
	grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
	gap: clamp(18px, 4vw, 36px);
}

.auth-panel {
	position: relative;
	border-radius: 32px;
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid rgba(148, 163, 184, 0.25);
	background: rgba(6, 11, 28, 0.94);
	box-shadow: 0 30px 60px rgba(2, 6, 23, 0.65);
}

.auth-panel--info {
	background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.92)),
		radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.22), rgba(6, 11, 28, 0.92));
	border: 1px solid rgba(96, 165, 250, 0.35);
}

.auth-panel__head {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: clamp(18px, 3vw, 28px);
}

.auth-eyebrow {
	font-size: 0.78rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #94a3b8;
}

.auth-title {
	margin: 0;
	font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}

.auth-subtitle {
	margin: 0;
	font-size: 0.98rem;
	color: #cbd5f5;
	max-width: 46ch;
}

.auth-alert {
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 23, 42, 0.65);
	font-size: 0.9rem;
	line-height: 1.4;
	margin-bottom: 18px;
}

.auth-alert--error {
	border-color: rgba(248, 113, 113, 0.4);
	background: rgba(127, 29, 29, 0.22);
	color: #fecaca;
}

.auth-alert--success {
	border-color: rgba(74, 222, 128, 0.45);
	background: rgba(21, 128, 61, 0.22);
	color: #bbf7d0;
}

.auth-alert--info {
	border-color: rgba(96, 165, 250, 0.45);
	background: rgba(30, 64, 175, 0.25);
	color: #c7d2fe;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.auth-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.auth-label {
	font-size: 0.85rem;
	color: #94a3b8;
}

.auth-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.auth-input {
	width: 100%;
	border-radius: 16px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.9);
	padding: 14px 52px 14px 56px;
	color: #f8fafc;
	font-size: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input:focus {
	outline: none;
	border-color: rgba(59, 130, 246, 0.9);
	box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.45);
}

.auth-input-icon {
	position: absolute;
	left: 16px;
	color: #94a3b8;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	pointer-events: none;
}

.auth-input-icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.auth-input-action {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: rgba(15, 23, 42, 0.8);
	border-radius: 999px;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #cbd5f5;
	box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
	cursor: pointer;
	transition: color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input-action:hover {
	color: #e0f2fe;
	box-shadow: inset 0 0 0 1px rgba(224, 242, 254, 0.7);
}

.auth-input-action__icon {
	display: none;
}

.auth-input-action__icon--show {
	display: flex;
}

.auth-input-action.is-active .auth-input-action__icon--show {
	display: none;
}

.auth-input-action.is-active .auth-input-action__icon--hide {
	display: flex;
}

.auth-submit {
	margin-top: 4px;
}

.auth-links {
		max-width: 1140px;
		margin: 28px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	font-size: 0.9rem;
}

.auth-links--cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.auth-link-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.75);
	box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
	text-decoration: none;
	color: #e2e8f0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-link-card:hover {
	transform: translateY(-2px);
	box-shadow: inset 0 0 0 1px rgba(224, 242, 254, 0.45), 0 10px 20px rgba(15, 23, 42, 0.35);
}

.auth-link-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 16px;
	background: rgba(59, 130, 246, 0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #93c5fd;
}

.auth-link-card__icon svg {
	width: 22px;
	height: 22px;
}
.auth-link-card__title {
	font-weight: 600;
	color: #f8fafc;
	font-size: 0.95rem;
}

.auth-visually-hidden {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	white-space: nowrap;
}

.auth-links a {
	color: #38bdf8;
	text-decoration: none;
}

.auth-links a:hover {
	text-decoration: underline;
}

.auth-links--stack {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.auth-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.86rem;
	color: #94a3b8;
}

.auth-consent a {
	color: #93c5fd;
}

.auth-info {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.auth-info__title {
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	margin: 0;
}

.auth-info__text {
	color: #e0f2fe;
	font-size: 0.98rem;
	max-width: 48ch;
}

.auth-highlights {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.auth-highlights__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.auth-highlights__item > div {
	flex: 1;
	min-width: 0;
}

.auth-highlights__badge {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.2);
	border: 1px solid rgba(134, 239, 172, 0.6);
	color: #ecfccb;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);
}

.auth-highlights__title {
	margin: 0;
	font-weight: 600;
}

.auth-highlights__text {
	margin: 4px 0 0;
	font-size: 0.9rem;
	color: #e2e8f0;
}

.auth-support {
	margin-top: auto;
	font-size: 0.92rem;
	color: #e0f2fe;
}

.auth-support a {
	color: #facc15;
	text-decoration: none;
}

.auth-support a:hover {
	text-decoration: underline;
}

@media (max-width: 1100px) {
	.auth-shell {
		grid-template-columns: 1fr;
	}

	.auth-panel--info {
		order: -1;
	}
}

@media (max-width: 640px) {
	.auth-page {
		padding: 20px 14px 44px;
	}

	.auth-panel {
		border-radius: 24px;
		padding: 20px;
	}

	.auth-input {
		padding: 12px 44px;
	}

	.auth-input-icon {
		position: static;
		margin-right: 8px;
		width: 24px;
		height: 24px;
	}

	.auth-input-wrapper {
		flex-wrap: wrap;
		gap: 10px;
	}

	.auth-input-action {
		position: static;
		align-self: flex-end;
		transform: none;
	}

	.auth-links--cards {
		grid-template-columns: 1fr;
	}
}
