:root {
	--gc-red: #ff1f35;
	--gc-red-dark: #d60f24;
	--gc-black: #080808;
	--gc-nav: #050b14;
	--gc-text: #111;
	--gc-muted: #6b7280;
	--gc-border: #e8e8e8;
	--gc-background: #f5f5f5;
	--gc-white: #fff;
	--gc-radius: 10px;
	--gc-container: 1380px;
	--gc-shadow: 0 8px 24px rgb(10 20 30 / 7%);
	--gc-shadow-hover: 0 14px 34px rgb(10 20 30 / 12%);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--gc-background);
	color: var(--gc-text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

a:hover {
	color: var(--gc-red);
}

button,
input,
textarea {
	font: inherit;
}

:focus-visible {
	outline: 3px solid rgb(255 31 53 / 40%);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gc-container {
	width: min(100% - 32px, var(--gc-container));
	margin-inline: auto;
}

.gc-main {
	padding: 30px 0 52px;
}

.gc-narrow {
	max-width: 900px;
}

.gc-site-header {
	background: var(--gc-white);
	box-shadow: 0 2px 12px rgb(0 0 0 / 5%);
}

.gc-header-top {
	padding: 24px 0;
}

.gc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.gc-branding {
	flex: 0 1 480px;
}

.custom-logo-link,
.gc-text-logo {
	display: inline-flex;
	align-items: center;
	max-width: 480px;
	color: var(--gc-text);
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.custom-logo {
	max-width: min(100%, 480px);
	max-height: 130px;
	width: auto;
}

.gc-header-ad-wrap {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.gc-main-nav {
	position: relative;
	background: linear-gradient(180deg, #0b1220 0%, #02060c 100%);
	color: var(--gc-white);
	z-index: 50;
}

.gc-nav-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	gap: 22px;
}

.gc-menu,
.gc-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gc-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 58px;
}

.gc-menu li {
	position: relative;
}

.gc-menu a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 58px;
	padding: 0 18px;
	color: var(--gc-white);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.gc-menu > li > a::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 0;
	height: 3px;
	background: var(--gc-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.gc-menu > li:hover > a::after,
.gc-menu > .current-menu-item > a::after,
.gc-menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.gc-menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: 230px;
	padding: 10px;
	background: #101722;
	border-radius: 0 0 var(--gc-radius) var(--gc-radius);
	box-shadow: 0 18px 35px rgb(0 0 0 / 28%);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	z-index: 80;
}

.gc-menu li:hover > ul,
.gc-menu li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.gc-menu ul a {
	min-height: auto;
	padding: 12px 14px;
	border-radius: 7px;
	font-size: 13px;
	text-transform: none;
}

.gc-menu ul a:hover {
	background: rgb(255 255 255 / 8%);
	color: var(--gc-white);
}

.gc-menu-toggle,
.gc-search-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--gc-white);
	cursor: pointer;
}

.gc-search-toggle {
	display: inline-flex;
	width: 42px;
	height: 42px;
	margin-left: auto;
	font-size: 32px;
	line-height: 1;
}

.gc-menu-icon,
.gc-menu-icon::before,
.gc-menu-icon::after {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
}

.gc-menu-icon {
	position: relative;
}

.gc-menu-icon::before,
.gc-menu-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.gc-menu-icon::before {
	top: -7px;
}

.gc-menu-icon::after {
	top: 7px;
}

.gc-search-panel {
	padding: 18px 0;
	background: #101722;
}

.gc-search-form {
	display: flex;
	width: min(100%, 680px);
	margin-inline: auto;
}

.gc-search-form input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--gc-border);
	border-radius: 8px 0 0 8px;
	padding: 13px 16px;
}

.gc-search-form button,
.gc-button {
	border: 0;
	border-radius: 999px;
	background: var(--gc-red);
	color: var(--gc-white);
	font-weight: 800;
	cursor: pointer;
}

