/* Game Aggregator Pro — frontend styles */

.kpgame-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.kpgame-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 2px solid #E7E2D6;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: #22314A;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kpgame-card:hover {
	text-decoration: none;
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(34,49,74,0.12);
}

.kpgame-card-media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #FFFCF5;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.kpgame-card-media img { width: 100%; height: 100%; object-fit: cover; }
.kpgame-card-placeholder { font-size: 2.4rem; }

.kpgame-play-badge {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: #FF6B6B;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
}

.kpgame-card-title {
	padding: 12px 14px;
	font-weight: 700;
	font-size: 0.95rem;
}

.kpgame-empty { color: #55617A; font-style: italic; }

/* Player page */
.kpgame-player-wrap {
	max-width: 960px;
	margin: 0 auto;
	padding: 24px;
}

.kpgame-player-title {
	font-family: "Fredoka", sans-serif;
	margin-bottom: 16px;
}

.kpgame-player-frame {
	position: relative;
	width: 100%;
	padding-top: var(--kpgame-ratio, 75%);
	border-radius: 18px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 10px 24px rgba(34,49,74,0.15);
}
.kpgame-player-frame iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	border: 0;
}

.kpgame-player-description {
	margin-top: 24px;
	line-height: 1.7;
}

.kpgame-back-link {
	display: inline-block;
	margin-top: 24px;
	font-weight: 700;
}
