@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

:root {
	--bg-primary: #f0f8ff;
	--bg-secondary: #ffffff;
	--bg-dark: #427AB5;
	--accent: #427AB5;
	--accent-light: #6AAAE6;
	--accent-dark: #2c5282;
	--text-main: #1a365d;
	--text-muted: #4a5568;
	--border-color: rgba(66, 122, 181, 0.15);
	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 20px;
	--radius-xl: 50px;
	--font-main: 'Outfit', 'Inter', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	font-family: var(--font-main);
	background-color: var(--bg-primary);
	color: var(--text-main);
	line-height: 1.7;
	overflow-x: hidden;
	background-image:
		linear-gradient(rgba(66, 122, 181, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(66, 122, 181, 0.1) 1px, transparent 1px),
		radial-gradient(at 0% 0%, rgba(176, 212, 255, 0.2) 0, transparent 60%),
		radial-gradient(at 100% 0%, rgba(106, 170, 230, 0.15) 0, transparent 60%);
	background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
}

/* * -------------------------------------------------------------- */
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 8%;
	background: rgba(240, 248, 255, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(66, 122, 181, 0.1);
	transition: all 0.4s ease;
}

.hamburger {
	display: none;
}

.logo {
	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: -1px;
	color: #427AB5;
}

.logo span {
	color: #6AAAE6;
}

.navLinks {
	list-style: none;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.navLinks a {
	text-decoration: none;
	color: #4A6984;
	font-weight: 700;
	transition: 0.3s;
}

.navLinks a:hover {
	color: #427AB5;
}

.btnPrimaryOutline {
	border: 2px solid #427AB5;
	color: #427AB5;
	padding: 8px 20px;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}

.btnPrimaryOutline:hover {
	background: #427AB5;
	color: #fff;
}

/* * -------------------------------------------------------------- */
.cartFAB {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 70px;
	height: 70px;
	background: #427AB5;
	color: #fff;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1000;
	/* shadow removed */

	transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.cartFAB:hover {
	transform: scale(1.1) rotate(-10deg);
	background: #6AAAE6;
}

.cartFAB .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ef4444;
	color: #fff;
	font-size: 0.8rem;
	width: 25px;
	height: 25px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	border: 3px solid #f0f8ff;
}

/* * -------------------------------------------------------------- */
.hero {
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px 8%;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: #6AAAE6;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	animation: float 8s infinite alternate ease-in-out;
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 3rem;
	color: var(--text-main);
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.hero h1 span {
	background: var(--accent);
	color: white;
	padding: 0.2rem 1.5rem;
	display: inline-block;
	font-style: italic;
	transform: skew(-5deg);
	width: fit-content;
}

.heroBtns {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 40px;
}

.hero p {
	font-size: 1.25rem;
	color: #4A6984;
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: justify;
}

/* * -------------------------------------------------------------- */
.gameShowcaseSection {
	padding: 100px 8%;
	max-width: 1400px;
	margin: 0 auto;
}

.gameShowcaseHeader {
	text-align: center;
	margin-bottom: 60px;
}

.gameShowcaseLabel {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 3px;
	color: #6AAAE6;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.gameShowcaseHeader h2 {
	font-size: 2.8rem;
	font-weight: 900;
	color: #427AB5;
	margin-bottom: 10px;
}

.gameShowcaseHeader p {
	color: #4A6984;
	font-size: 1.05rem;
}

.gameShowcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.gameCard {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 25px;
	border: 1px solid var(--border-color);
	transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
}

.gameCard::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--cardAccent, #427AB5);
	border-radius: 30px 0 0 30px;
	transition: 0.4s;
}

.gameCard:hover {
	transform: translateY(-8px);
	border-color: var(--accent);
}

.gameCardImg {
	width: 100%;
	height: 200px;
	background: #f8fafc;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.gameCardImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.gameCard:hover .gameCardImg img {
	transform: scale(1.1);
}

.gameCardBody {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gameTag {
	display: inline-block;
	padding: 5px 12px;
	background: rgba(66, 122, 181, 0.1);
	color: var(--accent);
	border-radius: 10px;
	font-size: 0.72rem;
	font-weight: 800;
	width: fit-content;
}

/* * -------------------------------------------------------------- */
.gameCardImg {
	width: 100%;
	height: 260px;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gameCardImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.gameCardImgPlaceholder {
	font-size: 3.5rem;
	font-weight: 900;
	color: rgba(66, 122, 181, 0.15);
	letter-spacing: -2px;
	text-align: center;
	line-height: 1.2;
}

/* * -------------------------------------------------------------- */
.gameCardBody {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gameTag {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 12px;
	width: fit-content;
}

.gameCardBody h3 {
	font-family: "Outfit", sans-serif;
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 12px;
	line-height: 1.2;
}

.gameCardBody > p {
	color: #4A6984;
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 20px;
}

/* * -------------------------------------------------------------- */
.gameFeatures {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.gameFeatures span {
	background: #e1f0ff;
	color: #427AB5;
	padding: 6px 14px;
	border-radius: 10px;
	font-size: 0.8rem;
	font-weight: 700;
}

.gameStatusBadge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #4A6984;
	font-style: italic;
}

.gameStatusBadge::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #6AAAE6;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

/* * -------------------------------------------------------------- */
.previewContainer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.previewContent h2 {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 25px;
	color: #427AB5;
	line-height: 1.1;
}

.previewContent p {
	font-size: 1.15rem;
	color: #4A6984;
	margin-bottom: 30px;
	text-align: justify;
}

.previewImg {
	width: 100%;
	border-radius: 40px;
	overflow: hidden;
	animation: float 6s infinite ease-in-out;
}

.previewImg img {
	width: 100%;
	display: block;
	object-fit: cover;
}

/* * -------------------------------------------------------------- */
.btnPrimary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	color: #fff;
	border: 1px solid var(--accent);
	padding: 1rem 2.2rem;
	border-radius: var(--radius-xl);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85rem;
	cursor: pointer;
	text-decoration: none;
	transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btnPrimary:hover {
	transform: translateY(-3px);
	filter: brightness(1.1);
	box-shadow: 0 10px 20px rgba(66, 122, 181, 0.2);
}

.btnSecondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: transparent;
	color: var(--text-muted);
	border: 2px solid var(--accent-light);
	padding: 1rem 2.2rem;
	border-radius: var(--radius-xl);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85rem;
	cursor: pointer;
	text-decoration: none;
	transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btnSecondary:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: rgba(66, 122, 181, 0.05);
	transform: translateY(-3px);
}

/* * -------------------------------------------------------------- */
.container {
	padding: 100px 8%;
	max-width: 1400px;
	margin: 0 auto;
}

.sectionHeader {
	text-align: center;
	margin-bottom: 70px;
}

.sectionHeader h2 {
	font-size: 3.2rem;
	font-weight: 950;
	color: #427AB5;
	position: relative;
	display: inline-block;
	letter-spacing: -1.5px;
	line-height: 1.1;
}

.sectionHeader h2::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 6px;
	background: #6AAAE6;
	border-radius: 3px;
}

.sectionHeader p {
	margin-top: 30px;
	color: #4A6984;
	font-size: 1.15rem;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.cardInfo {
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	position: relative;
	overflow: visible;
}

.cardInfo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent);
	opacity: 0;
	transition: 0.3s;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.cardInfo:hover {
	transform: translateY(-10px);
	border-color: var(--accent);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	z-index: 100;
}

.cardInfo:hover::before {
	opacity: 1;
}

.reviewOverlay {
	position: absolute;
	top: 100%;
	left: -1px;
	width: calc(100% + 2px);
	background: #fff;
	border: 1px solid var(--accent);
	border-top: 1px solid rgba(66, 122, 181, 0.1);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	padding: 0 2rem 2rem;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 99;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.cardInfo:hover .reviewOverlay {
	opacity: 1;
	visibility: visible;
}

.miniReviewItem {
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
}

.miniReviewItem:last-child {
	border-bottom: none;
}

.miniReviewItem strong {
	font-size: 0.85rem;
	color: #427AB5;
	display: block;
}

.miniReviewItem p {
	font-size: 0.8rem !important;
	color: #4A6984 !important;
	margin: 2px 0 0 !important;
	text-align: left;
}

.reviewHeaderLabel {
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #4A6984;
	padding: 10px 0;
	border-top: 1px solid #f0f0f0;
	margin-top: 5px;
	display: flex;
	justify-content: space-between;
}

.cardInfo img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
	border-radius: 20px;
	margin-bottom: 20px;
	transition: 0.5s;
}

.cardInfo:hover img {
	transform: scale(1.03);
}

.gridProducts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

/* * -------------------------------------------------------------- */
.heroSplit {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	min-height: 500px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 40px;
	transition: 0.4s;
}

.heroSplit:hover {
	border-color: var(--accent);
}

.heroSplit.reverse {
	grid-template-columns: 0.9fr 1.1fr;
}

.heroSplit.reverse .heroSplitContent {
	direction: ltr;
}

.heroSplitImg {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.heroSplitImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.heroSplit:hover .heroSplitImg img {
	transform: scale(1.05);
}

.heroSplitContent {
	padding: 60px 8%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
}

.heroSplitContent .label {
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--accent-light);
	letter-spacing: 3px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.heroSplitContent h3 {
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--accent);
	letter-spacing: -1px;
}

.heroSplitContent p {
	font-size: 1rem;
	color: var(--text-muted);
	margin-bottom: 30px;
	line-height: 1.8;
	text-align: justify;
}

.destHighlights {
	list-style: none;
	margin-bottom: 35px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.destHighlights li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	color: var(--text-main);
	font-weight: 600;
}

.destHighlights li i {
	color: var(--accent);
	font-size: 1.1rem;
}

.heroSplitImg {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.destTag {
	position: absolute;
	top: 30px;
	left: 30px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	padding: 8px 20px;
	border-radius: var(--radius-xl);
	font-size: 0.7rem;
	font-weight: 800;
	color: var(--accent);
	letter-spacing: 1px;
	z-index: 5;
}

.heroSplit.reverse .destTag {
	left: auto;
	right: 30px;
}

/* * -------------------------------------------------------------- */
.budayaHero {
	position: relative;
	min-height: 600px;
	background-color: var(--accent-dark);
	overflow: hidden;
	margin-top: 100px;
}

.budayaOverlay {
	min-height: 800px;
	width: 100%;
	background: linear-gradient(
		180deg,
		rgba(66, 122, 181, 0.95) 0%,
		rgba(66, 122, 181, 0.8) 100%
	);
	padding: 100px 8%;
	display: flex;
	flex-direction: column;
}

.sectionHeader.light h2 {
	color: #fff;
}

.sectionHeader.light h2::after {
	background: #9cdba6;
}

.sectionHeader.light p {
	color: rgba(255, 255, 255, 0.8);
}

.featuredCulture {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
}

.cultureHeroBox {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	background: #f0f8ff;
	border-radius: 50px;
	overflow: hidden;
	max-width: 1200px;
}

.cultureHeroContent {
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cultureHeroContent h3 {
	font-size: 2.5rem;
	font-weight: 950;
	color: #427AB5;
	margin-bottom: 20px;
}

.cultureHeroContent p {
	font-size: 1.1rem;
	color: #4A6984;
	margin-bottom: 30px;
	text-align: left;
}

.cultureTags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.cultureTags span {
	background: #6AAAE6;
	color: #fff;
	padding: 8px 16px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 1px;
}

.cultureHeroImg {
	width: 100%;
	height: 100%;
}

.cultureHeroImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* * -------------------------------------------------------------- */
.teamHeroGrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 50px;
}

.teamHeroCard {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 40px;
	background: #fff;
	border-radius: 40px;
	border: 3px solid rgba(66, 122, 181, 0.15);
	transition: 0.5s;
}

.teamHeroCard:hover {
	border-color: #6AAAE6;
	transform: translateY(-5px);
}

.teamHeroAvatar {
	width: 120px;
	height: 120px;
	border-radius: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.teamHeroAvatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center calc(50% + 20px);
}

.heroIMG .role {
	font-size: 0.75rem;
	font-weight: 900;
	color: #6AAAE6;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 10px;
}

.heroIMG h3 {
	font-size: 1.6rem;
	font-weight: 950;
	color: #427AB5;
	margin-bottom: 15px;
	text-align: left;
}

.heroIMG p {
	font-size: 0.95rem;
	color: #4A6984;
	margin-bottom: 20px;
	line-height: 1.6;
	text-align: left;
}

.teamSocial {
	display: flex;
	gap: 15px;
}

.teamSocial span {
	font-size: 0.7rem;
	font-weight: 900;
	color: #427AB5;
	border: 1.5px solid rgba(66, 122, 181, 0.15);
	padding: 6px 12px;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.3s;
}

.teamSocial span:hover {
	background: #427AB5;
	color: #fff;
	border-color: #427AB5;
}

/* * -------------------------------------------------------------- */
.accordion {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.accordionItem {
	background: #fff;
	border-radius: 20px;
	border: 3px solid rgba(66, 122, 181, 0.15);
	overflow: hidden;
	transition: 0.4s;
}

.accordionHeader {
	padding: 24px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 700;
	color: #427AB5;
	transition: 0.3s;
}

.accordionHeader:hover {
	background: rgba(106, 170, 230, 0.05);
}

.accordionHeader .plus {
	width: 20px;
	height: 20px;
	position: relative;
	transition: 0.4s;
}

.accordionHeader .plus::before,
.accordionHeader .plus::after {
	content: "";
	position: absolute;
	background: #427AB5;
	border-radius: 2px;
}

.accordionHeader .plus::before {
	width: 100%;
	height: 2px;
	top: 50%;
	transform: translateY(-50%);
}

.accordionHeader .plus::after {
	width: 2px;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
}

.accordionItem.active .plus {
	transform: rotate(45deg);
}

.accordionBody {
	max-height: 0;
	overflow: hidden;
	transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordionItem.active .accordionBody {
	max-height: 200px;
}

.accordionBody p {
	padding: 0 30px 30px;
	color: #4A6984;
	font-size: 0.95rem;
}

/* * -------------------------------------------------------------- */
.footer {
	padding: 0;
	background: #fff;
	border-top: 2px solid rgba(66, 122, 181, 0.15);
}

.footerInner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 60px 8%;
	max-width: 1400px;
	margin: 0 auto;
}

.footerBrand p {
	color: #4A6984;
	font-size: 0.9rem;
	line-height: 1.7;
	margin-top: 15px;
	max-width: 320px;
}

.footerLinks h4,
.footerTeam h4 {
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #427AB5;
	margin-bottom: 20px;
}

.footerLinks ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footerLinks a {
	text-decoration: none;
	color: var(--text-muted);
	font-weight: 500;
	font-size: 0.9rem;
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	position: relative;
}

.footerLinks a:hover {
	color: var(--accent);
	transform: translateX(5px);
}

/* * -------------------------------------------------------------- */
.teamList {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.teamMember {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	background: #fff;
	border: 3px solid rgba(66, 122, 181, 0.15);
	border-radius: 24px;
	transition: 0.3s;
}

.teamMember:hover {
	transform: translateX(5px);
	border-color: #427AB5;
}

.teamAvatar {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #427AB5;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 1px;
	flex-shrink: 0;
}

.teamMember strong {
	display: block;
	font-size: 0.85rem;
	font-weight: 800;
	color: #2c3e50;
}

.teamMember span {
	font-size: 0.75rem;
	color: #4A6984;
	font-weight: 600;
}

.footerBottom {
	text-align: center;
	padding: 25px 8%;
	border-top: 1px solid rgba(66, 122, 181, 0.15);
	font-size: 0.85rem;
	color: #4A6984;
}

.footerBottom span {
	color: #6AAAE6;
}

/* * -------------------------------------------------------------- */
.authPage {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 20px;
}

.authContainer {
	width: 100%;
	display: flex;
	justify-content: center;
}

.authCard {
	background: #fff;
	padding: 60px 50px;
	border-radius: 40px;
	border: 3px solid rgba(66, 122, 181, 0.15);
	max-width: 480px;
	width: 100%;
	text-align: center;
}

.authCard h2 {
	font-size: 1.8rem;
	font-weight: 900;
	margin: 20px 0 10px;
	color: #427AB5;
}

.authSubtitle {
	font-size: 0.95rem;
	color: #4A6984;
	margin-bottom: 35px;
}

.input {
	text-align: left;
	margin-bottom: 20px;
}

.input label {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #427AB5;
	margin-bottom: 8px;
	margin-left: 5px;
}

.inputField {
	width: 100%;
	padding: 18px 25px;
	border-radius: 20px;
	border: 3px solid rgba(66, 122, 181, 0.15);
	font-family: inherit;
	font-weight: 600;
	transition: 0.3s;
	outline: none;
	background: #fff;
}

.inputField:focus {
	border-color: #427AB5;
}

.authSubmit {
	width: 100%;
	margin-top: 10px;
}

.authFooter {
	margin-top: 30px;
}

.authFooter p {
	font-size: 0.9rem;
	color: #4A6984;
	margin-bottom: 15px;
}

.authFooter a {
	color: #427AB5;
	font-weight: 800;
	text-decoration: none;
}

.backLink {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: #94a3b8 !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* * -------------------------------------------------------------- */
.modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal.active {
	display: flex;
}

.modalContent {
	background: #fff;
	padding: 40px;
	border-radius: 40px;
	max-width: 500px;
	width: 100%;
	border: 1px solid rgba(66, 122, 181, 0.15);
	text-align: center;
}

.modalContent h2 {
	color: #427AB5;
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 10px;
}

.modalContent p {
	color: #4A6984;
	font-size: 0.95rem;
	margin-bottom: 30px;
	text-align: left;
}

.modalBtns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.modalBtns .btnPrimary {
	width: 100%;
	padding: 16px;
}

/* * -------------------------------------------------------------- */
.cartSidebar {
	position: fixed;
	top: 0;
	right: -450px;
	width: 400px;
	height: 100vh;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	padding: 40px;
	/* shadow removed */

	transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	border-left: 1px solid rgba(66, 122, 181, 0.1);
}

.cartSidebar.active {
	right: 0;
}

.cartSidebarHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.cartSidebarHeader h2 {
	margin: 0;
	font-size: 1.8rem;
	color: #427AB5;
	font-weight: 900;
}

.btnCloseCart {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #4A6984;
	cursor: pointer;
	transition: 0.3s;
}

.btnCloseCart:hover {
	color: #ef4444;
	transform: rotate(90deg);
}

.cartOverlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(4px);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s;
}

.cartOverlay.active {
	opacity: 1;
	visibility: visible;
}

.cartItemsContainer {
	max-height: 250px;
	overflow-y: auto;
	margin: 20px 0;
	padding-right: 5px;
}

.cartItemRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: #f8fafc;
	border-radius: 16px;
	margin-bottom: 10px;
	text-align: left;
}

.cartItemInfo {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cartItemInfo strong {
	font-size: 0.95rem;
	color: #427AB5;
}

.cartItemInfo span {
	font-size: 0.8rem;
	color: #4A6984;
	font-weight: 700;
}

.btnRemove {
	background: #fee2e2;
	color: #ef4444;
	border: none;
	width: 35px;
	height: 35px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btnRemove:hover {
	background: #ef4444;
	color: #fff;
}

.cartTotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 5px;
	border-top: 2px dashed rgba(66, 122, 181, 0.15);
	margin-top: 10px;
}

.cartTotal span {
	font-weight: 700;
	color: #4A6984;
}

.cartTotal strong {
	font-size: 1.2rem;
	color: #6AAAE6;
	font-weight: 950;
}

/* * -------------------------------------------------------------- */
.adminBody {
	display: flex;
	min-height: 100vh;
	background: #f8fafc;
}

.sidebar {
	width: 280px;
	background: #fff;
	border-right: 1px solid rgba(66, 122, 181, 0.15);
	padding: 40px 20px;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 0;
	height: 100vh;
}

.sidebarHeader h3 {
	font-size: 1.2rem;
	font-weight: 900;
	color: #427AB5;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

.sidebarNav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sidebarNav button {
	text-align: left;
	padding: 14px 20px;
	border-radius: 14px;
	border: none;
	background: transparent;
	color: #4A6984;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s;
}

.sidebarNav button.active {
	background: #f0f8ff;
	color: #427AB5;
}

.btnBack {
	margin-top: auto;
	padding: 15px;
	text-align: center;
	text-decoration: none;
	color: #4A6984;
	font-weight: 700;
	font-size: 0.8rem;
	border-top: 1px solid rgba(66, 122, 181, 0.15);
	padding-top: 20px;
}

.content {
	flex: 1;
	padding: 60px;
	overflow-y: auto;
}

.tabPane {
	display: none;
}

.tabPane.active {
	display: block;
}

.tabPane h2 {
	font-size: 2rem;
	font-weight: 900;
	color: #427AB5;
	margin-bottom: 30px;
}

.statsGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-bottom: 50px;
}

.statCard {
	background: #fff;
	padding: 30px;
	border-radius: 24px;
	border: 1px solid rgba(66, 122, 181, 0.15);
}

.statCard h4 {
	font-size: 0.9rem;
	color: #4A6984;
	margin-bottom: 10px;
}

.statCard p {
	font-size: 2.5rem;
	font-weight: 900;
	color: #427AB5;
}

.formAdd {
	display: none;
	background: #fff;
	padding: 35px;
	border-radius: 24px;
	border: 1px solid rgba(66, 122, 181, 0.15);
	margin-bottom: 40px;
}

.tableContainer {
	background: #fff;
	border-radius: 24px;
	border: 1px solid rgba(66, 122, 181, 0.15);
	overflow: hidden;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th {
	text-align: left;
	padding: 20px;
	background: #f1f5f9;
	color: #427AB5;
	font-size: 0.85rem;
	font-weight: 800;
}

td {
	padding: 20px;
	border-top: 1px solid rgba(66, 122, 181, 0.15);
	font-size: 0.95rem;
	font-weight: 600;
}

.badge {
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 800;
}

.badge.pending {
	background: #fef9c3;
	color: #854d0e;
}
.badge.selesai {
	background: #dcfce7;
	color: #166534;
}

/* * -------------------------------------------------------------- */
.teamGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.teamCard {
	background: #fff;
	border: 3px solid rgba(66, 122, 181, 0.15);
	border-radius: 40px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.teamCard:hover {
	transform: translateY(-10px);
	border-color: #427AB5;
	background: #f0f8ff;
}

.teamAvatarLarge {
	width: 100px;
	height: 100px;
	background: #427AB5;
	color: #fff;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 25px;
	letter-spacing: 2px;
}

.teamInfo h3 {
	font-size: 1.4rem;
	font-weight: 900;
	margin-bottom: 5px;
	color: #2c3e50;
}

.teamInfo .role {
	color: #427AB5;
	font-weight: 800;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.teamInfo .bio {
	color: #4A6984;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* * -------------------------------------------------------------- */
.contactContent {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	margin-top: 40px;
}

.contactInfo {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contactItem {
	display: flex;
	align-items: center;
	gap: 20px;
}

.contactIcon {
	width: 60px;
	height: 60px;
	background: #f0f8ff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #427AB5;
	flex-shrink: 0;
}

.contactItem h4 {
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #4A6984;
	margin-bottom: 4px;
}

.contactItem p {
	font-size: 1.1rem;
	font-weight: 800;
	color: #2c3e50;
}

.contactForm {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.formGroup {
	width: 100%;
}

.contactForm .btnPrimary {
	width: fit-content;
}

/* * -------------------------------------------------------------- */
.gameDetailLink {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 800;
	margin-top: 10px;
	transition: 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gameCard:hover .gameDetailLink {
	gap: 14px;
}

/* * -------------------------------------------------------------- */
.gameDetailPage {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 8% 100px;
}

/* * -------------------------------------------------------------- */
.gameDetailBreadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	font-weight: 700;
	color: #94a3b8;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.gameDetailBreadcrumb a {
	color: #4A6984;
	text-decoration: none;
	transition: 0.3s;
}

.gameDetailBreadcrumb a:hover {
	color: #427AB5;
}

.breadcrumbActive {
	color: #427AB5;
	font-weight: 800;
}

/* * -------------------------------------------------------------- */
.gameDetailHero {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
	background: #fff;
	border-radius: 40px;
	border: 3px solid rgba(66, 122, 181, 0.15);
	padding: 40px;
	margin-bottom: 80px;
	position: relative;
	overflow: hidden;
}

.gameDetailHero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: var(--detailAccent, #427AB5);
	border-radius: 30px 0 0 30px;
}

/* * -------------------------------------------------------------- */
.gameDetailHeroImg {
	width: 100%;
	height: 400px;
	border-radius: 30px;
	overflow: hidden;
	background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gameDetailHeroImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
	transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.gameDetailHero:hover .gameDetailHeroImg img {
	transform: scale(1.03);
}

/* * -------------------------------------------------------------- */
.gameDetailHeroContent {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gameDetailHeroContent .gameTag {
	margin-bottom: 20px;
}

.gameDetailHeroContent h1 {
	font-family: "Outfit", sans-serif;
	font-size: 3rem;
	font-weight: 950;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -1.5px;
}

.gameDetailDesc {
	font-size: 1.05rem;
	color: #4A6984;
	line-height: 1.8;
	margin-bottom: 30px;
	text-align: justify;
}

/* * -------------------------------------------------------------- */
.gameDetailMeta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.gameDetailMetaItem {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f0f8ff;
	color: #427AB5;
	padding: 10px 18px;
	border-radius: 14px;
	font-size: 0.85rem;
	font-weight: 800;
}

.gameDetailMetaItem i {
	font-size: 0.9rem;
}

/* * -------------------------------------------------------------- */
.gameDetailSection {
	margin-bottom: 80px;
}

.gameDetailSectionHeader {
	text-align: center;
	margin-bottom: 50px;
}

.gameDetailSectionHeader h2 {
	font-size: 2.5rem;
	font-weight: 950;
	color: #427AB5;
	position: relative;
	display: inline-block;
	letter-spacing: -1px;
}

.gameDetailSectionHeader h2::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 5px;
	background: #6AAAE6;
	border-radius: 3px;
}

.gameDetailSectionHeader p {
	margin-top: 25px;
	color: #4A6984;
	font-size: 1.05rem;
}

/* * -------------------------------------------------------------- */
.gameDetailAbout {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 50px;
	align-items: start;
}

.gameDetailAboutText p {
	font-size: 1.05rem;
	color: #4A6984;
	line-height: 1.9;
	text-align: justify;
}

.gameDetailAboutSidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gameDetailInfoCard {
	background: #fff;
	padding: 24px 28px;
	border-radius: 20px;
	border: 3px solid rgba(66, 122, 181, 0.15);
	transition: 0.3s;
}

.gameDetailInfoCard:hover {
	border-color: #6AAAE6;
	transform: translateX(5px);
}

.gameDetailInfoCard h4 {
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #94a3b8;
	margin-bottom: 6px;
}

.gameDetailInfoCard p {
	font-size: 1.1rem;
	font-weight: 800;
	color: #427AB5;
}

/* * -------------------------------------------------------------- */
.gameDetailOtherGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.gameDetailOtherCard {
	background: #fff;
	border-radius: 30px;
	border: 3px solid rgba(66, 122, 181, 0.15);
	overflow: hidden;
	text-decoration: none;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	display: flex;
	flex-direction: column;
	position: relative;
}

.gameDetailOtherCard::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--cardAccent, #427AB5);
	transition: 0.4s;
}

.gameDetailOtherCard:hover {
	border-color: var(--cardAccent, #427AB5);
	transform: translateY(-8px);
}

.gameDetailOtherCard:hover::before {
	height: 6px;
}

.gameDetailOtherImg {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gameDetailOtherImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.gameDetailOtherCard:hover .gameDetailOtherImg img {
	transform: scale(1.05);
}

.gameDetailOtherBody {
	padding: 24px;
}

.gameDetailOtherBody .gameTag {
	margin-bottom: 10px;
}

.gameDetailOtherBody h3 {
	font-family: "Outfit", sans-serif;
	font-size: 1.3rem;
	font-weight: 900;
	margin-bottom: 8px;
	line-height: 1.2;
}

.gameDetailOtherBody p {
	color: #4A6984;
	font-size: 0.9rem;
	line-height: 1.6;
}

/* * -------------------------------------------------------------- */
@media (max-width: 768px) {
	.nav {
		padding: 1rem 5%;
	}

	.hamburger {
		display: flex;
		flex-direction: column;
		gap: 5px;
		cursor: pointer;
		z-index: 1001;
	}

	.hamburger span {
		display: block;
		width: 25px;
		height: 3px;
		background: #427AB5;
		border-radius: 3px;
		transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}

	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.navLinks {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding: 100px 0 50px;
		overflow-y: auto;
		transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
		z-index: 1000;
	}

	.navLinks.active {
		right: 0;
	}

	.navLinks li {
		margin: 20px 0;
		opacity: 0;
		transform: translateY(20px);
		transition: 0.4s;
	}

	.navLinks.active li {
		opacity: 1;
		transform: translateY(0);
	}

	.navLinks.active li:nth-child(1) {
		transition-delay: 0.2s;
	}
	.navLinks.active li:nth-child(2) {
		transition-delay: 0.3s;
	}
	.navLinks.active li:nth-child(3) {
		transition-delay: 0.4s;
	}
	.navLinks.active li:nth-child(4) {
		transition-delay: 0.5s;
	}
	.navLinks.active li:nth-child(5) {
		transition-delay: 0.6s;
	}
	.navLinks.active li:nth-child(6) {
		transition-delay: 0.7s;
	}
	.navLinks.active li:nth-child(7) {
		transition-delay: 0.8s;
	}
	.navLinks.active li:nth-child(8) {
		transition-delay: 0.9s;
	}

	.navLinks li:not(:last-child) {
		display: block;
	}

	.hero {
		padding: 100px 5%;
	}

	.hero::before {
		width: 300px;
		height: 300px;
		filter: blur(80px);
	}

	.hero h1 {
		font-size: clamp(2.5rem, 8vw, 4rem);
		letter-spacing: -1px;
	}

	.sectionHeader {
		margin-bottom: 50px;
	}

	.sectionHeader h2 {
		font-size: 2.2rem;
		letter-spacing: -1px;
	}

	.previewContainer {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.previewContent h2 {
		font-size: 2.2rem;
	}

	.container {
		padding: 80px 5%;
	}

	.grid {
		grid-template-columns: 1fr;
	}

	.gameShowcaseSection {
		padding: 80px 5%;
	}

	.gameCard {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 24px;
	}

	.gameCardImg {
		height: 200px;
	}

	.gameShowcaseHeader h2 {
		font-size: 2rem;
	}

	.footerInner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px 5%;
	}

	.heroBtns {
		flex-direction: column;
		align-items: center;
	}

	.contactContent {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contactForm .btnPrimary {
		width: 100%;
	}

	.heroSplit {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.heroSplit.reverse {
		direction: ltr;
	}

	.heroSplitContent {
		padding: 60px 8%;
	}

	.heroSplitImg {
		height: 300px;
	}

	.heroSplit.reverse .heroSplitContent {
		direction: ltr;
	}

	.heroSplit {
		border-radius: 30px;
	}

	.cultureHeroBox {
		grid-template-columns: 1fr;
		border-radius: 30px;
	}

	.cultureHeroContent {
		padding: 30px;
	}

	.cultureHeroContent h3 {
		font-size: 2rem;
	}

	.cultureHeroImg {
		height: 300px;
	}

	.teamHeroGrid {
		grid-template-columns: 1fr;
	}

	.teamHeroCard {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.gameDetailPage {
		padding: 30px 5% 80px;
	}

	.gameDetailHero {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 24px;
		border-radius: 30px;
	}

	.gameDetailHeroImg {
		height: 240px;
		border-radius: 20px;
	}

	.gameDetailHeroContent h1 {
		font-size: 2rem;
	}

	.gameDetailAbout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.gameDetailOtherGrid {
		grid-template-columns: 1fr;
	}

	.gameDetailSectionHeader h2 {
		font-size: 1.8rem;
	}
}