.gc-search-form button {
	border-radius: 0 8px 8px 0;
	padding: 0 20px;
}

.gc-button {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 0 24px;
}

.gc-button:hover {
	background: var(--gc-red-dark);
	color: var(--gc-white);
}

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

.gc-hero-slider {
	position: relative;
	overflow: hidden;
	min-height: 500px;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	background: #172033;
	box-shadow: var(--gc-shadow);
}

.gc-hero-track,
.gc-hero-slide {
	position: absolute;
	inset: 0;
}

.gc-hero-slide {
	display: flex;
	align-items: flex-end;
	padding: 40px;
	background-position: center;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transition: opacity 360ms ease, visibility 360ms ease;
}

.gc-hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(0 0 0 / 78%) 0%, rgb(0 0 0 / 38%) 52%, rgb(0 0 0 / 10%) 100%);
}

.gc-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.gc-hero-content {
	position: relative;
	z-index: 1;
	max-width: 650px;
	color: var(--gc-white);
}

.gc-hero-content h2 {
	margin: 16px 0 12px;
	font-size: clamp(34px, 4vw, 58px);
	line-height: 1.05;
	letter-spacing: 0;
}

.gc-hero-content p {
	max-width: 600px;
	margin: 0 0 24px;
	font-size: 18px;
	line-height: 1.45;
}

.gc-hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgb(255 255 255 / 90%);
	color: var(--gc-text);
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
}

.gc-hero-prev {
	left: 14px;
}

.gc-hero-next {
	right: 14px;
}

.gc-hero-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 18px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 9px;
}

.gc-hero-dots button {
	width: 13px;
	height: 13px;
	padding: 0;
	border: 2px solid var(--gc-white);
	border-radius: 50%;
	background: var(--gc-white);
	cursor: pointer;
}

.gc-hero-dots .is-active {
	background: var(--gc-red);
}

.gc-section {
	margin-top: 30px;
}

.gc-section-heading,
.gc-page-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.gc-section-heading h2,
.gc-page-header h1 {
	margin: 0;
	font-size: 24px;
	line-height: 1.2;
	text-transform: uppercase;
}

.gc-section-heading a {
	color: var(--gc-red);
	font-weight: 800;
	font-size: 14px;
}

.gc-grid {
	display: grid;
	gap: 18px;
}

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

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

.gc-card,
.gc-panel,
.gc-empty,
.gc-single,
.gc-comments,
.widget {
	background: var(--gc-white);
	border: 1px solid var(--gc-border);
	border-radius: var(--gc-radius);
	box-shadow: var(--gc-shadow);
}

.gc-card {
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.gc-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--gc-shadow-hover);
}

.gc-card-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #172033;
}

.gc-card-media > a {
	display: block;
	width: 100%;
	height: 100%;
}

