:root {
	--ofp-bg: #061221;
	--ofp-bg-2: #07182c;
	--ofp-panel: rgba(12, 31, 52, 0.88);
	--ofp-panel-2: rgba(9, 27, 47, 0.96);
	--ofp-card: #0b2038;
	--ofp-line: rgba(75, 137, 204, 0.22);
	--ofp-line-strong: rgba(78, 150, 235, 0.38);
	--ofp-text: #eef6ff;
	--ofp-sub: #b8c8da;
	--ofp-muted: #7287a1;
	--ofp-blue: #1677ff;
	--ofp-blue-2: #23a2ff;
	--ofp-orange: #ff6a2a;
	--ofp-purple: #7247f3;
	--ofp-green: #19c37d;
	--ofp-red: #ff4d5d;
	--ofp-gold: #ffb83f;
	--ofp-container: 1180px;
	--ofp-radius: 8px;
	--ofp-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

* {
	box-sizing: border-box;
}

html {
	background: var(--ofp-bg);
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 80% 0, rgba(19, 109, 225, 0.18), transparent 28%),
		linear-gradient(180deg, #06111f 0, #07182c 46%, #06111f 100%);
	color: var(--ofp-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 0;
}

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

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

button,
input {
	font: inherit;
}

.ofp-page {
	min-height: 100vh;
	overflow-x: hidden;
}

.ofp-container {
	width: min(var(--ofp-container), calc(100% - 48px));
	margin: 0 auto;
}

.ofp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(4, 14, 27, 0.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(70, 132, 205, 0.16);
}

.ofp-header__inner {
	height: 70px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.ofp-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.ofp-logo__mark {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: end;
	justify-content: center;
	gap: 3px;
	padding: 8px;
	background: #07162a;
	border: 2px solid #2d84ff;
	box-shadow: 0 0 0 4px rgba(22, 119, 255, 0.09);
}

.ofp-logo__mark i {
	width: 5px;
	border-radius: 3px 3px 0 0;
	background: #2f8cff;
}

.ofp-logo__mark i:nth-child(1) {
	height: 12px;
}

.ofp-logo__mark i:nth-child(2) {
	height: 17px;
	background: #ff5252;
}

.ofp-logo__mark i:nth-child(3) {
	height: 22px;
	background: #29d391;
}

.ofp-logo__text strong {
	display: block;
	font-size: 18px;
	line-height: 1.15;
	font-weight: 800;
	color: #fff;
}

.ofp-logo__text small {
	display: block;
	margin-top: 3px;
	color: #91a8c0;
	font-size: 11px;
	line-height: 1.1;
	white-space: nowrap;
}

.ofp-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	flex: 1 1 auto;
	min-width: 0;
}

.ofp-nav li {
	list-style: none;
}

.ofp-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 70px;
	color: #d8e5f4;
	font-size: 14px;
	font-weight: 650;
	white-space: nowrap;
}

.ofp-nav a:hover,
.ofp-nav .current-menu-item > a {
	color: #fff;
}

.ofp-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--ofp-blue);
	opacity: 0;
	transform: scaleX(0.55);
	transition: 0.18s ease;
}

.ofp-nav a:hover::after,
.ofp-nav .current-menu-item > a::after {
	opacity: 1;
	transform: scaleX(1);
}

.ofp-search {
	display: flex;
	align-items: center;
	width: 220px;
	height: 34px;
	border: 1px solid rgba(77, 134, 199, 0.2);
	border-radius: 7px;
	background: rgba(20, 44, 72, 0.72);
	overflow: hidden;
	flex: 0 0 auto;
}

.ofp-search input {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	padding: 0 11px;
	background: transparent;
	color: #dbe9f8;
	font-size: 12px;
}

.ofp-search input::placeholder {
	color: #637c98;
}

.ofp-search button {
	width: 36px;
	height: 34px;
	border: 0;
	background: transparent;
	color: #93a9bf;
	cursor: pointer;
}

.ofp-search svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
	margin: 0 auto;
}

.ofp-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 14px;
	border-radius: 5px;
	background: linear-gradient(180deg, #2387ff, #1267ef);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 10px 22px rgba(22, 119, 255, 0.22);
	white-space: nowrap;
}

.ofp-menu-toggle {
	display: none;
}

.ofp-main {
	min-height: 60vh;
}

.ofp-hero {
	position: relative;
	overflow: hidden;
	min-height: 238px;
	padding: 14px 0 9px;
	background:
		linear-gradient(90deg, rgba(2, 10, 24, 0.96) 0%, rgba(2, 10, 24, 0.84) 38%, rgba(2, 10, 24, 0.28) 68%, rgba(2, 10, 24, 0.08) 100%),
		linear-gradient(180deg, rgba(2, 10, 24, 0.08) 0%, rgba(2, 10, 24, 0.5) 100%),
		url("../images/content/hero-global-market.png") center 32% / cover no-repeat;
	background:
		linear-gradient(90deg, rgba(2, 10, 24, 0.96) 0%, rgba(2, 10, 24, 0.84) 38%, rgba(2, 10, 24, 0.28) 68%, rgba(2, 10, 24, 0.08) 100%),
		linear-gradient(180deg, rgba(2, 10, 24, 0.08) 0%, rgba(2, 10, 24, 0.5) 100%),
		image-set(url("../images/content/hero-global-market.webp") type("image/webp"), url("../images/content/hero-global-market.png") type("image/png")) center 32% / cover no-repeat;
	border-bottom: 1px solid rgba(78, 150, 235, 0.11);
}

.ofp-hero__grid {
	display: block;
	min-height: 215px;
}

.ofp-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 565px;
}

.ofp-hero h1 {
	margin: 0;
	font-size: 34px;
	line-height: 1.08;
	font-weight: 860;
	color: #fff;
	text-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

.ofp-hero h2 {
	margin: 11px 0 0;
	color: #fff;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 800;
}

.ofp-hero p {
	margin: 8px 0 0;
	color: #b8c7d8;
	font-size: 12px;
	line-height: 1.55;
}

.ofp-hero__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, auto));
	gap: 14px;
	margin-top: 18px;
	max-width: 420px;
}

.ofp-hero__features span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #d3e3f5;
	font-size: 11px;
	line-height: 1.18;
	width: 82px;
	white-space: normal;
}

