/* ========================================
   STYLES / COMPONENTS - Hitycraft
======================================== */

/* ----- BUTTONS ----- */
.btn {
	display: inline-block;
	padding: 14px 28px;
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 1rem;
	border-radius: var(--radius);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	text-align: center;
}

.btn-primary {
	background: var(--color-primary);
	color: #000;
}

.btn-primary:hover {
	background: var(--color-primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(57, 255, 20, 0.3);
}

.btn-outline {
	background: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-outline:hover {
	background: var(--color-primary);
	color: #000;
	transform: translateY(-3px);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-text);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.15);
}

.btn-lg {
	padding: 18px 36px;
	font-size: 1.15rem;
}

.btn-sm {
	padding: 8px 16px;
	font-size: 0.875rem;
}

.btn-block {
	display: block;
	width: 100%;
}

/* ----- CARDS ----- */
.card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: var(--space-lg);
	transition: var(--transition);
}

.card:hover {
	border-color: rgba(57, 255, 20, 0.3);
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.card-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-text);
}

.card-text {
	color: var(--color-text-muted);
	line-height: 1.2 !important;
}
.card-space{
	gap: 20px !important;
	padding: 30px !important;
}

/* ----- BADGES ----- */
.badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 999px;
	background: rgba(57, 255, 20, 0.15);
	color: var(--color-primary);
}

.badge-outline {
	background: transparent;
	border: 1px solid var(--color-primary);
}

/* ----- ALERTS ----- */
.alert {
	padding: 14px 18px;
	border-radius: var(--radius);
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.alert-success {
	background: rgba(57, 255, 20, 0.1);
	border: 1px solid rgba(57, 255, 20, 0.3);
	color: var(--color-primary);
}

.alert-error {
	background: rgba(255, 77, 77, 0.1);
	border: 1px solid rgba(255, 77, 77, 0.3);
	color: #ff6b6b;
}

.alert-info {
	background: rgba(100, 180, 255, 0.1);
	border: 1px solid rgba(100, 180, 255, 0.3);
	color: #64b4ff;
}

/* ----- DIVIDER ----- */
.divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	margin: var(--space-lg) 0;
	border: none;
}

/* ----- CONTAINER ----- */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.container-sm {
	max-width: 720px;
}

.container-lg {
	max-width: 1400px;
}

/* ========================================
   TOP BAR / OS LIKE MENU
======================================== */

.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 1.5rem;
	background: rgba(10, 10, 10, 0.75);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	z-index: 1000;
}

.topbar-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.7);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	font-size: 1.25rem;
}

.topbar-item:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.topbar-item.active {
	background: rgba(57, 255, 20, 0.15);
	color: var(--color-primary);
}

.topbar-item.active:hover {
	background: rgba(57, 255, 20, 0.25);
}

/* Versão com texto + ícone (opcional) */
.topbar-item.with-text {
	width: auto;
	padding: 0 14px;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 500;
}

/* Mobile */
@media (max-width: 991px) {
	.topbar {
		height: 56px;
		gap: 4px;
		padding: 0 0.75rem;
		justify-content: space-around;
	}

	.topbar-item {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}

/* ================================================
   BOTTOM BAR (dock style) - OS LIKE (CONTINUES)
===================================================*/

.bottombar {
	position: fixed;
	bottom: 20px;               /* bottom distance */
	left: 50%;
	transform: translateX(-50%);
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 12px;
	background: rgba(10, 10, 10, 0.8);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;        /* bem arredondado */
	z-index: 1000;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.bottombar-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	color: rgba(255, 255, 255, 0.65);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	font-size: 1.3rem;
}

.bottombar-item:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.bottombar-item.active {
	background: rgba(57, 255, 20, 0.18);
	color: var(--color-primary);
}
/* Need JS:
document.addEventListener('DOMContentLoaded', () => {
	const current = document.body.dataset.page;

	if (!current) return;

	document.querySelectorAll('.bottombar-item').forEach(item => {
		if (item.dataset.page === current) {
			item.classList.add('active');
		} else {
			item.classList.remove('active');
		}
	});
});
and some html with "data-page" element inside.

Example: 

<a href="/" class="bottombar-item active" title="Home" data-page="home">
*/
/* ========================================
   MODAL
======================================== */

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal {
	background: #141414;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	width: 90%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 2rem;
	position: relative;
	transform: scale(0.9) translateY(20px);
	transition: transform 0.3s ease;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
	transform: scale(1) translateY(0);
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.modal-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-text);
}

