:root {
	--primary: #FF6B00;
	--primary-dark: #cc5500;
	--primary-light: #ff8b33;
	--bg-dark: #0B1120;
	--surface: #111827;
	--surface-light: #1F2937;
	--text-main: #F9FAFB;
	--text-muted: #9CA3AF;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-main);
	-webkit-font-smoothing: antialiased;
}

html {
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--text-main);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.tm-hero-section {
	background: linear-gradient(180deg, rgba(11, 17, 32, 0.4) 0%, var(--bg-dark) 100%), url('../img/hero_bg.webp') center/cover no-repeat;
	min-height: 90vh;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.tm-glass-card {
	background: rgba(17, 24, 39, 0.7);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-top: 1px solid rgba(255, 107, 0, 0.2);
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tm-glass-card:hover {
	transform: translateY(-8px);
	border-top: 1px solid var(--primary);
	box-shadow: 0 25px 50px -12px rgba(255, 107, 0, 0.15);
}

.tm-btn-gradient {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px 0 rgba(255, 107, 0, 0.39);
}

.tm-btn-gradient:hover {
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
	color: #fff;
	transform: translateY(-2px);
}

.tm-text-gradient {
	background: -webkit-linear-gradient(0deg, var(--primary-light), var(--primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.tm-text-highlight {
	color: #ff9d5c;
	text-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}

.tm-section-secondary {
	background: var(--surface);
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.tm-footer {
	border-top: 1px solid rgba(255, 107, 0, 0.2);
	padding: 4rem 0;
	background: #060913;
}

.tm-lang-switcher button {
	color: var(--text-muted);
	text-decoration: none;
	margin: 0 5px;
	padding: 6px 14px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.tm-lang-switcher button.active,
.tm-lang-switcher button:hover {
	color: #fff;
	border: 1px solid var(--primary);
	background: rgba(255, 107, 0, 0.15);
}

.uk-list-divider>li {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.tm-hero-title-shadow {
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 1);
	color: #ffffff;
}

.tm-hero-desc-shadow {
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
	font-weight: 400;
	color: #f0f0f0;
}

.uk-modal-dialog {
	background: var(--surface);
	color: var(--text-main);
	border: 1px solid rgba(255, 107, 0, 0.3);
	border-radius: 16px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.uk-modal-close-default {
	color: var(--text-muted);
	transition: color 0.2s;
}

.uk-modal-close-default:hover {
	color: var(--primary);
}

.uk-input {
	background: var(--bg-dark);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 6px;
}

.uk-input:focus {
	border-color: var(--primary);
	background: var(--bg-dark);
	color: #fff;
}

p {
	color: var(--text-muted);
	line-height: 1.7;
	font-size: 1.1rem;
}

.tm-integration-logo {
	font-size: 3rem;
	color: var(--text-muted);
	transition: 0.3s;
}

.tm-integration-logo:hover {
	color: var(--primary);
	transform: scale(1.1);
}

.tm-integration-icons {
	display: flex;
	gap: 26px;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

/* Replacements for inline CSS */
.tm-navbar {
	background: rgba(11, 17, 32, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tm-logo-text {
	font-weight: 800;
	letter-spacing: 2px;
}

.tm-nav-link {
	color: #fff;
}

.tm-beta-label {
	background: rgba(255, 107, 0, 0.1);
	border: 1px solid var(--primary);
	color: var(--primary);
	border-radius: 20px;
	font-weight: 600;
	text-transform: none !important;
}

.tm-list-muted {
	color: var(--text-muted);
}

.tm-icon-primary {
	color: var(--primary);
}

.uk-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
}

.uk-icon svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.uk-icon [fill*="#"]:not(.uk-preserve) {
	fill: currentColor;
}

.uk-icon [stroke*="#"]:not(.uk-preserve) {
	stroke: currentColor;
}

.tm-img-responsive {
	border-radius: 10px;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.tm-card-title-light {
	color: #fff;
}

.tm-card-security {
	border-top-color: #ef4444;
}

.tm-icon-danger {
	color: #ef4444;
}

.tm-text-primary {
	color: var(--primary);
}

.tm-footer-link {
	color: var(--text-muted);
	transition: 0.3s;
	display: block;
	margin-bottom: 8px;
}

.tm-footer-link:last-child {
	margin-bottom: 0;
}

.tm-footer-link:hover {
	color: #FF6B00;
}

.tm-label-muted {
	color: var(--text-muted);
}

.tm-modal-text {
	color: var(--text-muted);
}

.tm-btn-rounded {
	border-radius: 6px;
}

.tm-legal-content h2,
.tm-legal-content h3 {
	color: var(--primary);
	margin-top: 2rem;
}

.tm-legal-content p {
	color: #e2e8f0;
	font-size: 1.05rem;
}

.tm-modal[hidden] {
	display: none;
}

.tm-modal {
	position: fixed;
	inset: 0;
	z-index: 1010;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.68);
}

.tm-modal .uk-modal-dialog {
	opacity: 1;
	transform: none;
}

.tm-modal-open {
	overflow: hidden;
}

.tm-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--text-muted);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.tm-notifications {
	position: fixed;
	top: 18px;
	left: 50%;
	z-index: 1100;
	width: min(420px, calc(100% - 32px));
	transform: translateX(-50%);
}

.tm-notification {
	margin-bottom: 10px;
	padding: 12px 16px;
	border-radius: 6px;
	background: var(--surface);
	color: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.tm-notification-success {
	border-left: 4px solid #22c55e;
}

.tm-notification-danger {
	border-left: 4px solid #ef4444;
}