.ofp-hero__features svg,
.ofp-room-strip svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.ofp-hero__features svg {
	color: #1d87ff;
	flex: 0 0 auto;
	padding: 3px;
	border: 1px solid rgba(29, 135, 255, 0.8);
	border-radius: 999px;
	background: rgba(5, 22, 45, 0.42);
	box-shadow: 0 0 12px rgba(29, 135, 255, 0.18);
}

.ofp-hero__actions {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-top: 13px;
	max-width: 565px;
}

.ofp-cta {
	position: relative;
	min-height: 49px;
	display: grid;
	align-content: center;
	padding: 8px 28px 8px 15px;
	border-radius: 4px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.ofp-cta::after {
	content: "\203A";
	/*
	content: "›";
	position: absolute;
	right: 18px;
	top: 22px;
	font-size: 28px;
	font-weight: 300;
	opacity: 0.9;
}

	*/
	position: absolute;
	right: 13px;
	top: 13px;
	font-size: 22px;
	font-weight: 300;
	opacity: 0.9;
}

.ofp-cta span {
	display: block;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 500;
}

.ofp-cta::after {
	content: "\203A";
	right: 13px;
	top: 13px;
	font-size: 22px;
}

.ofp-cta--blue {
	background: linear-gradient(135deg, #1175ff, #1f55e6);
}

.ofp-cta--purple {
	background: linear-gradient(135deg, #6d42ee, #8f47ff);
}

.ofp-cta--orange {
	background: linear-gradient(135deg, #ff7a23, #f05219);
}

.ofp-cta--dark {
	background: linear-gradient(135deg, #172c49, #0d1e34);
	border: 1px solid rgba(125, 168, 217, 0.28);
}

.ofp-hero__visual {
	display: block;
	position: absolute;
	top: 4px;
	right: max(12px, calc((100vw - var(--ofp-container)) / 2));
	bottom: 8px;
	z-index: 2;
	width: 126px;
	min-height: 0;
	pointer-events: none;
}

.ofp-hero .ofp-globe,
.ofp-hero__visual > * {
	display: none;
}

.ofp-globe {
	position: absolute;
	inset: -8px -28px -4px 0;
	overflow: hidden;
}

.ofp-globe__earth {
	position: absolute;
	right: 40px;
	top: -28px;
	width: 620px;
	height: 380px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 54% 42%, rgba(255, 188, 82, 0.82) 0 1px, transparent 2px) 0 0 / 26px 18px,
		radial-gradient(circle at 50% 48%, rgba(39, 128, 255, 0.28), transparent 58%),
		linear-gradient(140deg, rgba(12, 48, 101, 0.08), rgba(8, 40, 91, 0.82) 46%, rgba(2, 10, 20, 0.9));
	box-shadow:
		inset 0 0 54px rgba(80, 157, 255, 0.72),
		inset 0 -60px 120px rgba(0, 0, 0, 0.72),
		0 0 54px rgba(28, 134, 255, 0.48);
	transform: rotate(-8deg);
}

.ofp-globe__earth::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background:
		repeating-linear-gradient(11deg, transparent 0 25px, rgba(82, 148, 224, 0.17) 26px 27px),
		repeating-linear-gradient(96deg, transparent 0 38px, rgba(82, 148, 224, 0.13) 39px 40px);
	mask-image: radial-gradient(circle at 50% 50%, #000 0 68%, transparent 69%);
}

.ofp-globe__candles {
	position: absolute;
	right: 92px;
	top: 142px;
	width: 420px;
	height: 175px;
	display: flex;
	align-items: center;
	gap: 8px;
	transform: rotate(-8deg);
}

.ofp-globe__candles i {
	position: relative;
	display: block;
	width: 9px;
	height: calc(28px + (var(--i) % 6) * 12px);
	border-radius: 2px;
	background: #14c984;
	box-shadow: 0 0 13px rgba(20, 201, 132, 0.24);
	margin-top: calc((var(--i) % 5) * 8px);
}

.ofp-globe__candles i:nth-child(2n) {
	background: #ff4d5d;
	box-shadow: 0 0 13px rgba(255, 77, 93, 0.25);
}

.ofp-globe__candles i::before {
	content: "";
	position: absolute;
	left: 4px;
	top: -18px;
	width: 1px;
	height: calc(100% + 36px);
	background: currentColor;
	opacity: 0.72;
}

.ofp-globe__line {
	position: absolute;
	right: 70px;
	bottom: 66px;
	width: 430px;
	height: 130px;
	background:
		linear-gradient(136deg, transparent 0 40%, rgba(255, 80, 88, 0.7) 41% 42%, transparent 43%),
		repeating-linear-gradient(0deg, rgba(26, 103, 184, 0.08) 0 1px, transparent 1px 24px),
		repeating-linear-gradient(90deg, rgba(26, 103, 184, 0.08) 0 1px, transparent 1px 32px);
	opacity: 0.82;
	transform: skewY(-8deg);
}

.ofp-hero-quotes {
	position: absolute;
	right: 0;
	top: 0;
	display: grid;
	gap: 9px;
	width: 118px;
}

.ofp-hero-quotes a {
	display: grid;
	gap: 2px;
	min-height: 61px;
	padding: 9px 11px;
	border: 1px solid rgba(79, 139, 205, 0.18);
	border-radius: 6px;
	background: rgba(12, 31, 52, 0.84);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.ofp-hero-quotes span,
.ofp-ticker__item span {
	color: #9db1c6;
	font-size: 10px;
}

.ofp-hero-quotes strong {
	font-size: 15px;
	line-height: 1.1;
	color: #fff;
}

.ofp-hero-quotes em {
	font-size: 11px;
	font-style: normal;
}

.is-up {
	color: var(--ofp-green) !important;
}

.is-down {
	color: var(--ofp-red) !important;
}

.ofp-ticker {
	background: linear-gradient(180deg, rgba(7, 24, 44, 0.9), rgba(7, 24, 44, 0.72));
	border-top: 1px solid rgba(78, 150, 235, 0.08);
	border-bottom: 1px solid rgba(78, 150, 235, 0.12);
}

.ofp-ticker__row {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr)) auto;
	gap: 14px;
	align-items: center;
	min-height: 84px;
}

.ofp-ticker__item {
	position: relative;
	display: grid;
	grid-template-columns: auto auto;
	gap: 2px 8px;
	align-items: end;
	min-width: 0;
	padding-right: 8px;
	border-right: 1px solid rgba(74, 131, 192, 0.14);
}

.ofp-ticker__item strong {
	color: #fff;
	font-size: 15px;
	line-height: 1;
}

.ofp-ticker__item em {
	font-style: normal;
	font-size: 12px;
}

.ofp-spark {
	grid-column: 2;
	width: 62px;
	height: 25px;
	color: var(--ofp-green);
}

.ofp-spark.is-down {
	color: var(--ofp-red);
}

.ofp-ticker__more {
	padding: 9px 13px;
	border: 1px solid rgba(81, 142, 209, 0.22);
	border-radius: 6px;
	background: rgba(16, 39, 64, 0.85);
	color: #cfe0f3;
	font-size: 12px;
	white-space: nowrap;
}

.ofp-live-grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr 1.16fr;
	gap: 14px;
	margin-top: 28px;
}

.ofp-live-card,
.ofp-schedule-card,
.ofp-hot-card,
.ofp-widget,
.ofp-news-panel,
.ofp-partners,
.ofp-open-card,
.ofp-archive-hero,
.ofp-list-card,
.ofp-sortbar,
.ofp-tag-hero,
.ofp-topic-hero,
.ofp-topic-nav,
.ofp-summary,
.ofp-ai-box,
.ofp-risk,
.ofp-faq,
.ofp-related,
.ofp-sitemap-grid section {
	border: 1px solid var(--ofp-line);
	border-radius: var(--ofp-radius);
	background: linear-gradient(180deg, rgba(13, 36, 61, 0.9), rgba(8, 25, 45, 0.94));
	box-shadow: var(--ofp-shadow);
}

.ofp-live-card,
.ofp-schedule-card,
.ofp-hot-card {
	min-height: 330px;
	padding: 18px;
}

.ofp-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.ofp-section-head h2 {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	color: #fff;
	font-weight: 800;
}

.ofp-section-head a {
	color: #2d8bff;
	font-size: 12px;
	font-weight: 700;
}

.ofp-live-card__media {
	position: relative;
	display: block;
	height: 182px;
	border-radius: 8px;
	overflow: hidden;
}

.ofp-live-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ofp-live-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 46%, rgba(5, 15, 28, 0.78));
}

