/* ================================================
   AKRYLL ENTERTAINMENT — CUSTOM STYLES
   css/akryll.css
   ================================================ */

:root {
	--ak-dark:    #0a0a0f;
	--ak-mid:     #13131e;
	--ak-panel:   #1a1a2a;
	--ak-border:  #2a2a40;
	--ak-accent:  #7c3aed;
	--ak-glow:    #a855f7;
	--ak-bright:  #c084fc;
	--ak-white:   #f0eeff;
	--ak-muted:   #8880aa;
	--ak-body:    #b0a8cc;
	--fn-display: 'Rajdhani', sans-serif;
	--fn-body:    'Exo 2', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	background: var(--ak-dark);
	font-family: var(--fn-body);
	color: var(--ak-white);
	overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
	font-family: var(--fn-display);
	color: var(--ak-white);
	letter-spacing: 0.03em;
}

p { color: var(--ak-body); line-height: 1.7; }

/* Grain overlay */
body::after {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 9999;
	opacity: 0.35;
}

/* ---- CONTAINER ---- */
.ak-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ---- GRADIENTS / UTILS ---- */
.ak-gradient-text {
	display: block;
	background: linear-gradient(135deg, var(--ak-glow) 0%, var(--ak-bright) 60%, #e879f9 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ak-em { color: var(--ak-bright); font-style: italic; }

/* ---- BUTTONS ---- */
.ak-btn-primary {
	display: inline-block;
	padding: 13px 34px;
	background: var(--ak-accent);
	color: #fff !important;
	font-family: var(--fn-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: none;
	cursor: pointer;
	clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
	transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.ak-btn-primary:hover {
	background: var(--ak-glow);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(168,85,247,0.35);
	color: #fff;
}

.ak-btn-outline {
	display: inline-block;
	padding: 12px 34px;
	background: transparent;
	color: var(--ak-bright) !important;
	font-family: var(--fn-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: 1px solid var(--ak-border);
	clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
	transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.ak-btn-outline:hover {
	border-color: var(--ak-glow);
	color: var(--ak-white) !important;
	transform: translateY(-2px);
}

.ak-btn-sm { padding: 10px 24px; font-size: 13px; }

/* ---- LABELS / HEADINGS ---- */
.ak-label {
	font-family: var(--fn-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--ak-glow);
	margin-bottom: 14px;
	display: block;
}

.ak-heading {
	font-family: var(--fn-display);
	font-size: clamp(30px, 5vw, 52px);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--ak-white);
	line-height: 1.1;
	margin: 0;
}

.ak-divider {
	width: 48px;
	height: 2px;
	background: linear-gradient(90deg, var(--ak-accent), transparent);
	margin: 20px 0 28px;
}
.ak-divider--center {
	background: linear-gradient(90deg, transparent, var(--ak-accent), transparent);
	width: 80px;
	margin-left: auto;
	margin-right: auto;
}

/* ---- SECTION WRAPPERS ---- */
.ak-section { padding: 120px 0; position: relative; overflow: hidden; }
.ak-section--dark { background: var(--ak-dark); }
.ak-section--mid  { background: var(--ak-mid); }

.ak-section-header { text-align: center; margin-bottom: 60px; }

/* ---- SCROLL REVEAL ---- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rv1 { transition-delay: 0.1s; }
.rv2 { transition-delay: 0.2s; }
.rv3 { transition-delay: 0.32s; }
.rv4 { transition-delay: 0.44s; }

/* ================================================
   STICKY HEADER
   ================================================ */
.ak-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	background: transparent;
	padding: 12px 0;
	transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.ak-header.scrolled {
	background: rgba(10,10,15,0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 2px 30px rgba(124,58,237,0.15);
	padding: 12px 0;
}

.ak-header.scrolled .ak-logo-img {
    height: 92px;
}

.ak-header-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ak-logo {
	font-family: var(--fn-display);
	font-size: 26px;
	font-weight: 700;
	color: var(--ak-white);
	text-decoration: none;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s;
}
.ak-logo span { color: var(--ak-glow); }
.ak-logo:hover { color: var(--ak-bright); text-decoration: none; }

.ak-nav {
	display: flex;
	gap: 36px;
	list-style: none;
	margin: 0; padding: 0;
}
.ak-nav a {
	font-family: var(--fn-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--ak-muted);
	text-decoration: none;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: color 0.2s;
	position: relative;
}
.ak-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px; left: 0; right: 0;
	height: 1px;
	background: var(--ak-glow);
	transform: scaleX(0);
	transition: transform 0.25s ease;
}
.ak-nav a:hover { color: var(--ak-white); }
.ak-nav a:hover::after { transform: scaleX(1); }

/* ---- LOGO IMAGE ---- */
.ak-logo-img {
	height: 92px;
	width: auto;
	display: block;
	transition: opacity 0.2s;
}
.ak-logo-img:hover { opacity: 0.85; }




/* ================================================
   HERO
   ================================================ */
.ak-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: var(--ak-dark);
}

.ak-hero-bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124,58,237,.18) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 20% 80%, rgba(168,85,247,.08) 0%, transparent 60%),
		radial-gradient(ellipse 40% 30% at 80% 20%, rgba(124,58,237,.06) 0%, transparent 50%);
}

.ak-hero-grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(124,58,237,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(124,58,237,.06) 1px, transparent 1px);
	background-size: 60px 60px;
	animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
	from { background-position: 0 0; }
	to   { background-position: 60px 60px; }
}

