/* Lenis scroll (for a smooth scroll) */

html.lenis {
	height: auto;
	overflow: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: auto;
}

/* Global */

* {
	box-sizing: border-box;
}

@font-face {
	font-family: "Kitto";
	src: url(Fonts/Kitto-PersonalUse.otf);
}

body,
h1,
h2,
h3,
.logo,
.hero_heading_title {
	font-family: 'Bebas Neue', cursive, sans-serif;
}

body {
	font-family: "Kitto";
	text-transform: uppercase;
	font-size: 1.5rem;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	/* Enable smooth scrolling on iOS */
}

body.no-scroll {
	overflow: hidden;
}

nav {
	position: fixed;
	width: 100%;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	/* border-bottom: 5px solid black; */
	background-color: white;
	height: 90px;
	z-index: 1000;
	top: 0;
	left: 0;
}

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

h1 {
	font-size: 6rem;
}

h2 {
	font-size: 4rem;
}

/* Splash screen */

#splash-screen {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 100svh;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

#splash-screen img {
	position: absolute;
	width: 50%;
	/* Ajuste selon ton GIF */
	height: auto;
	margin-bottom: 2rem;
}

#splash-screen button {
	padding: 10px 20px;
	font-size: 18px;
	cursor: pointer;
	position: absolute;
	bottom: 15%;
}

/* Header */

.ca {
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	position: relative;
}

.ca-heading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ca-heading img {
	width: 1rem;
	height: 1rem;
}

.tooltip {
	visibility: hidden;
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 5px;
	border-radius: 4px;
	position: absolute;
	bottom: -45px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	opacity: 0;
	transition: opacity 0.3s;
}

.copy-container:hover .tooltip {
	visibility: visible;
}

.show-tooltip {
	visibility: visible;
	opacity: 1;
}

.logo {
	font-size: 2.5rem;
	flex: 1;
}

.socials-list {
	list-style: none;
	display: flex;
	gap: 1rem;
	flex: 1;
	justify-content: end;
	align-items: center;
}

.socials-list img {
	width: 48px;
}

.socials-list a:hover {
	color: orange;
}

.menu-toggle {
	cursor: pointer;
	padding: 12px 0;
	margin-left: 2rem;
	display: none;
}

.menu-toggle span {
	position: relative;
	display: block;
	width: 20px;
	height: 3px;
	background: #222;
	transition: all 0.2s ease-in-out;
}

.menu-toggle span:before,
.menu-toggle span:after {
	position: absolute;
	background: #222;
	content: "";
	width: 20px;
	height: 3px;
	transition: all 0.2s ease-in-out;
}

.menu-toggle span:before {
	top: -8px;
}

.menu-toggle span:after {
	top: 8px;
}

.menu-toggle.active span {
	background: transparent;
}