.modal-close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	border: none;
	color: #fff;
	font-size: 1.25rem;
	cursor: pointer;
	transition: var(--transition);
}

.modal-close:hover {
	background: rgba(255, 80, 80, 0.3);
	color: #ff6b6b;
}

.modal-body {
	color: var(--color-text-muted);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 0.75rem;
}

/* Larger Modal */
.modal-lg {
	max-width: 720px;
}

/*  Smaller Modal */
.modal-sm {
	max-width: 380px;
}
/* Need JS like
 function openModal(id) {
	document.getElementById(id).classList.add('active');
}

function closeModal() {
	document.querySelectorAll('.modal-overlay').forEach(modal => {
		modal.classList.remove('active');
	});
}

// Close clicking outside
document.querySelectorAll('.modal-overlay').forEach(overlay => {
	overlay.addEventListener('click', (e) => {
		if (e.target === overlay) {
			overlay.classList.remove('active');
		}
	});
}); 
And an html like:

<div class="modal-overlay" id="myModal">
	<div class="modal">
		<div class="modal-header">
			<h2 class="modal-title">Title</h2>
			<button class="modal-close" onclick="closeModal()">×</button>
		</div>

		<div class="modal-body">
			<p>Content</p>
		</div>

		<div class="modal-footer">
			<button class="btn btn-ghost" onclick="closeModal()">Cancel</button>
			<button class="btn btn-primary">Confirm</button>
		</div>
	</div>
</div>
*/


/* ========================================
   FOOTER
======================================== */

/* ---------- Simple Footer ---------- */
/*
HTML Example (Simple):

<footer class="footer footer-simple">
	<div class="container">
		<p class="footer-copy">© 2026 Hitycraft. All rights reserved.</p>
	</div>
</footer>
*/

.footer {
	width: 100%;
	padding: 2rem 1.5rem;
	background: rgba(0, 0, 0, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--color-text-muted, #aaa);
	font-size: 0.9rem;
}

.footer-simple {
	text-align: center;
}

.footer-copy {
	margin: 0;
	opacity: 0.8;
}

/* ---------- Complex Footer ---------- */
/*
HTML Example (Complex):

<footer class="footer footer-complex">
	<div class="container">
		<div class="footer-grid">

			<!-- Brand -->
			<div class="footer-brand">
				<h3 class="footer-logo">Hitycraft</h3>
				<p class="footer-desc">Indie creators making series, films and fun experiences.</p>
			</div>

			<!-- Links -->
			<div class="footer-links">
				<h4 class="footer-title">Explore</h4>
				<a href="/">Home</a>
				<a href="/series.html">Series</a>
				<a href="/filmes.html">Movies</a>
				<a href="/novidades.html">New & Popular</a>
			</div>

			<!-- Social -->
			<div class="footer-social">
				<h4 class="footer-title">Follow Us</h4>
				<div class="footer-social-icons">
					<a href="#" title="YouTube"><i class="fa-brands fa-youtube"></i></a>
					<a href="#" title="Twitter / X"><i class="fa-brands fa-x-twitter"></i></a>
					<a href="#" title="Instagram"><i class="fa-brands fa-instagram"></i></a>
					<a href="#" title="Discord"><i class="fa-brands fa-discord"></i></a>
				</div>
			</div>

		</div>

		<div class="footer-bottom">
			<p class="footer-copy">© 2026 Hitycraft. All rights reserved.</p>
		</div>
	</div>
</footer>
*/

.footer-complex .footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 2rem;
}

.footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.footer-desc {
	font-size: 0.9rem;
	line-height: 1.5;
	opacity: 0.75;
	max-width: 280px;
}

