/* Pkpkplay Styles (aligned to Pkpkplay structure) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
	/* Colors */
	--header-bg: #212121;
	--bg-color: #413826;
	--accent-color: #ffdb00;
	--text-color: #ffffff;
	--text-dark: #1f1f1f;
	--text-light: #10131b;

	/* Buttons */
	--secondary-btn-bg: #ffffff;
	--secondary-btn-color: #1f1f1f;
	--primary-btn-bg: #ffdb00;
	--primary-btn-color: #10131b;

	/* Layout */
	--container-max: 1200px;
	--section-padding: 4rem 0;
	--border-radius: 0.5rem;

	/* Typography */
	--font-primary: 'Inter', sans-serif;
	--h1-size: 2.5rem;
	--h2-size: 2rem;
	--h3-size: 1.5rem;
	--body-size: 1rem;
	--small-size: 0.875rem;
}

/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header */
header {
	background-color: var(--header-bg);
	padding: 1rem;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
    max-width: unset;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	height: 30px;
	width: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
}

.nav-menu a {
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s ease;
	padding: 0.5rem 0;
}

.nav-menu a:hover {
	color: var(--accent-color);
}

/* Active page indicator */
.nav-menu a.active {
	color: var(--accent-color);
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 0.5rem;
}

.auth-buttons {
	display: flex;
	align-items: center;
}

.auth-buttons .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	min-height: 44px;
}

.auth-buttons .btn-secondary {
	clip-path: polygon(0 0, 100% 0, 5rem 100%, 0 100%);
	border-radius: 0.5rem 0 0 0.5rem;
	background-color: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
}

.auth-buttons .btn-primary {
	color: var(--primary-btn-color);
	border-radius: 0 0.5rem 0.5rem 0;
	background: var(--primary-btn-bg);
	padding-left: 1.75rem;
	margin-left: -0.5rem;
	clip-path: polygon(1.4rem 0, 100% 0, 100% 100%, 0 100%);
}

.auth-buttons .btn:hover {
	transform: translateY(-2px);
	color: var(--primary-btn-color);
	box-shadow: 0 4px 15px rgba(255, 219, 0, 0.3);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-color);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero & Sections */
.hero {
	padding: var(--section-padding);
	text-align: center;
	background: linear-gradient(135deg, var(--bg-color) 0%, #2a1f14 100%);
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(45deg, var(--accent-color), #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.section {
	padding: var(--section-padding);
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	color: var(--accent-color);
}

/* Cards, Grid, Tables */
.card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius);
	padding: 2rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 219, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 219, 0, 0.2);
}

.grid {
	display: grid;
	gap: 2rem;
	margin: 2rem 0;
}

.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.table-container {
	overflow-x: auto;
	margin: 2rem 0;
	border-radius: var(--border-radius);
	background: rgba(255, 255, 255, 0.1);
}

table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

th,
td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 219, 0, 0.2);
}

th {
	background: rgba(255, 219, 0, 0.1);
	font-weight: 600;
	color: var(--accent-color);
}

tr:hover {
	background: rgba(255, 219, 0, 0.05);
}

/* Footer */
footer {
	background-color: var(--header-bg);
	padding: 3rem 0 1rem;
	margin-top: 4rem;
	border-top: 2px solid var(--accent-color);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: var(--accent-color);
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: var(--text-color);
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: var(--accent-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 219, 0, 0.2);
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
}

.payment-methods {
	display: flex;
	justify-content: start;
	gap: 1rem;
	margin: 1rem 0;
	flex-wrap: wrap;
}

.payment-methods i {
	font-size: 2rem;
	color: var(--accent-color);
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.payment-methods i:hover {
	opacity: 1;
}

/* Utilities */
.cta-button {
	padding: 10px 15px;
	border-radius: var(--border-radius);
	font-weight: 700;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	min-height: 44px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.cta-button-primary {
	background: linear-gradient(45deg, var(--accent-color), #ffd700);
	color: var(--text-light);
}

.cta-button-secondary {
	background: var(--secondary-btn-bg);
	color: var(--secondary-btn-color);
}

.cta-button:hover {
	transform: translateY(-3px);
	color: var(--text-light);
	box-shadow: 0 6px 20px rgba(255, 219, 0, 0.4);
}

/* Typography helpers */
.lead {
	font-size: 1.125rem;
	opacity: 0.9;
	margin: 1rem 0 1.25rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Links */
a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #fff;
}

/* Hero CTA group */
.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

/* Lists */
ul,
ol {
	margin: 0;
	list-style: none;
	padding: 0;
}

ul li,
ol li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Image helper */
.section-image {
	width: 100%;
	border-radius: var(--border-radius);
	margin: 1rem 0;
}

/* Banner */
.banner {
	padding: 0 15px;
	min-height: 200px;
}

.banner .container {
	max-width: 1200px;
	padding: 0;
	margin: 2rem auto;
}

.banner picture,
.banner img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0;
}


/* Reviews */
.review-stars{
	color: var(--accent-color);
	font-size: 1rem;
	line-height: 1;
	display: flex;
	gap: 2px;
	justify-content: center;
	margin-bottom: .5rem;
}

.grid.container {
    margin: 2rem auto !important;
}

/* Responsive */
@media (max-width: 1300px) {
	nav {
		display: none;
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		background-color: var(--header-bg);
		padding: 1rem;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	}

	nav .nav-menu {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	nav.active {
		display: block;
	}

	.mobile-menu-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	:root {
		--h1-size: 2rem;
		--h2-size: 1.5rem;
		--h3-size: 1.25rem;
		--section-padding: 2rem 0;
	}

	.card {
		padding: 20px 15px;
	}

	.logo {
		height: 30px;
	}

	.container {
		padding: 0 0.5rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}

	.table-container {
		overflow-x: scroll;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.header-content {
		flex-wrap: wrap;
	}

	.auth-buttons {
		width: 100%;
		order: 3;
		justify-content: center;
	}

	.container {
		padding: 0 0.25rem;
	}

}