.menu-toggle.active span:before {
	transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:after {
	transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero */

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 6rem;
	padding-top: 9rem;
	position: relative;
}

.hero_heading {
	max-width: 650px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4.5rem;
}

.hero_heading_title {
	position: relative;
	width: fit-content;
}

.hero_poki {
	width: 300px;
}

.hero_anvil {
	width: 200px;
	position: absolute;
	top: 80px;
	left: 5%;
}

.hero-btn {
	background-color: white;
	font-size: 2.5rem;
	padding: 1rem 2rem;
	will-change: scale;
	transition: transform 0.2s;
	font-family: inherit;
}

.hero-btn:hover {
	color: #ffae00;
	cursor: pointer;
	transform: scale(1.1);
}

.fun-quote {
	position: absolute;
	bottom: -40px;
	right: 0;
	transform: rotate(-10deg) translate(50%, 50%);
	color: grey;
	font-size: 1.125rem;
}

/* Marquee */

.marquee {
	flex-flow: column;
	justify-content: center;
	align-items: center;
	display: flex;
	padding: 3rem 0;
	/* Ensure marquee section doesn't interfere with scrolling */
	pointer-events: auto;
	touch-action: pan-y;
	overflow: visible;
}

/* Pastikan marquee tidak memblokir scroll */
.marquee-advanced {
	width: 100vw;
	position: relative;
	overflow: hidden;
	height: auto;
	min-height: 200px;
	/* Optimasi untuk performa yang lebih baik */
	transform: translateZ(0);
	will-change: transform;
	/* Pastikan tidak mempengaruhi scroll */
	pointer-events: none;
	/* Prevent any scroll interference */
	touch-action: none;
	-webkit-overflow-scrolling: auto;
}

.marquee-advanced__scroll {
	width: 100%;
	display: flex;
	position: relative;
	/* Remove CSS animation to prevent conflicts with GSAP */
	/* animation: marquee-scroll 6s linear infinite; */
	/* Hardware acceleration for smooth performance */
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
	/* Pastikan tidak mempengaruhi scroll */
	pointer-events: none;
	/* Prevent any scroll interference */
	touch-action: none;
}

.marquee-advanced__collection {
	display: flex;
	position: relative;
}

.marquee-advanced__item {
	justify-content: flex-start;
	align-items: center;
	display: flex;
}

.marquee-advanced__item-width {
	margin: 0.25rem;
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	/* Optimasi untuk performa yang lebih baik */
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
	/* Prevent scroll interference */
	pointer-events: none;
	touch-action: none;
}

.marquee-advanced__item-width img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	/* Optimasi gambar untuk performa yang lebih baik */
	image-rendering: optimizeSpeed;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
	border: 2.5px solid #f79a24;
	box-shadow: none;
	/* Prevent scroll interference */
	pointer-events: none;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

/* CSS Animation untuk Marquee - Optimized and Faster */
/* Note: CSS animation is disabled to prevent conflicts with GSAP */
@keyframes marquee-scroll {
	0% {
		transform: translateX(0%) translateZ(0);
	}

	100% {
		transform: translateX(-50%) translateZ(0);
	}
}

/* Additional optimizations for marquee performance */
.marquee-advanced * {
	/* Prevent any scroll interference */
	pointer-events: none;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

/* Allow scrolling on the marquee container itself */
.marquee {
	pointer-events: auto;
	touch-action: pan-y;
}

/* Game */

.game {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 4rem 1rem;
}

.game_header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.game_canva {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
}

.game_main-img {
	width: 500px;
	height: 500px;
	background-image: url(Hamster_IP/Game/Hamster_game_Base.png);
	background-size: cover;
}

.game_weapons {
	display: flex;
	gap: 1rem;
}

.game_weapon {
	cursor: pointer;
}

.game_weapon img {
	width: 150px;
}

.game_weapon:hover img {
	will-change: scale;
	transition: transform 0.1s;
	transform: scale(1.1);
}

#custom-cursor {
	position: fixed;
	left: var(--pos-x);
	top: var(--pos-y);
	transform: translate(-50%, -50%);
	pointer-events: none;
	display: none;
	width: 64px;
	height: 64px;
	z-index: 1000;
}

@keyframes squeeze {
	0% {
		transform: scale(1, 1);
	}

	50% {
		transform: scale(1.1, 0.8);
	}

	/* Effet écrasé */
	100% {
		transform: scale(1, 1);
	}
}

.squeeze {
	animation: squeeze 0.1s ease-in-out;
}

/* Exchanges */

.exchanges {
	display: flex;
	gap: 1rem;
	padding: 4rem;
	position: relative;
}

.exchanges_content {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	width: 60%;
}

.exchanges_heading {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	z-index: 3;
}

.exchanges_list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.exchanges_list li {
	padding-bottom: 1rem;
}

.phantom {
	width: 234px;
	position: absolute;
	left: 45%;
	top: 32px;
}

.exchanges_terminal {
	position: relative;
	padding-left: 200px;
}

.exchanges_terminal-img {
	position: absolute;
	bottom: 0;
	left: 213px;
	transform: translateX(-100%);
	width: 200px;
}

#integrated-terminal {
	border: 10px solid black;
	padding: 1rem;
	border-radius: 1rem;
	background-color: black;
	/* width: 400px; */
	/* height: 568px; */
}

/* PFP Generator */

.pfp_generator {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 6rem;
	align-items: center;
}

.pfp_generator_heading {
	display: flex;
	text-align: center;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.pfp_generator_btn {
	background-color: white;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	font-family: inherit;
	cursor: pointer;
	width: 100%;
}

.pfp_generator_canva {
	width: 400px;
	height: 400px;
	border: 5px solid black;
	border-radius: 1rem;
	position: relative;
	background: white;
	overflow: hidden;
}

.pfp_generator_canva img {
	position: absolute;
	width: 100%;
	height: 100%;
}

.pfp_generator_controls {
	min-width: 30%;
	max-width: 40%;
	display: flex;
	flex-direction: column;
	font-size: 1rem;
	align-items: stretch;
}

.pfp_generator_row {
	display: flex;
	width: 100%;
	gap: 1rem;
}

.pfp_generator_controls_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pfp_generator_controls_item button {
	background-color: white;
	cursor: pointer;
	border: none;
	padding: 0.5rem 0.5rem;
}

.pfp_generator_controls_item button:nth-child(3) {
	transform: rotate(180deg);
}

.pfp_generator_content {
	width: 100%;
	display: flex;
	gap: 1rem;
	align-content: space-between;
	justify-content: center;
	align-items: center;
}

/* Falling anvil */

.falling-anvil {
	position: absolute;
	left: 10%;
	/* Position sur la gauche */
	bottom: 0;
	width: 100px;
	height: 100svh;
}

.falling-anvil img {
	width: 150px;
}

#anvil {
	position: absolute;
	top: -125.33px;
	/* Cache l'enclume en haut de l'écran */
	left: 0;
	height: auto;
	transition: transform 0.5s ease-in, opacity 0.01s ease-in;
	opacity: 0;
}