.ak-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.ak-particle {
	position: absolute;
	width: 2px; height: 2px;
	background: var(--ak-glow);
	border-radius: 50%;
	opacity: 0;
	animation: floatUp linear infinite;
}
@keyframes floatUp {
	0%   { transform: translateY(100vh) scale(0); opacity: 0; }
	10%  { opacity: 0.6; }
	90%  { opacity: 0.3; }
	100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.ak-hero-content {
	position: relative; z-index: 10;
	padding: 0 20px;
	animation: heroReveal 1.2s cubic-bezier(.16,1,.3,1) both;
}
@keyframes heroReveal {
	from { opacity: 0; transform: translateY(40px); }
	to   { opacity: 1; transform: translateY(0); }
}

.ak-eyebrow {
	font-family: var(--fn-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--ak-glow);
	margin-bottom: 24px;
	display: block;
	animation: heroReveal 1s 0.2s both;
}

.ak-hero-title {
	font-family: var(--fn-display);
	font-size: clamp(52px, 8vw, 96px);
	font-weight: 700;
	line-height: 1.0;
	color: var(--ak-white);
	margin: 0 0 12px;
	text-transform: uppercase;
	animation: heroReveal 1s 0.35s both;
}

.ak-hero-sub {
	font-size: clamp(15px, 2.5vw, 20px);
	color: var(--ak-muted);
	margin: 28px auto 48px;
	max-width: 520px;
	line-height: 1.6;
	animation: heroReveal 1s 0.5s both;
}

.ak-hero-cta {
	display: inline-flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	animation: heroReveal 1s 0.65s both;
}


/* ---- ENDGAME-STYLE HERO SLIDER ---- */

.hero-slider { border-bottom: 2px solid var(--ak-accent); }

.hero-item {
	height: 100vh;
	min-height: 640px;
	padding-top: 120px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
}

.ak-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		rgba(5, 2, 14, 0.82) 0%,
		rgba(10, 4, 28, 0.60) 50%,
		rgba(5, 2, 14, 0.30) 100%
	);
}

.hero-item .container {
	position: relative;
	z-index: 2;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
}

.ak-slide-tag {
	font-family: var(--fn-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--ak-glow);
	margin-bottom: 18px;
	display: block;
	position: relative;
	top: 80px;
	opacity: 0;
	transition: all 0.5s ease 0.2s;
}

.hero-item h2 {
	font-family: var(--fn-display);
	font-size: clamp(80px, 13vw, 160px);
	color: #fff;
	font-weight: 700;
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	position: relative;
	top: 100px;
	opacity: 0;
	transition: all 0.5s ease 0.4s;
	text-shadow: 0 4px 40px rgba(124,58,237,0.3);
	margin-bottom: 28px;
}

.hero-item p {
	font-size: clamp(14px, 1.8vw, 18px);
	color: rgba(255,255,255,0.55);
	font-weight: 400;
	line-height: 1.7;
	position: relative;
	top: 80px;
	opacity: 0;
	transition: all 0.5s ease 0.6s;
	max-width: 520px;
	margin-bottom: 48px;
}

.hero-item .site-btn img { width: 16px; opacity: 0.8; }

/* Dark button override for hero */
.site-btn {
	background: var(--ak-dark) !important;
	color: var(--ak-white) !important;
}
.site-btn:before { background: var(--ak-dark) !important; }
.site-btn:hover { color: var(--ak-white) !important; }

/* Animate in when slide is active */
.hero-slider .owl-item.active .ak-slide-tag,
.hero-slider .owl-item.active .hero-item h2,
.hero-slider .owl-item.active .hero-item p,
.hero-slider .owl-item.active .hero-item .site-btn {
	top: 0;
	opacity: 1;
}
.hero-slider .owl-item.active .ak-slide-tag  { transition: all 0.5s ease 0.2s; }
.hero-slider .owl-item.active .hero-item h2  { transition: all 0.5s ease 0.4s; }
.hero-slider .owl-item.active .hero-item p   { transition: all 0.5s ease 0.6s; }
.hero-slider .owl-item.active .hero-item .site-btn { transition: all 0.5s ease 0.8s; }