.footer-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-links a {
	color: var(--color-text-muted, #aaa);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--color-primary, #39ff14);
}

.footer-social-icons {
	display: flex;
	gap: 0.75rem;
}

.footer-social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 1.1rem;
	transition: all 0.2s ease;
}
/* ========================================
   MEDIA ROW / CAROUSEL (PV Streaming style)
======================================== */

/*
HTML Example:
<h2 class="media-row-title">Trending Now</h2>
<div class="media-row-wrapper">
	<button class="media-row-btn prev" aria-label="Previous">‹</button>
	<div class="media-row-track">
	<div class="media-card">
			<img src="https://picsum.photos/180/270?random=1" alt="Movie 1">
			<span class="media-card-rank">1</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=2" alt="Movie 2">
			<span class="media-card-rank">2</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=3" alt="Movie 3">
			<span class="media-card-rank">3</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=4" alt="Movie 4">
			<span class="media-card-rank">4</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=5" alt="Movie 5">
			<span class="media-card-rank">5</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=6" alt="Movie 6">
			<span class="media-card-rank">6</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=7" alt="Movie 7">
			<span class="media-card-rank">7</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=8" alt="Movie 8">
			<span class="media-card-rank">8</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=9" alt="Movie 9">
			<span class="media-card-rank">9</span>
		</div>
		<div class="media-card">
			<img src="https://picsum.photos/180/270?random=10" alt="Movie 10">
			<span class="media-card-rank">10</span>
		</div>
	</div>

	<button class="media-row-btn next" aria-label="Next">›</button>
</div>
*/
.media-row {
	width: 100%;
	padding: 2rem 0;
	background: #000;
	position: relative;
	overflow: hidden;
}

.media-row-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff !important;
	margin: 0 0 1rem 0;
	padding-left: 3rem;
}

.media-row-wrapper {
	position: relative;
	width: 100%;
}