.ofp-live-card__media b {
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 2;
	padding: 2px 6px;
	border-radius: 3px;
	background: #ff263d;
	color: #fff;
	font-size: 10px;
}

.ofp-play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(6, 15, 27, 0.72);
	transform: translate(-50%, -50%);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.ofp-play::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 13px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 14px solid #fff;
}

.ofp-live-card h3 {
	margin: 14px 0 4px;
	font-size: 19px;
	line-height: 1.3;
	color: #fff;
}

.ofp-live-card p,
.ofp-live-card small {
	margin: 0;
	color: var(--ofp-sub);
	font-size: 13px;
}

.ofp-schedule-card {
	display: flex;
	flex-direction: column;
}

.ofp-schedule-card a {
	display: grid;
	grid-template-columns: 54px 90px 1fr;
	gap: 12px;
	align-items: center;
	padding: 11px 0;
	border-bottom: 1px solid rgba(78, 150, 235, 0.1);
}

.ofp-schedule-card a:last-child {
	border-bottom: 0;
}

.ofp-schedule-card time {
	color: #fff;
	font-weight: 700;
}

.ofp-schedule-card time span {
	display: block;
	margin-top: 3px;
	color: #1e8dff;
	font-size: 11px;
}

.ofp-schedule-card img {
	width: 90px;
	height: 54px;
	object-fit: cover;
	border-radius: 4px;
}

.ofp-schedule-card strong {
	color: #fff;
	font-size: 14px;
	line-height: 1.35;
}

.ofp-schedule-card small {
	grid-column: 3;
	color: var(--ofp-muted);
	font-size: 11px;
	margin-top: -8px;
}

.ofp-rank-list {
	display: grid;
	gap: 11px;
}

.ofp-rank-item {
	display: grid;
	grid-template-columns: 38px 86px 1fr auto;
	gap: 10px;
	align-items: center;
}

.ofp-rank-item span {
	color: #fff;
	font-size: 25px;
	line-height: 1;
	font-weight: 300;
}

.ofp-rank-item img {
	width: 86px;
	height: 52px;
	object-fit: cover;
	border-radius: 4px;
}