#squished-hamster {
	position: absolute;
	bottom: 0px;
	left: 0;
	height: auto;
	transition: opacity 0.5s ease-in;
}

/* Footer */

footer {
	padding: 6rem 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 3rem;
	position: relative;
	margin-bottom: 30px;
}

footer p {
	max-width: 900px;
}

p,
a,
button {
	font-family: 'Bebas Neue', cursive, sans-serif !important;
}

/* Responsive tablet */

@media (max-width: 992px) {
	.hero_anvil {
		width: 150px;
		left: 0%;
	}

	.ca-data {
		display: none;
	}

	.marquee-advanced__item-width img {
		/* width: 150px; */
	}

	.game_weapon img {
		width: 100px;
	}

	.exchanges {
		flex-direction: column;
		padding: 3rem;
	}

	.exchanges_content {
		width: 100%;
	}

	.phantom {
		right: 0;
		left: auto;
	}

	footer {
		padding: 6rem 3rem 8rem 3rem;
	}
}

/* Responsive mobile */

@media (max-width: 767px) {

	html,
	body {
		font-size: 1rem;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
	}

	/* Ensure proper viewport height on mobile */
	body {
		min-height: 100vh;
		min-height: 100dvh;
		/* Dynamic viewport height for mobile */
	}

	.pfp_generator_controls {
		width: 100%;
		max-width: 100%;
		margin-top: 1rem;
		display: flex;
		flex-direction: column;
		gap: 1rem;
		font-size: 1rem;
	}

	.pfp_generator_content {
		display: block;

	}

	h1 {
		font-size: 4rem;
	}

	h2 {
		font-size: 3rem;
		text-align: center;
	}

	.hero {
		padding: 8rem 1rem 6rem 1rem;
	}

	.hero-btn {
		font-size: 1rem;
		padding: 0.5rem 1rem;
	}

	.fun-quote {
		font-size: 1rem;
	}

	.menu-toggle {
		display: block;
		cursor: pointer;
		z-index: 1001;
	}

	.socials-list {
		display: none;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(8, 8, 8, 0.95);
		backdrop-filter: blur(10px);
		justify-content: center;
		align-items: center;
		gap: 2rem;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
		margin-top: 90px;
		z-index: 999;
		transition: all 0.3s ease;
	}

	.socials-list.active {
		display: flex;
		opacity: 1;
		visibility: visible;
	}

	.hero_anvil {
		width: 100px;
	}

	.ca-data {
		display: none;
	}

	.marquee-advanced__item-width img {
		/* width: 100px; */
		/* Ensure mobile marquee doesn't interfere with touch scrolling */
		pointer-events: none;
		touch-action: none;
		user-select: none;
	}

	.game_main-img {
		width: 100%;
		aspect-ratio: 1 / 1;
		height: auto;
	}

	.game_weapons {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.game_weapon img {
		width: 75px;
	}

	.exchanges_terminal {
		padding-left: 0;
	}

	.exchanges_terminal-img {
		display: none;
	}

	.phantom {
		display: none;
	}

	.pfp_generator {
		padding: 4rem 1rem;
	}

	.pfp_generator_content {
		width: 100%;
	}

	.pfp_generator_canva {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.pfp_generator_row {
		flex-wrap: wrap;
	}

	footer {
		margin-bottom: 10px;
		padding: 6rem 1rem 8rem 1rem;
	}
}

/* Color Scheme untuk $BONGKIE BLUE */

/* Root Variables untuk konsistensi warna */
:root {
	--primary-blue: #080808;
	--secondary-blue: #f79a24;
	--accent-purple: #f79a24;
	--vibrant-blue: #ffffff;
	--dark-blue: #080808;
	--light-blue: #ffffff;
	--gradient-primary: linear-gradient(135deg, #080808 0%, #f79a24 50%, #f79a24 100%);
	--gradient-secondary: linear-gradient(135deg, #f79a24 0%, #f79a24 100%);
	--gradient-accent: linear-gradient(135deg, #f79a24 0%, #f79a24 100%);
	--shadow-blue: 0 10px 25px rgba(8, 8, 8, 0.3);
	--shadow-purple: 0 10px 25px rgba(247, 154, 36, 0.3);
}

/* Background Utama */
body {
	background: var(--primary-blue);
	background-attachment: fixed;
	min-height: 100vh;
	color: var(--vibrant-blue);
}

/* Navbar Styling */
nav {
	background: #080808;
	backdrop-filter: blur(10px);
	/* border-bottom: 3px solid var(--secondary-blue); */
	box-shadow: var(--shadow-blue);
}

/* Logo di Navbar */
.logo {
	color: #ffffff;
	font-family: 'Bebas Neue', cursive, sans-serif;
	font-weight: 400;
	font-size: 2.5rem;
	flex: 1;
	text-shadow: none;
	letter-spacing: 1px;
}

/* Tombol CTA Utama */
.hero-btn {
	background: var(--secondary-blue);
	border: 2px solid var(--secondary-blue);
	/* Sama seperti .ca */
	border-radius: 10px;
	/* Sama seperti .ca */
	padding: 10px 2rem;
	/* Padding horizontal tetap besar, vertikal sama seperti .ca */
	color: white;
	box-shadow: var(--shadow-purple);
	transition: all 0.3s ease;
	font-size: 2.5rem;
	will-change: scale;
	font-family: inherit;
}

.hero-btn:hover {
	background: var(--accent-purple);
	color: #fff;
	transform: scale(1.05);
	box-shadow: 0 15px 35px rgba(8, 16, 240, 0.5);
}

/* Splash Screen Button */
#splash-screen button {
	background: var(--secondary-blue);
	border: 3px solid var(--accent-purple);
	color: white;
	box-shadow: var(--shadow-blue);
}

#splash-screen button:hover {
	background: var(--accent-purple);
	transform: scale(1.05);
}

/* Hero Section */
.hero {
	background: #080808;
	backdrop-filter: blur(10px);
	border-radius: 20px;
	/* border: 2px solid rgba(9, 82, 248, 0.3); */
	box-shadow: var(--shadow-blue);
}

/* Fun Quote Styling */
.fun-quote {
	color: var(--vibrant-blue);
	font-weight: bold;
}

/* Marquee Section */
.marquee {
	background: #080808;
	backdrop-filter: blur(10px);
	border-radius: 15px;
	/* border: 2px solid var(--secondary-blue); */
}

/* Game Section (jika diaktifkan) */
.game {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 2px solid var(--secondary-blue);
}

.game_header h2 {
	color: var(--vibrant-blue);
}

/* Exchanges Section (jika diaktifkan) */
.exchanges {
	background: #080808;
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 2px solid var(--secondary-blue);
}

.exchanges_heading h2 {
	color: var(--vibrant-blue);
}

/* Footer */
footer {
	background: #080808;
	backdrop-filter: blur(10px);
	border-top: 3px solid var(--secondary-blue);
	box-shadow: var(--shadow-blue);
}

footer p {
	color: var(--vibrant-blue);
}

/* Tooltip Styling */
.tooltip {
	background: var(--secondary-blue);
	border: 2px solid var(--accent-purple);
	box-shadow: var(--shadow-purple);
	color: white;
}

/* Social Links Hover */
.socials-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.socials-list a:hover {
	background: var(--secondary-blue);
	border-radius: 8px;
	padding: 8px;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(9, 82, 248, 0.3);
}

/* Social Media Icons - Make them white */
.socials-list img {
	width: 48px;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.socials-list a:hover img {
	filter: brightness(0) invert(1);
	transform: scale(1.05);
}

/* Menu Toggle */
.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
	background: var(--secondary-blue);
	box-shadow: 0 2px 4px rgba(9, 82, 248, 0.3);
}

/* CA Section */
.ca {
	background: rgba(8, 8, 8, 0.8);
	border-radius: 10px;
	border: 2px solid var(--secondary-blue);
	padding: 10px;
	transition: all 0.3s ease;
}

.ca:hover {
	background: rgba(8, 8, 8, 1);
	transform: scale(1.02);
}

.ca p {
	color: var(--vibrant-blue);
}

/* Responsive Design untuk warna */
@media (max-width: 768px) {
	.hero {
		background: #080808;
	}

	nav {
		background: #080808;
	}
}

/* Animasi gradient untuk efek dinamis */
@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/* Efek hover untuk elemen interaktif */
.hero-btn,
.ca,
.socials-list a {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animation untuk background */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-blue);
	z-index: -1;
	opacity: 0.8;
}

/* Text color untuk semua elemen */
h1,
h2,
h3,
p,
a,
span,
div {
	color: var(--vibrant-blue);
}

/* Override untuk elemen yang memerlukan warna berbeda */
.hero-btn,
#splash-screen button,
.tooltip {
	color: white;
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	width: 100%;
	max-width: 1100px;
	margin: 2rem auto 2.5rem auto;
}

.hero-card {
	background: #080808;
	border: 2px solid var(--secondary-blue);
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(247, 154, 36, 0.15);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	position: relative;
	min-width: 0;
	height: auto;
	min-height: 320px;
}

.hero-video-frame {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #181818;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--secondary-blue);
	position: relative;
	overflow: hidden;
	/* Ensure frame takes up proper space */
	flex: 1;
	min-height: 200px;
}

.hero-gif {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 16px 16px 0 0;
	border: 2.5px solid #f79a24;
	border-bottom: none;
	box-shadow: none;
	/* Ensure image fills the container completely */
	min-height: 100%;
	min-width: 100%;
}

.hero-card-footer {
	background: #080808;
	padding: 0.75rem 1rem 0.5rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	border-top: 1px solid var(--secondary-blue);
	min-height: 70px;
	/* Ensure footer doesn't take too much space */
	flex-shrink: 0;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.25rem;
}

.hero-btn-action {
	background: none;
	border: none;
	color: var(--vibrant-blue);
	font-size: 1.3rem;
	cursor: pointer;
	transition: color 0.2s;
	padding: 0 0.5rem;
}

.hero-btn-action:hover {
	color: #fff;
}

.hero-title {
	color: #ffffff;
	font-size: 1.25rem;
	font-family: 'Bebas Neue', cursive, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: none;
	text-shadow: none;
	letter-spacing: 1.5px;
}

@media (max-width: 992px) {
	.hero-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		margin: 1.5rem auto 2rem auto;
	}

	.hero-card {
		min-height: 280px;
	}

	.hero-video-frame {
		aspect-ratio: 1 / 1;
	}

	.hero-gif {
		object-fit: cover;
		object-position: center;
	}
}

@media (max-width: 600px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin: 1rem auto 1.5rem auto;
	}

	.hero-card {
		min-height: 300px;
	}

	.hero-video-frame {
		aspect-ratio: 1 / 1;
		min-height: 200px;
	}

	.hero-gif {
		object-fit: cover;
		object-position: center;
	}

	.hero-title {
		font-size: 1rem;
		line-height: 1.2;
	}

	.hero-card-footer {
		padding: 0.5rem 0.75rem 0.25rem 0.75rem;
		min-height: 60px;
	}

	.hero-actions {
		gap: 0.75rem;
	}

	.hero-btn-action {
		font-size: 1.1rem;
		padding: 0 0.25rem;
	}
}