.gc-card-img,
.gc-card-media img,
.gc-placeholder-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-placeholder-image {
	background:
		radial-gradient(circle at 28% 28%, rgb(255 31 53 / 38%), transparent 28%),
		linear-gradient(135deg, #141a25, #293241);
}

.gc-card-badge {
	position: absolute;
	top: 10px;
	left: 10px;
}

.gc-card-body {
	padding: 16px;
}

.gc-card-title {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.25;
}

.gc-card-meta,
.gc-single-meta {
	color: var(--gc-muted);
	font-size: 14px;
}

.gc-badge {
	display: inline-flex;
	align-items: center;
	border-radius: 6px;
	background: var(--gc-red);
	color: var(--gc-white);
	padding: 5px 8px;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.gc-badge:hover {
	color: var(--gc-white);
	filter: brightness(0.95);
}

.gc-badge--minecraft { background: #6d28d9; }
.gc-badge--roblox { background: #ef233c; }
.gc-badge--free-fire { background: #f97316; }
.gc-badge--fortnite { background: #2563eb; }
.gc-badge--league-of-legends { background: #b7791f; }
.gc-badge--ciencia { background: #1d4ed8; }
.gc-badge--tecnologia { background: #0891b2; }
.gc-badge--curiosidades { background: #f59e0b; }
.gc-badge--juegos { background: #7c3aed; }

.gc-sidebar {
	display: grid;
	gap: 18px;
}

.gc-panel,
.widget {
	padding: 18px;
}

.gc-panel-title,
.widget-title {
	margin: 0 0 16px;
	font-size: 17px;
	text-transform: uppercase;
}

.gc-popular-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: popular;
}

.gc-popular-list a {
	display: grid;
	grid-template-columns: 76px 24px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
}

.gc-popular-list img,
.gc-popular-thumb {
	width: 76px;
	height: 76px;
	border-radius: 8px;
	object-fit: cover;
}

.gc-popular-number {
	color: var(--gc-red);
	font-size: 20px;
	font-weight: 900;
}

.gc-popular strong {
	font-size: 14px;
	line-height: 1.3;
}

.gc-ad {
	width: 100%;
	overflow: hidden;
	border-radius: var(--gc-radius);
}

.gc-ad-block {
	margin: 26px 0;
}

.gc-home-widget .gc-ad-block {
	margin: 22px 0;
}

.gc-ad--placeholder {
	display: grid;
	place-items: center;
	gap: 8px;
	min-height: 250px;
	padding: 20px;
	background: linear-gradient(135deg, #15083f, #09163b 55%, #270642);
	color: var(--gc-white);
	text-align: center;
	box-shadow: var(--gc-shadow);
}

.gc-ad-innerblocks {
	width: min(100%, 760px);
	margin-top: 8px;
	color: var(--gc-text);
	text-align: left;
}

.gc-header-ad-wrap .gc-ad--placeholder,
.gc-main > .gc-container > .gc-ad--placeholder {
	min-height: 90px;
}

.gc-ad--placeholder span {
	font-size: 12px;
	font-weight: 800;
}

.gc-ad--placeholder strong {
	font-size: 26px;
	line-height: 1.1;
}

.gc-ad--placeholder em {
	border-radius: 5px;
	background: #ffd21f;
	color: #111;
	padding: 4px 12px;
	font-style: normal;
	font-weight: 900;
}

.gc-content-layout {
	align-items: start;
}

.gc-article-wrap,
.gc-archive-content {
	min-width: 0;
}

.gc-single {
	padding: 34px;
}

.gc-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--gc-muted);
	font-size: 14px;
}

.gc-single-header h1 {
	max-width: 900px;
	margin: 14px 0 12px;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.12;
	letter-spacing: 0;
}

.gc-featured-image {
	margin: 28px 0;
}

.gc-featured-image img {
	width: 100%;
	border-radius: var(--gc-radius);
}

.gc-entry-content {
	max-width: 850px;
	font-size: 18px;
	line-height: 1.7;
}

.gc-entry-content > *:first-child {
	margin-top: 0;
}

.gc-entry-content h2 {
	margin-top: 1.6em;
	font-size: 31px;
	line-height: 1.2;
}

.gc-entry-content h3 {
	margin-top: 1.4em;
	font-size: 24px;
	line-height: 1.25;
}

.gc-entry-content a {
	color: var(--gc-red);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gc-entry-content img {
	border-radius: var(--gc-radius);
}

.gc-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.gc-tags a {
	border-radius: 999px;
	background: #f1f2f4;
	padding: 7px 12px;
	color: var(--gc-muted);
	font-size: 13px;
	font-weight: 700;
}

.gc-comments,
.gc-empty {
	margin-top: 28px;
	padding: 28px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	margin-top: 22px;
	border-radius: 7px;
	background: var(--gc-white);
	border: 1px solid var(--gc-border);
	font-weight: 800;
}

.page-numbers.current {
	background: var(--gc-red);
	color: var(--gc-white);
}

.gc-site-footer {
	background: #090d14;
	color: var(--gc-white);
}

.gc-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
	gap: 42px;
	padding: 42px 0;
}

.gc-site-footer h2 {
	margin: 0 0 14px;
	font-size: 16px;
	text-transform: uppercase;
}

.gc-footer-brand h2 {
	color: var(--gc-red);
	font-size: 28px;
	text-transform: none;
}

.gc-site-footer p,
.gc-site-footer li,
.gc-site-footer a {
	color: rgb(255 255 255 / 78%);
	font-size: 14px;
}

.gc-site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-social-links {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.gc-social-links a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: rgb(255 255 255 / 10%);
	color: var(--gc-white);
	font-weight: 900;
}

.gc-footer-bottom {
	border-top: 1px solid rgb(255 255 255 / 10%);
	padding: 16px 0;
	text-align: center;
}

.gc-footer-bottom p {
	margin: 0;
}

@media (max-width: 1180px) {
	.gc-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-home-layout,
	.gc-content-layout {
		grid-template-columns: minmax(0, 1fr) 310px;
	}
}

@media (max-width: 1024px) {
	.gc-header-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.gc-header-ad-wrap {
		width: 100%;
		justify-content: stretch;
	}

	.gc-home-layout,
	.gc-content-layout {
		grid-template-columns: 1fr;
	}

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

	.gc-hero-slider {
		min-height: 420px;
	}

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

@media (max-width: 768px) {
	.gc-container {
		width: min(100% - 24px, var(--gc-container));
	}

	.gc-main {
		padding-top: 18px;
	}

	.gc-header-top {
		padding: 16px 0;
	}

	.custom-logo-link,
	.gc-text-logo {
		font-size: 32px;
	}

	.custom-logo {
		max-height: 92px;
	}

	.gc-nav-inner {
		justify-content: space-between;
		min-height: 54px;
	}

	.gc-menu-toggle {
		display: inline-flex;
		gap: 10px;
		min-height: 44px;
		font-weight: 800;
		text-transform: uppercase;
	}

	.gc-search-toggle {
		margin-left: 0;
	}

	.gc-menu {
		position: absolute;
		top: 54px;
		left: 0;
		right: 0;
		display: none;
		min-height: auto;
		padding: 10px 12px 18px;
		background: #080d16;
	}

	.gc-menu.is-open {
		display: block;
	}

	.gc-menu a {
		justify-content: space-between;
		min-height: 46px;
		padding: 0 8px;
	}

	.gc-menu > li > a::after {
		left: 8px;
		right: 8px;
	}

	.gc-menu ul {
		position: static;
		width: auto;
		padding: 0 0 8px 14px;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.gc-hero-slider {
		min-height: 390px;
		aspect-ratio: auto;
	}

	.gc-hero-slide {
		padding: 28px 22px 54px;
	}

	.gc-hero-slide::before {
		background: linear-gradient(180deg, rgb(0 0 0 / 24%) 0%, rgb(0 0 0 / 82%) 100%);
	}

	.gc-hero-content h2 {
		font-size: 32px;
	}

	.gc-hero-content p {
		font-size: 16px;
	}

	.gc-hero-arrow {
		display: none;
	}

	.gc-grid--3,
	.gc-grid--4,
	.gc-sidebar,
	.gc-footer-grid {
		grid-template-columns: 1fr;
	}

	.gc-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.gc-single {
		padding: 22px;
	}

	.gc-entry-content {
		font-size: 17px;
	}

	.gc-entry-content h2 {
		font-size: 27px;
	}

	.gc-search-form {
		display: grid;
		gap: 8px;
	}

	.gc-search-form input,
	.gc-search-form button {
		border-radius: 8px;
		min-height: 44px;
	}
}

@media (max-width: 480px) {
	.gc-hero-slider {
		min-height: 360px;
	}

	.gc-hero-content h2 {
		font-size: 28px;
	}

	.gc-card-body,
	.gc-panel,
	.widget {
		padding: 14px;
	}
}