.ofp-rank-item strong {
	color: #fff;
	font-size: 13px;
	line-height: 1.42;
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ofp-rank-item small {
	grid-column: 3;
	color: var(--ofp-muted);
	font-size: 11px;
}

.ofp-rank-item em {
	color: var(--ofp-muted);
	font-size: 11px;
	font-style: normal;
}

.ofp-room-strip {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin-top: 14px;
	padding: 15px 18px;
	border: 1px solid var(--ofp-line);
	border-radius: var(--ofp-radius);
	background: rgba(12, 31, 52, 0.82);
}

.ofp-room-strip a {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 4px 10px;
	align-items: center;
	min-height: 54px;
	padding: 0 10px;
	border-right: 1px solid rgba(78, 150, 235, 0.12);
}

.ofp-room-strip a:last-child {
	border-right: 0;
}

.ofp-room-strip span {
	grid-row: 1 / span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: linear-gradient(135deg, #1f89ff, #2446d8);
	color: #fff;
}

.ofp-room-strip strong {
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
}

.ofp-room-strip small {
	color: var(--ofp-muted);
	font-size: 11px;
}

.ofp-ticker {
	padding: 7px 0;
	background: linear-gradient(180deg, rgba(6, 20, 38, 0.98), rgba(7, 22, 41, 0.96));
	border-top: 1px solid rgba(61, 121, 189, 0.09);
	border-bottom: 1px solid rgba(61, 121, 189, 0.14);
}

.ofp-ticker__row {
	grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
	gap: 0;
	min-height: 58px;
	padding: 0 18px;
	border: 1px solid rgba(41, 86, 139, 0.36);
	border-radius: 4px;
	background: linear-gradient(180deg, rgba(8, 28, 51, 0.92), rgba(5, 20, 38, 0.9));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ofp-ticker__item {
	grid-template-columns: minmax(56px, auto) 68px;
	align-content: center;
	min-height: 42px;
	padding: 0 13px;
	border-right: 1px solid rgba(67, 120, 182, 0.16);
	gap: 1px 9px;
}

.ofp-ticker__item span {
	font-size: 11px;
	line-height: 1.15;
}

.ofp-ticker__item strong {
	font-size: 15px;
}

.ofp-ticker__item em {
	font-size: 11px;
	line-height: 1.1;
}

.ofp-ticker__item:nth-child(1) .ofp-spark,
.ofp-ticker__item:nth-child(3) .ofp-spark {
	color: var(--ofp-red) !important;
}

.ofp-spark {
	width: 68px;
	height: 23px;
}

.ofp-ticker__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	margin-left: 14px;
	padding: 0 13px;
	border-radius: 4px;
	font-size: 11px;
	color: #9fb5cb;
	background: rgba(18, 38, 61, 0.9);
}

.ofp-ticker__more::after {
	content: "\2197";
	margin-left: 5px;
	font-size: 10px;
	color: #7f96ad;
}

.ofp-live-grid {
	grid-template-columns: 1.02fr 1.05fr 1.16fr;
	gap: 10px;
	margin-top: 14px;
}

.ofp-live-card,
.ofp-schedule-card,
.ofp-hot-card {
	min-height: 280px;
	padding: 10px 11px 11px;
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(10, 31, 56, 0.96), rgba(7, 23, 42, 0.97));
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ofp-section-head {
	margin-bottom: 9px;
}

.ofp-section-head h2 {
	font-size: 17px;
	line-height: 1.15;
}

.ofp-section-head a {
	font-size: 11px;
	color: #2d8bff;
}

.ofp-section-head a::after {
	content: "\203A";
	margin-left: 5px;
}

.ofp-live-card .ofp-section-head h2::after {
	content: "LIVE";
	display: inline-flex;
	align-items: center;
	height: 18px;
	margin-left: 8px;
	padding: 0 5px;
	border-radius: 3px;
	background: #ff273f;
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	vertical-align: 2px;
}

.ofp-live-card__media {
	height: 141px;
	border-radius: 5px;
}

.ofp-live-card__media b,
.ofp-live-card__media .ofp-play {
	display: none;
}

.ofp-live-card h3 {
	margin: 12px 0 5px;
	font-size: 16px;
	line-height: 1.25;
}

.ofp-live-card p {
	font-size: 12px;
	line-height: 1.45;
}

.ofp-live-card small {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 12px;
	color: #8ea4ba;
	font-size: 11px;
}

.ofp-live-card small::before {
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e8eef8, #5b7aa1);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.ofp-live-card small::after {
	content: "\25C9";
	margin-left: auto;
	color: #8ca1b6;
	font-size: 10px;
}

.ofp-schedule-card a {
	grid-template-columns: 44px 76px 1fr;
	gap: 9px;
	min-height: 59px;
	padding: 8px 0;
}

.ofp-schedule-card time {
	font-size: 13px;
	line-height: 1.12;
}

.ofp-schedule-card time span {
	font-size: 10px;
	color: #178cff;
}

.ofp-schedule-card a:first-of-type time span {
	color: #ff2f44;
}

.ofp-schedule-card img {
	width: 76px;
	height: 45px;
	border-radius: 4px;
}

.ofp-schedule-card > a > img {
	display: none !important;
}

.ofp-schedule-card > a::before {
	content: "";
	grid-column: 2;
	grid-row: 1 / span 2;
	width: 76px;
	height: 45px;
	border-radius: 4px;
	background: url("../images/content/live-schedule-rig.webp") center / cover no-repeat;
}

.ofp-schedule-card > a:nth-of-type(2)::before {
	background-image: url("../images/content/market-chart.webp");
}

.ofp-schedule-card > a:nth-of-type(3)::before {
	background-image: url("../images/content/dark-chart.png");
}

.ofp-schedule-card strong {
	font-size: 12px;
	line-height: 1.35;
}

.ofp-schedule-card small {
	grid-column: 3;
	margin-top: -7px;
	font-size: 10px;
	line-height: 1.2;
}

.ofp-rank-list {
	gap: 10px;
}

.ofp-rank-item {
	grid-template-columns: 26px 72px 1fr auto;
	gap: 9px;
	min-height: 49px;
}

.ofp-rank-item span {
	font-size: 23px;
}

.ofp-rank-item img {
	width: 72px;
	height: 38px;
	border-radius: 4px;
}

.ofp-hot-card .ofp-rank-item > img {
	display: none;
}

.ofp-hot-card .ofp-rank-item::before {
	content: "";
	grid-column: 2;
	grid-row: 1 / span 2;
	width: 72px;
	height: 38px;
	border-radius: 4px;
	background: url("../images/content/hot-oil-rig.webp") center / cover no-repeat;
}

.ofp-hot-card .ofp-rank-item:nth-child(2)::before {
	background-image: url("../images/content/hot-gold-bars.webp");
}

.ofp-hot-card .ofp-rank-item:nth-child(3)::before {
	background-image: url("../images/content/hot-oil-city.webp");
}

.ofp-hot-card .ofp-rank-item:nth-child(4)::before {
	background-image: url("../images/content/hot-chart.webp");
}

.ofp-hot-card .ofp-rank-item span {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.ofp-hot-card .ofp-rank-item strong {
	grid-column: 3;
	grid-row: 1;
}

.ofp-hot-card .ofp-rank-item small {
	grid-column: 3;
	grid-row: 2;
}

.ofp-hot-card .ofp-rank-item em {
	grid-column: 4;
	grid-row: 2;
}

.ofp-rank-item strong {
	font-size: 12px;
	line-height: 1.35;
}

.ofp-rank-item small {
	grid-column: 3;
	font-size: 10px;
	line-height: 1.1;
}

.ofp-rank-item em {
	font-size: 10px;
}

.ofp-rank-item em::before {
	content: "\25C9";
	margin-right: 4px;
	font-size: 9px;
}

.ofp-room-strip {
	grid-template-columns: repeat(6, 1fr);
	margin-top: 8px;
	padding: 6px 10px;
	border-radius: 5px;
	background: linear-gradient(180deg, rgba(10, 31, 56, 0.94), rgba(7, 23, 42, 0.97));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.ofp-room-strip a {
	grid-template-columns: 31px 1fr;
	gap: 2px 8px;
	min-height: 47px;
	padding: 0 9px;
}

.ofp-room-strip span {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	color: #fff;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.ofp-room-strip svg {
	width: 18px;
	height: 18px;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.22));
}

.ofp-room-strip a:nth-child(1) span {
	background: linear-gradient(135deg, #2090ff, #255be4);
}

.ofp-room-strip a:nth-child(2) span {
	background: linear-gradient(135deg, #40a9ff, #4365ff);
}

.ofp-room-strip a:nth-child(3) span {
	background: linear-gradient(135deg, #ff982a, #ff6b18);
}

.ofp-room-strip a:nth-child(4) span {
	background: linear-gradient(135deg, #a64cff, #6245ef);
}

.ofp-room-strip a:nth-child(5) span {
	background: linear-gradient(135deg, #20c5ad, #149d87);
}

.ofp-room-strip a:nth-child(6) span {
	background: linear-gradient(135deg, #ff4268, #de1f45);
}

.ofp-room-strip strong {
	font-size: 12px;
	line-height: 1.16;
}

.ofp-room-strip small {
	font-size: 10px;
	line-height: 1.18;
}

.ofp-home-body {
	display: grid;
	grid-template-columns: minmax(0, 1.74fr) minmax(290px, 0.94fr);
	gap: 14px;
	margin-top: 18px;
}

.ofp-news-panel {
	padding: 18px;
	min-height: 530px;
}

.ofp-tabs {
	display: flex;
	align-items: center;
	gap: 22px;
	border-bottom: 1px solid rgba(78, 150, 235, 0.12);
	margin-bottom: 14px;
}

.ofp-tabs button,
.ofp-tabs a {
	position: relative;
	height: 42px;
	display: inline-flex;
	align-items: center;
	border: 0;
	background: transparent;
	color: #a9bdd2;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.ofp-tabs .is-active {
	color: #fff;
}

.ofp-tabs .is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--ofp-blue);
}

.ofp-tabs > a:last-child {
	margin-left: auto;
	color: #2d8bff;
	font-size: 12px;
}

.ofp-tab-panel {
	display: none;
}

.ofp-tab-panel.is-active {
	display: grid;
	gap: 11px;
}

.ofp-news-row {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 16px;
	align-items: center;
	min-height: 84px;
}

.ofp-news-row img {
	width: 130px;
	height: 74px;
	object-fit: cover;
	border-radius: 5px;
	filter: saturate(1.06) contrast(1.08) brightness(0.92);
	box-shadow: inset 0 0 0 1px rgba(61, 121, 189, 0.15);
}

.ofp-badge {
	display: inline-flex;
	align-items: center;
	height: 22px;
	padding: 0 8px;
	border-radius: 3px;
	background: rgba(24, 135, 255, 0.18);
	color: #26a2ff;
	font-size: 11px;
	font-weight: 700;
}

.ofp-news-row h3 {
	margin: 7px 0 5px;
	color: #fff;
	font-size: 16px;
	line-height: 1.45;
}

.ofp-meta {
	display: flex;
	align-items: center;
	gap: 22px;
	color: var(--ofp-muted);
	font-size: 12px;
}

.ofp-home-sidebar,
.ofp-sidebar {
	display: grid;
	gap: 14px;
	align-content: start;
}

.ofp-widget {
	padding: 18px;
}

.ofp-calendar-list {
	display: grid;
	gap: 12px;
}

.ofp-calendar-list a {
	display: grid;
	grid-template-columns: 52px 1fr 54px;
	gap: 10px;
	align-items: center;
	color: #d8e7f8;
	font-size: 13px;
}

.ofp-calendar-list time {
	color: #a9bdd2;
}

.ofp-calendar-list b {
	color: var(--ofp-gold);
	font-size: 13px;
	letter-spacing: 1px;
}

.ofp-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.ofp-tag-cloud a,
.ofp-filter-tags a,
.ofp-related-tags a {
	max-width: 120px;
	height: 28px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(87, 145, 205, 0.2);
	border-radius: 5px;
	background: rgba(12, 29, 49, 0.7);
	color: #c6d7e8;
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ofp-tag-cloud a:hover,
.ofp-filter-tags a.is-active {
	border-color: rgba(45, 139, 255, 0.6);
	background: rgba(31, 117, 255, 0.18);
	color: #fff;
}

.ofp-analyst {
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 14px;
	align-items: center;
}

.ofp-analyst__avatar {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, #e8f1ff, #a7c6ec);
	color: #08182c;
	font-size: 28px;
	font-weight: 800;
}

.ofp-analyst strong {
	display: block;
	color: #fff;
	font-size: 17px;
}

.ofp-analyst span {
	display: inline-flex;
	margin-left: 5px;
	padding: 2px 6px;
	border-radius: 999px;
	background: var(--ofp-gold);
	color: #14233b;
	font-size: 11px;
}

.ofp-analyst p,
.ofp-analyst em {
	margin: 5px 0 0;
	color: var(--ofp-sub);
	font-size: 12px;
	font-style: normal;
}

.ofp-analyst em {
	color: #ff5151;
}

.ofp-partners {
	margin-top: 18px;
	padding: 16px 18px 20px;
	background: #f4f8ff;
}

.ofp-partners .ofp-section-head h2 {
	color: #176df7;
}

.ofp-partners div:last-child {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	align-items: center;
	gap: 0;
	min-height: 64px;
}

.ofp-partners span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	color: #0a2448;
	font-size: 22px;
	font-weight: 850;
	border-right: 1px solid #d9e3f1;
}

.ofp-partners span:last-child {
	border-right: 0;
}

.ofp-inner {
	padding: 34px 0 56px;
}

.ofp-breadcrumb {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 22px;
	color: #8298b0;
	font-size: 13px;
}

.ofp-breadcrumb a {
	color: #9fb4ca;
}

.ofp-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 348px;
	gap: 26px;
	align-items: start;
}

.ofp-content {
	min-width: 0;
}

.ofp-full {
	width: 100%;
}

.ofp-archive-hero {
	padding: 28px 28px 22px;
	margin-bottom: 18px;
}

.ofp-archive-hero h1 {
	margin: 0;
	font-size: 30px;
	line-height: 1.2;
	color: #fff;
}

.ofp-archive-hero p {
	margin: 12px 0 0;
	color: var(--ofp-sub);
	font-size: 14px;
}

.ofp-filter-tags,
.ofp-related-tags div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.ofp-sortbar {
	display: flex;
	align-items: center;
	gap: 28px;
	height: 48px;
	padding: 0 18px;
	margin-bottom: 14px;
}

.ofp-sortbar a {
	color: #a9bdd2;
	font-weight: 700;
	white-space: nowrap;
}

.ofp-sortbar .is-active {
	color: #2d8bff;
}

.ofp-sortbar span {
	flex: 1;
}

.ofp-sortbar button {
	min-width: 42px;
	height: 31px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0 9px;
	border: 1px solid rgba(81, 142, 209, 0.22);
	border-radius: 5px;
	background: rgba(16, 39, 64, 0.85);
	color: #a9bdd2;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	word-break: keep-all;
	writing-mode: horizontal-tb;
	cursor: pointer;
}

.ofp-sortbar button.is-active {
	background: var(--ofp-blue);
	color: #fff;
}

@media (max-width: 760px) {
	.ofp-sortbar {
		gap: 12px;
		overflow-x: auto;
		padding: 0 12px;
	}

	.ofp-sortbar span {
		min-width: 10px;
	}
}

.ofp-list {
	display: grid;
	gap: 11px;
}

.ofp-list-card {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr) 84px;
	gap: 18px;
	align-items: center;
	min-height: 130px;
	padding: 11px;
}

.ofp-list-card__media {
	position: relative;
	display: block;
	width: 210px;
	height: 108px;
	overflow: hidden;
	border-radius: 6px;
}

.ofp-list-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ofp-list-card__media span {
	position: absolute;
	right: 8px;
	bottom: 8px;
	padding: 2px 6px;
	border-radius: 3px;
	background: rgba(2, 11, 21, 0.72);
	color: #fff;
	font-size: 11px;
}

.ofp-list-card h3 {
	margin: 8px 0 7px;
	font-size: 19px;
	line-height: 1.35;
	color: #fff;
}

.ofp-list-card p {
	margin: 0 0 9px;
	color: #97abc1;
	font-size: 13px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ofp-read-more {
	justify-self: end;
	color: #2d8bff;
	font-size: 13px;
	font-weight: 700;
}

.ofp-pagination {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.ofp-pagination a,
.ofp-pagination span {
	min-width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(81, 142, 209, 0.22);
	border-radius: 5px;
	background: rgba(16, 39, 64, 0.85);
	color: #c7d8ea;
}

.ofp-pagination .current {
	background: var(--ofp-blue);
	color: #fff;
}

.ofp-market-widget {
	display: grid;
	gap: 14px;
}

.ofp-market-widget a {
	display: grid;
	grid-template-columns: 32px 1fr 62px 64px 64px;
	gap: 8px;
	align-items: center;
}

.ofp-market-widget span {
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	border-radius: 6px;
	background: var(--ofp-blue);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.ofp-market-widget strong,
.ofp-market-widget em {
	color: #fff;
	font-size: 13px;
	font-style: normal;
}

.ofp-market-widget b {
	font-size: 12px;
	font-weight: 700;
}

.ofp-market-widget .ofp-spark {
	width: 64px;
}

.ofp-open-card {
	position: relative;
	overflow: hidden;
	min-height: 258px;
	padding: 30px 28px;
	background:
		radial-gradient(circle at 85% 58%, rgba(30, 136, 255, 0.38), transparent 32%),
		linear-gradient(135deg, #0d2c5c, #09213d 58%, #07192e);
}

.ofp-open-card h2 {
	margin: 0;
	font-size: 28px;
	line-height: 1.2;
	color: #fff;
}

.ofp-open-card p {
	margin: 8px 0 22px;
	color: #d8e5f4;
}

.ofp-open-card__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
	max-width: 200px;
	margin-bottom: 24px;
}

.ofp-open-card__features span {
	color: #eaf4ff;
	font-size: 13px;
}

.ofp-open-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 44px;
	border-radius: 5px;
	background: linear-gradient(180deg, #ff7c31, #f05219);
	color: #fff;
	font-size: 17px;
	font-weight: 800;
}

.ofp-tag-hero {
	padding: 34px 26px 24px;
	margin-bottom: 22px;
}

.ofp-tag-hero > div:first-child {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ofp-tag-hero span {
	color: #1677ff;
	font-size: 34px;
	font-weight: 860;
}

.ofp-tag-hero h1 {
	margin: 0;
	font-size: 34px;
	line-height: 1.2;
	color: #fff;
}

.ofp-tag-hero p {
	margin: 14px 0 0;
	color: var(--ofp-sub);
}

.ofp-tag-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 24px;
	padding: 18px;
	border-radius: 7px;
	background: rgba(12, 31, 52, 0.8);
}

.ofp-tag-stats strong {
	color: #90a5bd;
	font-size: 13px;
	font-weight: 650;
}

.ofp-tag-stats em {
	display: block;
	color: #fff;
	font-size: 22px;
	font-style: normal;
	font-weight: 850;
}

.ofp-related-tags {
	margin-bottom: 18px;
}

.ofp-related-tags strong {
	display: block;
	margin-bottom: 12px;
	color: #fff;
	font-size: 16px;
}

.ofp-topic-hero {
	position: relative;
	min-height: 250px;
	display: flex;
	align-items: end;
	padding: 32px;
	margin-bottom: 16px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(9, 25, 45, 0.95), rgba(9, 25, 45, 0.78), rgba(9, 25, 45, 0.2)),
		var(--topic-bg) center / cover no-repeat;
}

.ofp-topic-hero h1 {
	margin: 0;
	color: #fff;
	font-size: 42px;
	line-height: 1.2;
}

.ofp-topic-hero p {
	max-width: 660px;
	margin: 12px 0 0;
	color: #d0deef;
}

.ofp-topic-stats {
	display: grid;
	grid-template-columns: repeat(4, 110px);
	gap: 14px;
	margin-top: 26px;
}

.ofp-topic-stats span {
	color: #9db1c6;
	font-size: 12px;
}

.ofp-topic-stats strong {
	display: block;
	color: #fff;
	font-size: 20px;
}

.ofp-topic-nav {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 0;
	padding: 14px;
	margin-bottom: 18px;
}

.ofp-topic-nav a {
	display: grid;
	place-items: center;
	min-height: 72px;
	padding: 8px;
	color: #eaf4ff;
	font-weight: 800;
	border-right: 1px solid rgba(78, 150, 235, 0.12);
}

.ofp-topic-nav a:last-child {
	border-right: 0;
}

.ofp-topic-nav small {
	max-width: 92px;
	display: block;
	margin-top: 4px;
	color: var(--ofp-muted);
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ofp-article {
	min-width: 0;
}

.ofp-article__header h1 {
	margin: 14px 0 12px;
	font-size: 29px;
	line-height: 1.35;
	color: #fff;
}

.ofp-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	color: #8fa5bc;
	font-size: 13px;
}

.ofp-summary,
.ofp-ai-box,
.ofp-risk,
.ofp-faq,
.ofp-related {
	margin-top: 16px;
	padding: 18px;
}

.ofp-summary {
	color: #c6d7e8;
}

.ofp-summary strong,
.ofp-risk strong {
	color: #fff;
}

.ofp-ai-box h2,
.ofp-faq h2,
.ofp-related h2 {
	margin: 0 0 10px;
	font-size: 18px;
}

.ofp-ai-box p {
	margin: 0;
	color: #c6d7e8;
}

.ofp-ai-box div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 14px;
}

.ofp-ai-box span {
	padding: 12px;
	border-radius: 6px;
	background: rgba(22, 119, 255, 0.12);
	color: #dcecff;
	font-size: 13px;
}

.ofp-article-cover {
	margin: 16px 0 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--ofp-line);
}

.ofp-article-cover img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center bottom;
}

.ofp-toc {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 16px 0;
	padding: 12px 14px;
	border: 1px solid rgba(78, 150, 235, 0.16);
	border-radius: 7px;
	background: rgba(12, 31, 52, 0.62);
}

.ofp-toc strong {
	color: #fff;
	margin-right: 6px;
}

.ofp-toc a {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(22, 119, 255, 0.12);
	color: #cfe0f3;
	font-size: 12px;
}

.ofp-entry {
	color: #d3e1f0;
	font-size: 15px;
	line-height: 1.92;
}

.ofp-entry h2 {
	margin: 28px 0 12px;
	color: #fff;
	font-size: 20px;
	line-height: 1.35;
}

.ofp-entry h3 {
	margin: 22px 0 10px;
	color: #fff;
	font-size: 17px;
}

.ofp-entry p {
	margin: 0 0 14px;
}

.ofp-entry ul {
	margin: 0 0 16px;
	padding: 16px 20px;
	border-radius: 7px;
	background: rgba(18, 50, 82, 0.62);
}

.ofp-entry li {
	margin: 7px 0;
}

.ofp-entry table {
	width: 100%;
	border-collapse: collapse;
	margin: 12px 0 18px;
	overflow: hidden;
	border-radius: 7px;
}

.ofp-entry th,
.ofp-entry td {
	padding: 12px;
	border: 1px solid rgba(78, 150, 235, 0.18);
	background: rgba(12, 31, 52, 0.72);
	text-align: left;
}

.ofp-entry th {
	color: #fff;
	background: rgba(22, 119, 255, 0.16);
}

.ofp-entry .wp-block-image {
	margin: 18px 0;
}

.ofp-entry .wp-block-image img {
	width: 100%;
	max-height: 330px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid var(--ofp-line);
}

.ofp-risk {
	color: #dcecff;
	background: linear-gradient(180deg, rgba(13, 47, 83, 0.94), rgba(9, 31, 55, 0.94));
}

.ofp-faq details {
	border-top: 1px solid rgba(78, 150, 235, 0.15);
	padding: 12px 0;
}

.ofp-faq details:first-of-type {
	border-top: 0;
}

.ofp-faq summary {
	cursor: pointer;
	color: #fff;
	font-weight: 800;
}

.ofp-faq p {
	margin: 8px 0 0;
	color: #b8c8da;
}

.ofp-share-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(78, 150, 235, 0.14);
}

.ofp-share,
.ofp-actions-small {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #8fa5bc;
}

.ofp-share a,
.ofp-actions-small button {
	height: 32px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(78, 150, 235, 0.2);
	border-radius: 5px;
	background: rgba(12, 31, 52, 0.72);
	color: #dcecff;
}

.ofp-actions-small button {
	cursor: pointer;
}

.ofp-post-tags {
	margin-top: 16px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #a9bdd2;
}

.ofp-post-tags a {
	display: inline-flex;
	max-width: 150px;
	height: 27px;
	margin-right: 8px;
	padding: 0 10px;
	align-items: center;
	border-radius: 999px;
	background: rgba(22, 119, 255, 0.12);
	color: #dcecff;
	font-size: 12px;
	vertical-align: middle;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ofp-prev-next {
	display: grid;
	gap: 8px;
	margin-top: 16px;
	color: #9fb4ca;
	font-size: 13px;
}

.ofp-prev-next a {
	color: #cfe0f3;
}

.ofp-related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.ofp-related-grid a {
	display: grid;
	gap: 8px;
}

.ofp-related-grid img {
	height: 94px;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.ofp-related-grid strong {
	color: #fff;
	font-size: 13px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ofp-sitemap-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.ofp-sitemap-grid section {
	padding: 20px;
	display: grid;
	gap: 9px;
}

.ofp-sitemap-grid h2 {
	margin: 0 0 6px;
	color: #fff;
	font-size: 19px;
}

.ofp-sitemap-grid a {
	color: #cfe0f3;
	font-size: 14px;
}

.ofp-topic-grid-page {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.ofp-topic-grid-page a {
	position: relative;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 20px;
	border: 1px solid var(--ofp-line);
	border-radius: 8px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(5, 16, 30, 0.1), rgba(5, 16, 30, 0.9)),
		var(--topic-bg) center / cover no-repeat;
}

.ofp-topic-grid-page strong {
	color: #fff;
	font-size: 22px;
}

.ofp-topic-grid-page span,
.ofp-topic-grid-page em {
	margin-top: 6px;
	color: #c6d7e8;
	font-style: normal;
}

.ofp-tag-list-page {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.ofp-tag-list-page a {
	padding: 14px;
	border: 1px solid var(--ofp-line);
	border-radius: 7px;
	background: rgba(12, 31, 52, 0.78);
}

.ofp-tag-list-page strong {
	display: block;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ofp-tag-list-page span {
	display: block;
	margin-top: 4px;
	color: var(--ofp-muted);
	font-size: 12px;
}

.ofp-error {
	max-width: 680px;
	margin: 70px auto;
	text-align: center;
}

.ofp-error h1 {
	margin: 0;
	font-size: 96px;
	line-height: 1;
	color: #fff;
}

.ofp-error p {
	color: #b8c8da;
}

.ofp-search--large {
	width: 100%;
	height: 44px;
	margin: 24px auto;
}

.ofp-search--large button {
	width: 80px;
	color: #fff;
	background: var(--ofp-blue);
}

.ofp-footer {
	margin-top: 36px;
	border-top: 1px solid rgba(78, 150, 235, 0.14);
	background: rgba(4, 14, 27, 0.74);
}

.ofp-footer__top {
	display: grid;
	grid-template-columns: 1.55fr repeat(4, 0.8fr) 0.9fr 0.65fr;
	gap: 26px;
	padding: 36px 0 28px;
	border-bottom: 1px solid rgba(78, 150, 235, 0.12);
}

.ofp-footer__brand p {
	max-width: 260px;
	margin: 16px 0 18px;
	color: #8fa5bc;
	font-size: 13px;
}

.ofp-socials {
	display: flex;
	gap: 10px;
}

.ofp-socials a {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
	color: #dcecff;
	font-size: 12px;
}

.ofp-footer__col h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 14px;
}

.ofp-footer__col a {
	display: block;
	margin: 6px 0;
	color: #879cb4;
	font-size: 13px;
}

.ofp-footer__qr {
	text-align: center;
	color: #8fa5bc;
	font-size: 12px;
}

.ofp-qr {
	width: 82px;
	height: 82px;
	margin: 0 auto 8px;
	border: 6px solid #fff;
	background:
		linear-gradient(90deg, #111 50%, transparent 0) 0 0 / 16px 16px,
		linear-gradient(#111 50%, transparent 0) 0 0 / 16px 16px,
		#fff;
	box-shadow: inset 0 0 0 2px #111;
}

.ofp-app {
	align-self: center;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 5px;
	color: #fff;
}

.ofp-footer__bottom {
	min-height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	color: #6f839b;
	font-size: 12px;
}

.ofp-empty {
	padding: 28px;
	border: 1px solid var(--ofp-line);
	border-radius: 8px;
	background: rgba(12, 31, 52, 0.78);
	color: #cfe0f3;
}

@media (max-width: 1180px) {
	.ofp-header__inner {
		gap: 16px;
	}

	.ofp-nav {
		gap: 14px;
	}

	.ofp-search {
		width: 190px;
	}

	.ofp-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.ofp-hero__visual {
		min-height: 300px;
	}

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

	.ofp-ticker__row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		padding: 14px 0;
	}

	.ofp-live-grid,
	.ofp-home-body,
	.ofp-layout {
		grid-template-columns: 1fr;
	}

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

	.ofp-room-strip {
		grid-template-columns: repeat(3, 1fr);
	}

	.ofp-footer__top {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 760px) {
	.ofp-container {
		width: min(100% - 28px, var(--ofp-container));
	}

	.ofp-header__inner {
		height: auto;
		min-height: 64px;
		flex-wrap: wrap;
		padding: 12px 0;
	}

	.ofp-menu-toggle {
		display: inline-flex;
		margin-left: auto;
		height: 34px;
		align-items: center;
		padding: 0 12px;
		border: 1px solid rgba(77, 134, 199, 0.2);
		border-radius: 5px;
		background: rgba(20, 44, 72, 0.72);
		color: #fff;
	}

	.ofp-nav {
		display: none;
		flex: 0 0 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.ofp-nav.is-open {
		display: flex;
	}

	.ofp-nav a {
		height: 40px;
	}

	.ofp-search {
		order: 4;
		width: 100%;
	}

	.ofp-login {
		display: none;
	}

	.ofp-hero {
		padding: 34px 0 18px;
	}

	.ofp-hero h1 {
		font-size: 35px;
	}

	.ofp-hero h2 {
		font-size: 21px;
	}

	.ofp-hero__features,
	.ofp-hero__actions,
	.ofp-ai-box div,
	.ofp-topic-stats,
	.ofp-tag-stats,
	.ofp-related-grid,
	.ofp-sitemap-grid,
	.ofp-topic-grid-page,
	.ofp-tag-list-page,
	.ofp-sidebar {
		grid-template-columns: 1fr;
	}

	.ofp-hero__visual {
		min-height: 230px;
	}

	.ofp-globe {
		inset: 0;
		transform: scale(0.82);
		transform-origin: center;
	}

	.ofp-hero-quotes {
		display: none;
	}

	.ofp-ticker__row {
		grid-template-columns: 1fr 1fr;
	}

	.ofp-room-strip {
		grid-template-columns: 1fr 1fr;
	}

	.ofp-news-row,
	.ofp-list-card {
		grid-template-columns: 118px 1fr;
	}

	.ofp-list-card__media {
		width: 118px;
		height: 82px;
	}

	.ofp-list-card p,
	.ofp-read-more {
		display: none;
	}

	.ofp-list-card h3 {
		font-size: 15px;
	}

	.ofp-meta {
		gap: 10px;
		font-size: 11px;
	}

	.ofp-market-widget a {
		grid-template-columns: 32px 1fr 62px;
	}

	.ofp-market-widget b,
	.ofp-market-widget .ofp-spark {
		display: none;
	}

	.ofp-article__header h1,
	.ofp-archive-hero h1,
	.ofp-tag-hero h1,
	.ofp-topic-hero h1 {
		font-size: 25px;
	}

	.ofp-article-cover img {
		height: 220px;
	}

	.ofp-share-row,
	.ofp-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.ofp-footer__top {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.ofp-room-strip {
		grid-template-columns: 1fr;
	}

	.ofp-partners div:last-child {
		grid-template-columns: 1fr 1fr;
	}

	.ofp-tabs {
		overflow-x: auto;
	}
}