/* Extra small mobile devices */
@media (max-width: 480px) {
	.hero-grid {
		gap: 0.5rem;
		margin: 0.75rem auto 1rem auto;
	}

	.hero-card {
		min-height: 250px;
	}

	.hero-video-frame {
		min-height: 180px;
	}

	.hero-card-footer {
		padding: 0.4rem 0.6rem 0.2rem 0.6rem;
		min-height: 50px;
	}

	.hero-title {
		font-size: 0.9rem;
		line-height: 1.1;
	}

	.hero-actions {
		gap: 0.5rem;
	}

	.hero-btn-action {
		font-size: 1rem;
		padding: 0 0.2rem;
	}
}

.logo-hub,
.hero-btn {
	display: inline-block;
	background: #f79a24;
	color: #080808 !important;
	border-radius: 6px;
	font-family: 'Bebas Neue', cursive, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: none;
	transition: background 0.2s, color 0.2s, transform 0.2s;
}

.logo-hub {
	padding: 0 18px;
	margin-left: 8px;
	font-size: 0.9em;
	vertical-align: middle;
	line-height: 1.1;
}

.hero-btn {
	border: none;
	font-size: 1.2em;
	padding: 0.7em 2em;
}

.logo-hub:hover,
.hero-btn:hover {
	background: #d9821b;
	color: #080808 !important;
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(217, 130, 27, 0.25);
}