/* ===================== HERO ===================== */
.mc-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 600px;
	padding: 40px;
	background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../img/minecraft 1 blurred (filter).png");
	background-size: cover;
	background-position: center;
}

.mc-hero-text {
	font-size: 90px;
	font-weight: 900;
	color: var(--white);
	text-align: center;
	max-width: 800px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* "WELCOME TO" en blanco (hereda de .mc-hero-text);
   "DAWN OF THE NEW AGE" con gradiente cian animado */
.mc-name {
	background: linear-gradient(90deg, #0DEBF9, #36D0FF, #3bbedf, #0a8fb0, #0DEBF9);
	background-size: 250% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: mcGradient 6s linear infinite;
}

@keyframes mcGradient {
	to { background-position: 250% center; }
}

@media (prefers-reduced-motion: reduce) {
	.mc-name { animation: none; }
}

/* ===================== TRAILER ===================== */
.mc-trailer-section {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 60px;
	width: 100%;
	min-height: 700px;
	padding: 60px 40px;
	background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url("../img/minecraft 4 (filter).png");
	background-size: cover;
	background-position: center;
	flex-wrap: wrap;
}

.mc-text {
	max-width: 560px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mc-text .cyantext { color: #0DEBF9; font-weight: 900; font-size: 64px; line-height: 1.05; }
.mc-text .normaltext { color: var(--white); font-weight: 900; font-size: 64px; line-height: 1.05; }
.mc-text .boldtext { color: var(--white); font-weight: 900; font-size: 64px; line-height: 1.05; }
.mc-text .smalltext { color: var(--white); font-weight: 200; font-size: 28px; margin-top: 24px; }

.mc-trailer {
	width: 600px;
	max-width: 100%;
}

.mc-trailer video {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	display: block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
	.mc-hero { min-height: 380px; }
	.mc-hero-text { font-size: 48px; }
	.mc-trailer-section { gap: 40px; padding: 50px 24px; }
	.mc-text { text-align: center; }
	.mc-text .cyantext,
	.mc-text .normaltext,
	.mc-text .boldtext { font-size: 40px; }
	.mc-text .smalltext { font-size: 22px; }
}