/* Owl nav arrow */
.hero-slider .owl-nav { margin-top: -24px; }
.hero-slider .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
	background: none !important;
	border: none;
	opacity: 0.7;
	transition: opacity 0.2s;
}
.hero-slider .owl-nav .owl-next:hover { opacity: 1; }
.hero-slider .owl-nav .owl-prev { display: none; }

/* Owl dots */
.hero-slider .owl-dots {
	display: flex;
	position: absolute;
	bottom: 38px;
	left: 40px;
	z-index: 2;
}
.hero-slider .owl-dots .owl-dot {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 600;
	font-family: var(--fn-display);
	border: 2px solid transparent;
	color: rgba(255,255,255,0.5);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.25s, border-color 0.25s;
	background: none !important;
}
.hero-slider .owl-dots .owl-dot.active {
	color: var(--ak-glow);
	border-color: var(--ak-glow);
}

.ak-scroll-hint {
	position: absolute;
	bottom: 40px; left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--ak-muted);
	font-family: var(--fn-display);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	animation: fadeUp 1s 1.2s both;
}
@keyframes fadeUp {
	from { opacity: 0; transform: translateX(-50%) translateY(12px); }
	to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.ak-mouse {
	width: 22px; height: 36px;
	border: 1px solid var(--ak-border);
	border-radius: 11px;
	display: flex; justify-content: center;
	padding-top: 7px;
}
.ak-mouse::before {
	content: '';
	width: 3px; height: 7px;
	background: var(--ak-glow);
	border-radius: 2px;
	animation: scrollWheel 1.6s ease infinite;
}
@keyframes scrollWheel {
	0%   { opacity: 1; transform: translateY(0); }
	100% { opacity: 0; transform: translateY(8px); }
}

/* ================================================
   ABOUT
   ================================================ */
#about::before {
	content: '';
	position: absolute;
	top: -100px; right: -200px;
	width: 600px; height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124,58,237,.07) 0%, transparent 70%);
	pointer-events: none;
}

.ak-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.ak-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 36px;
}

.ak-stat {
	background: var(--ak-panel);
	border: 1px solid var(--ak-border);
	padding: 22px 18px;
	clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
	transition: border-color 0.25s, transform 0.25s;
}
.ak-stat:hover { border-color: var(--ak-accent); transform: translateY(-3px); }

.ak-stat-num {
	font-family: var(--fn-display);
	font-size: 38px;
	font-weight: 700;
	color: var(--ak-glow);
	line-height: 1;
}
.ak-stat-label {
	font-size: 12px;
	color: var(--ak-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 5px;
}

.ak-about-card {
	background: var(--ak-panel);
	border: 1px solid var(--ak-border);
	padding: 50px 40px;
	clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
	text-align: center;
	position: relative;
}
.ak-about-card::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at center, rgba(124,58,237,.1), transparent 70%);
	pointer-events: none;
}
.ak-studio-icon {
	font-size: 72px;
	line-height: 1;
	margin-bottom: 20px;
	display: block;
}
.ak-studio-quote {
	font-family: var(--fn-display);
	font-size: clamp(22px, 3.5vw, 34px);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--ak-white);
	position: relative;
	line-height: 1.2;
}

/* ================================================
   GAMES
   ================================================ */
#games::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--ak-border), transparent);
}

.ak-games-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.ak-game-card {
	background: var(--ak-panel);
	border: 1px solid var(--ak-border);
	clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
	transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.ak-game-card:hover {
	border-color: var(--ak-accent);
	transform: translateY(-6px);
	box-shadow: 0 20px 60px rgba(124,58,237,.2);
}

.ak-game-header {
	background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(168,85,247,.05));
	padding: 44px 30px;
	display: flex;
	align-items: center;
	gap: 18px;
	border-bottom: 1px solid var(--ak-border);
}

.ak-game-icon {
	font-size: 48px;
	line-height: 1;
	flex-shrink: 0;
}

.ak-game-title {
	font-family: var(--fn-display);
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--ak-white);
	margin-bottom: 6px;
}

.ak-badge {
	display: inline-block;
	padding: 3px 10px;
	background: rgba(124,58,237,.2);
	border: 1px solid rgba(124,58,237,.4);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ak-bright);
	border-radius: 2px;
}

.ak-game-body {
	padding: 26px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ak-genre-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ak-glow);
}
.ak-genre-tag::before {
	content: '';
	width: 4px; height: 4px;
	background: var(--ak-glow);
	border-radius: 50%;
	flex-shrink: 0;
}

