@import url(../default.css);

body {
	background-color: var(--bg);
	color: var(--text);
	font-family: 'VCR OSD Mono', monospace;
	margin: 0;
	padding: 0;
}

.page-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 200px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--panel);
  overflow: hidden;
  padding: 24px;
  box-sizing: border-box;
  overflow: clip;
  font-size: 3.5em;
  margin: 40px 0 20px 0;
}

.page-title {

	color: var(--accent);
	text-align: center;
	margin: 10px 0 24px;
	letter-spacing: 1px;
}

.page-description {
    color: var(--text);
    text-align: center;
    margin: 0 0 32px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.games-page {
	max-width: 65%;
	margin: 0 auto;
	padding: 32px 20px 48px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: var(--panel);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 12px;
	align-items: start;
}

.game-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(12, 12, 18, 0.65);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	padding: 0;
	font: inherit;
	color: inherit;
}

.game-btn img {
	width: 80px;
	height: 120px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

.game-btn:hover,
.game-btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 10px 16px rgba(0, 0, 0, 0.35);
	outline: none;
}

.game-details {
	margin-top: 24px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	background: rgba(12, 12, 18, 0.7);
	padding: 18px 20px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.details-title {
	margin: 0 0 10px;
	color: var(--accent);
	letter-spacing: 0.6px;
}

.details-meta {
	display: flex;
	gap: 8px;
	margin-bottom: 6px;
	font-size: 0.95em;
}

.details-label {
	color: var(--accent2);
}

.details-notes {
	margin: 12px 0 0;
	line-height: 1.4;
}