.media-row-track {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	gap: 12px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	padding: 0.5rem 3rem 1.5rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.media-row-track::-webkit-scrollbar {
	display: none;
}

.media-card {
	flex: 0 0 auto !important;
	width: 180px !important;
	height: 270px !important;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background: #1a1a1a;
	transition: transform 0.25s ease;
	cursor: pointer;
}

.media-card:hover {
	transform: scale(1.08);
	z-index: 2;
}

.media-card img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.media-card-rank {
	position: absolute;
	bottom: 6px;
	left: 4px;
	font-size: 4.5rem;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	text-shadow: 3px 3px 0 #000;
	-webkit-text-stroke: 2px #000;
	z-index: 1;
	pointer-events: none;
}

.media-row-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(20, 20, 20, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.25s ease, background 0.2s ease;
}

.media-row-wrapper:hover .media-row-btn {
	opacity: 1;
}

.media-row-btn:hover {
	background: rgba(57, 255, 20, 0.25);
	color: #39ff14;
}

.media-row-btn.prev {
	left: 10px;
}

.media-row-btn.next {
	right: 10px;
}
/* ========================================
   SECTIONS - Sizes & Transitions
======================================== */

/* html example: 
<!-- Full screen section -->
<section class="section section-full section-dark">
	<div class="reveal">
		<h2>Título que sobe suavemente</h2>
	</div>
</section>

<!-- Normal section with staggered items -->
<section class="section section-auto section-darker">
	<h2 class="reveal">Trending Now</h2>

	<div class="media-row-track">
		<div class="media-card reveal reveal-delay-1">...</div>
		<div class="media-card reveal reveal-delay-2">...</div>
		<div class="media-card reveal reveal-delay-3">...</div>
	</div>
</section>

<!-- Side animations -->
<section class="section section-lg section-gradient">
	<div class="reveal-left">Texto da esquerda</div>
	<div class="reveal-right">Texto da direita</div>
</section>
*/

/* ----- Section sizes ----- */
.section {
	width: 100%;
	position: relative;
	padding: 4rem 1.5rem;
}

.section-full {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section-half {
	min-height: 50vh;
}

.section-auto {
	min-height: auto;
	padding: 3rem 1.5rem;
}

.section-sm {
	padding: 2rem 1.5rem;
}

.section-lg {
	padding: 6rem 1.5rem;
}

/* Dark / light variants */
.section-dark {
	background: #000;
	color: #fff;
}

.section-darker {
	background: #0a0a0a;
	color: #fff;
}

.section-gradient {
	background: linear-gradient(180deg, #000 0%, #0a1a0a 100%);
	color: #fff;
}

/* ----- Scroll reveal transitions ----- */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.reveal-scale {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
	opacity: 1;
	transform: scale(1);
}

/* Stagger delay helpers */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/*Huge Items*/
.btn-huge {
	padding: 20px 32px;
	font-size: 5vw;
	font-weight: 600;
	background-color: lime;
	color: white;
	border-style: solid;
	border-left-width: 3px;
	border-bottom-width: 3px;
	border-right-width: 0;
	border-top-width: 0;
	border-color: gray;
	border-radius: 20px;
	cursor: pointer;
	transition: 0.2s ease;
}
.btn-huge:hover {
	border-left-width: 0;
	border-bottom-width: 0;
	border-right-width: 3px;
	border-top-width: 3px;
}
.text-huge {
	font-size: 12vw;
	font-weight: 800;
	line-height: 1.1;
}
/* ========================================
   TYPOGRAPHY SCALE
======================================== */

.text-xs {
	font-size: 0.75rem;    /* 12px */
	line-height: 1.4;
}

.text-sm {
	font-size: 0.875rem;   /* 14px */
	line-height: 1.5;
}

.text-base {
	font-size: 1rem;       /* 16px */
	line-height: 1.6;
}

.text-lg {
	font-size: 1.125rem;   /* 18px */
	line-height: 1.6;
}

.text-xl {
	font-size: 1.25rem;    /* 20px */
	line-height: 1.5;
}

.text-2xl {
	font-size: 1.5rem;     /* 24px */
	line-height: 1.4;
}

.text-3xl {
	font-size: 1.875rem;   /* 30px */
	line-height: 1.3;
}

.text-4xl {
	font-size: 2.25rem;    /* 36px */
	line-height: 1.2;
}

.text-5xl {
	font-size: 3rem;       /* 48px */
	line-height: 1.1;
}

/* Weight helpers */
.font-light   { font-weight: 300; }
.font-normal  { font-weight: 400; }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }
.font-black   { font-weight: 900; }

/* Color helpers */
.text-white   { color: #fff; }
.text-muted   { color: var(--color-text-muted, #aaa); }
.text-primary { color: var(--color-primary, #39ff14); }

/* ========================================
   ALIGNMENT UTILITIES
======================================== */

/* Text align */
.t-left   { text-align: left; }
.t-center { text-align: center; }
.t-right  { text-align: right; }

/* Flex alignment (for containers) */
.flex {
	display: flex;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-around {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.items-start   { align-items: flex-start; }
.items-center  { align-items: center; }
.items-end     { align-items: flex-end; }

.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

/* Self alignment (for a single item inside flex/grid) */
.self-start  { align-self: flex-start; }
.self-center { align-self: center; }
.self-end    { align-self: flex-end; }

/* Margin auto helpers */
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

/*Footer Gradient*/

.footer-gradient {
	background: linear-gradient(45deg, #39ff14, #1a7a0a, #39ff14);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: gradient-move 3s linear infinite;
}

@keyframes gradient-move {
	to {
		background-position: 200% center;
	}
}

/*Global Text Gradients */

/* Green -> Cyan */
.text-gradient {
	background: linear-gradient(90deg, #39ff14, #00c8ff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Verde → branco */
.text-gradient-green {
	background: linear-gradient(90deg, #39ff14, #ffffff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Gradiente animado */
.text-gradient-animated {
	background: linear-gradient(90deg, #39ff14, #10340A, #39ff14);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: gradient-move 3s linear infinite;
}

@keyframes gradient-move {
	to {
		background-position: -200% center;
	}
}