.ak-game-desc {
	color: #a09ac0;
	font-size: 14px;
	line-height: 1.7;
	flex: 1;
}

.ak-game-footer {
	padding: 0 30px 26px;
}

/* ================================================
   TRAILER
   ================================================ */
#trailer::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,58,237,.1) 0%, transparent 65%);
	pointer-events: none;
}

.ak-trailer-lead {
	max-width: 500px;
	margin: 0 auto;
}

.ak-video-wrapper {
	position: relative;
	max-width: 820px;
	margin: 48px auto 0;
	background: var(--ak-dark);
	border: 1px solid var(--ak-border);
	clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(124,58,237,.15);
}
.ak-video-wrapper::after {
	content: '';
	position: absolute; inset: 0;
	border: 1px solid rgba(168,85,247,.12);
	pointer-events: none;
	clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
}
.ak-video-wrapper iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	border: none;
}

/* ================================================
   CONTACT
   ================================================ */
.ak-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-top: 56px;
}

.ak-contact-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 22px;
	background: var(--ak-panel);
	border: 1px solid var(--ak-border);
	clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
	margin-bottom: 14px;
	transition: border-color 0.25s;
}
.ak-contact-item:hover { border-color: var(--ak-accent); }

.ak-contact-icon {
	width: 42px; height: 42px;
	background: rgba(124,58,237,.15);
	border: 1px solid rgba(124,58,237,.3);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	font-size: 17px;
	color: var(--ak-glow);
}
.ak-contact-label {
	font-family: var(--fn-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ak-muted);
	margin-bottom: 4px;
}
.ak-contact-value {
	font-family: var(--fn-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--ak-white);
}
.ak-contact-value a {
	color: var(--ak-white);
	text-decoration: none;
	transition: color 0.2s;
}
.ak-contact-value a:hover { color: var(--ak-bright); }

.ak-form-label {
	font-family: var(--fn-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ak-muted);
	display: block;
	margin-bottom: 8px;
}

.ak-input {
	width: 100%;
	background: var(--ak-panel);
	border: 1px solid var(--ak-border);
	color: var(--ak-white);
	font-family: var(--fn-body);
	font-size: 14px;
	padding: 13px 18px;
	margin-bottom: 18px;
	clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
	transition: border-color 0.25s;
	outline: none;
	display: block;
	resize: vertical;
}
.ak-input:focus { border-color: var(--ak-accent); }
.ak-input::placeholder { color: #3a3458; }

.ak-thanks {
	margin-top: 14px;
	color: var(--ak-glow);
	font-family: var(--fn-display);
	font-size: 14px;
	letter-spacing: 0.05em;
}

/* ================================================
   FOOTER
   ================================================ */
.ak-footer {
	background: var(--ak-mid);
	border-top: 1px solid var(--ak-border);
	padding: 48px 0 36px;
	text-align: center;
}
.ak-footer-logo {
	font-family: var(--fn-display);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ak-white);
	text-decoration: none;
	margin-bottom: 20px;
	display: inline-block;
}
.ak-footer-logo span { color: var(--ak-glow); }
.ak-footer-logo:hover { color: var(--ak-bright); text-decoration: none; }

.ak-footer-nav {
	display: flex;
	justify-content: center;
	gap: 30px;
	list-style: none;
	margin: 0 0 24px; padding: 0;
	flex-wrap: wrap;
}
.ak-footer-nav a {
	font-family: var(--fn-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ak-muted);
	text-decoration: none;
	transition: color 0.2s;
}
.ak-footer-nav a:hover { color: var(--ak-white); }

.ak-footer-copy {
	font-size: 13px;
	color: #4a4468;
	margin: 0;
}
.ak-footer-copy span { color: var(--ak-muted); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .ak-about-grid,
    .ak-games-grid,
    .ak-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .ak-nav { display: none; }
    .ak-hero-split { flex-direction: column; min-height: auto; flex: none; }
    .ak-hero-panel { flex: none !important; min-height: 260px; }

    .ak-header {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        padding: 14px 0;
        background: transparent;
        z-index: 1000;
    }

    .ak-header.scrolled {
        background: rgba(10,10,15,0.92);
        padding: 12px 0;
    }

    .ak-logo-img {
        height: 72px;
    }

    .hero-slider .owl-dots {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}


@media (max-width: 600px) {
	.ak-container { padding: 0 20px; }
	.ak-stats { grid-template-columns: 1fr 1fr; }
	.ak-hero-bottom-cta { flex-direction: column; align-items: center; }
	.ak-section { padding: 80px 0; }
	.ak-hero-panel { min-height: 220px; }
	.ak-logo-img { height: 72px; }

    .hero-slider .owl-dots {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

}



