/* =========================
   GLOBAL STYLES
   ========================= */
body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #101012;
	color: #FFF;
}

/* =========================
   GLOBAL LINKS
   ========================= */
a {
	outline: none;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
	cursor: pointer;
	color: #FFFFFF;
	/* default link color */
	transition: color 0.3s;
}

a:visited {
	color: #FFFFFF;
}

a:hover,
a:focus,
a:active {
	color: #FFD700;
}

/* =========================
   TOP NAV BAR
   ========================= */
.top-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #111;
	padding: 12px 25px;
	border-bottom: 2px solid #FFD700;
}

.site-title {
	margin: 0;
	font-size: 1.6rem;
	color: #FFF;
	letter-spacing: 1px;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 25px;
}

.nav-link {
	font-weight: bold;
	/* inherits global link styles */
}

/* =========================
   SHOP BUTTON
   ========================= */
a.shop-button {
	padding: 10px 22px;
	background: linear-gradient(135deg, #FFD700, #c9a000);
	color: #000000;
	/* always black */
	font-weight: bold;
	border-radius: 6px;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

a.shop-button:hover {
	color: #000000;
	/* stays black on hover */
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* =========================
   MAIN CONTENT
   ========================= */
main {
	text-align: center;
	padding: 60px 20px;
}

.main-logo {
	width: 150px;
	height: auto;
	margin-bottom: 20px;
}

.title-format {
	font-size: 3.5rem;
	max-width: 800px;
	margin: 0 auto 10px;
	line-height: 1.3;
	font-weight: 500;
}

.typing-text {
	color: #1183f6;
	font-weight: bold;
	font-family: monospace;
}

.description {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 5px auto 0;
}

.extra-content {
	font-size: 1rem;
	opacity: 0.8;
}

.center-text-container {
	text-align: center;
}

/* =========================
   ICON INFO SECTION
   ========================= */
.info-icons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 25px;
	max-width: 1000px;
	margin: 80px auto;
	padding: 0 20px;
}

.icon-box {
	background-color: #161616;
	border: 1px solid #FFD700;
	padding: 25px;
	border-radius: 10px;
	text-align: center;
}

.icon-box img {
	width: 50px;
	height: 50px;
	margin-bottom: 15px;
}

.icon-box h3 {
	color: #FFD700;
	margin-bottom: 10px;
}

.icon-box p {
	font-size: 0.95rem;
	opacity: 0.85;
}

/* =========================
   VIDEO SECTION
   ========================= */
.video-section {
	margin: 100px auto;
	padding: 0 20px;
}

.video-section h2 {
	margin-bottom: 30px;
}

.video-wrapper {
	max-width: 900px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
	background-color: #0c0c0c;
	padding: 60px 20px 20px;
	margin-top: 100px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1100px;
	margin: 0 auto;
	gap: 30px;
}

.footer-column h4 {
	color: #FFD700;
	margin-bottom: 15px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
}

.footer-column ul li {
	margin-bottom: 10px;
	font-size: 0.9rem;
	opacity: 0.85;
}

.footer-column.description p {
	font-size: 0.9rem;
	opacity: 0.8;
}

.footer-bottom {
	text-align: center;
	margin-top: 40px;
	font-size: 0.8rem;
	opacity: 0.5;
}

/* =========================
   KEYFRAMES
   ========================= */
@keyframes typing {
	from {
		width: 0;
	}

	to {
		width: 6ch;
	}
}

@keyframes blink {
	50% {
		border-color: transparent;
	}
}
