﻿@font-face {
	font-family: "InterTight";
	src: url("/fonts/InterTight-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Lora";
	src: url("/fonts/Lora-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "PokemonSolid";
	src: url("/fonts/Pokemon-Solid.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "UnownTCG";
	src: url("/fonts/UnownTCG.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg0: #07080d;
	--bg1: #0d1018;
	--bg2: #10111a;
	--panel: rgba(255, 255, 255, 0.06);
	--panel2: rgba(255, 255, 255, 0.045);
	--stroke: rgba(255, 255, 255, 0.08);
	--text: rgba(255, 255, 255, 0.92);
	--muted: rgba(255, 255, 255, 0.72);
	--muted2: rgba(255, 255, 255, 0.52);
	--gold: #c9a227;
	--gold2: #b88d18;
	--red: #e23b4c;
	--red2: #b5162b;
	--shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
	--shadow2: 0 14px 40px rgba(0, 0, 0, 0.38);
	--r16: 16px;
	--r20: 20px;
	--r22: 22px;
	--r28: 28px;
}

* {
	box-sizing: border-box;
}

html, body {
	min-height: 100vh;
	margin: 0;
	padding: 0;
	color: var(--text);
	font-family: "Lora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: linear-gradient(135deg, var(--bg0), var(--bg1), var(--bg2), #0a0b10);
	background-size: 320% 320%;
	background-attachment: fixed;
	animation: gradientShift 18s ease infinite;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

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

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

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

	a:hover {
		color: var(--gold);
	}

:focus-visible {
	outline: 2px solid rgba(201, 162, 39, 0.55);
	outline-offset: 3px;
	border-radius: 10px;
}

.page {
	width: 100%;
	margin: 0 auto;
}

h1, h2, h3 {
	font-family: "InterTight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	margin: 0;
}

p {
	margin: 0;
	color: var(--muted);
	line-height: 1.55;
}

section {
	scroll-margin-top: 100px;
	margin: 3rem auto;
	padding: 2.25rem;
	max-width: 1200px;
	border-radius: var(--r22);
	background: var(--panel);
	backdrop-filter: blur(18px) saturate(125%);
	-webkit-backdrop-filter: blur(18px) saturate(125%);
	box-shadow: var(--shadow);
	border: 1px solid var(--stroke);
}

.landing-hero {
	max-width: 1400px;
	padding: 3.5rem 2.5rem;
	border-radius: var(--r28);
	background: rgba(255, 255, 255, 0.055);
	backdrop-filter: blur(22px) saturate(130%);
	-webkit-backdrop-filter: blur(22px) saturate(130%);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.09);
}

.landing-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 2.2rem;
	align-items: center;
}

@media (max-width: 980px) {
	.landing-grid {
		grid-template-columns: 1fr;
	}
}

.landing-left {
	padding: 0.25rem;
}

.landing-right {
	display: grid;
	place-items: center;
	padding: 0.25rem;
}

.screenshot-img {
	width: min(440px, 100%);
	height: auto;
	border-radius: var(--r22);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
}

.hero-description {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.80);
	margin-top: 1rem;
}

.brand-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.85rem;
	margin-bottom: 1.2rem;
	width: 100%;
}

.brand-title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
}

.brand-logo {
	height: 56px;
	width: auto;
	margin: 0;
}

.brand-title {
	display: grid;
	justify-items: center;
	gap: 0.55rem;
}

.brand-main {
	font-family: "PokemonSolid","InterTight",system-ui,sans-serif;
	font-size: clamp(2.4rem,4vw,3.2rem);
	letter-spacing: -0.02em;
}

.brand-tagline {
	display: grid;
	justify-items: center;
	gap: 0.15rem;
}

.tagline-main {
	font-size: clamp(1.25rem,2vw,1.7rem);
	color: rgba(255,255,255,0.74);
}

.brand-unown,
.tagline-unown {
	font-family: "UnownTCG","InterTight",system-ui,sans-serif;
	font-size: clamp(0.75rem,1.2vw,0.9rem);
	color: rgba(255,255,255,0.42);
	letter-spacing: 0.18em;
	line-height: 1.05;
}

.image-bullet-list {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 0 0;
	display: grid;
	gap: 0.9rem;
}

	.image-bullet-list li {
		display: flex;
		align-items: center;
		gap: 0.85rem;
		padding: 0.9rem 1rem;
		border-radius: var(--r16);
		background: rgba(0, 0, 0, 0.18);
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	}

.bullet-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.bullet-icon-inline {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	justify-self: center;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

@media (max-width: 980px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
}

.features-item {
	border-radius: var(--r20);
	background: rgba(10, 10, 14, 0.72);
	padding: 1.25rem;
	box-shadow: var(--shadow2);
	border: none;
	transition: transform 0.15s ease, box-shadow 0.2s ease;
}

	.features-item:hover {
		transform: translateY(-2px);
		box-shadow: 0 22px 60px rgba(0, 0, 0, 0.52);
	}

	.features-item h3 {
		font-size: 1.05rem;
		color: rgba(255, 255, 255, 0.9);
		margin-bottom: 0.85rem;
	}

.features-description {
	font-size: 0.98rem;
	color: rgba(255, 255, 255, 0.70);
	line-height: 1.5;
	margin-top: 0.9rem;
}

.cta-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	flex-wrap: wrap;
	margin-top: 1.35rem;
}

.primary-button, .secondary-button {
	padding: 12px 18px;
	font-size: 1rem;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
	font-family: "InterTight", system-ui, sans-serif;
}

.primary-button {
	border: none;
	color: white;
	background: linear-gradient(135deg, var(--red), var(--red2));
	box-shadow: 0 14px 34px rgba(226, 59, 76, 0.18), 0 18px 60px rgba(0, 0, 0, 0.45);
}

	.primary-button:hover {
		transform: translateY(-1px);
		box-shadow: 0 18px 44px rgba(226, 59, 76, 0.22), 0 26px 80px rgba(0, 0, 0, 0.55);
	}

	.primary-button:disabled {
		opacity: 0.55;
		cursor: not-allowed;
		box-shadow: none;
	}

.secondary-button {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.86);
}

	.secondary-button:hover {
		transform: translateY(-1px);
		box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
	}

.store-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1rem;
}

.store-badge {
	width: 170px;
	height: auto;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.18);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	transition: transform 0.18s ease, box-shadow 0.2s ease;
}

	.store-badge:hover {
		transform: translateY(-2px);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
	}

.social-img.clickable {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	transition: transform 0.18s ease, box-shadow 0.2s ease;
}

	.social-img.clickable:hover {
		transform: translateY(-2px) scale(1.04);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.52);
	}

.main-footer {
	max-width: 1200px;
	margin: 3rem auto 2rem auto;
	padding: 2.25rem;
	border-radius: var(--r22);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(18px) saturate(125%);
	-webkit-backdrop-filter: blur(18px) saturate(125%);
	box-shadow: var(--shadow);
	border: 1px solid var(--stroke);
}

.footer-container {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 2rem;
	align-items: start;
}

@media (max-width: 980px) {
	.footer-container {
		grid-template-columns: 1fr;
	}
}

.footer-column {
	display: grid;
	gap: 0.75rem;
}

	.footer-column a {
		color: rgba(255, 255, 255, 0.70);
		transition: color 0.15s ease;
	}

		.footer-column a:hover {
			color: var(--gold);
		}

.footer-bottom {
	margin-top: 1.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
	html, body {
		animation: none;
	}

	.features-item, .store-badge, .primary-button, .secondary-button, .social-img.clickable {
		transition: none;
	}
}
