body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
}
.container {
	max-width: 1000px;
	margin: 40px auto;
	padding: 2rem;
	background: #111;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	color: #fff;
}
h2 {
	text-align: center;
	margin-bottom: 1.5rem;
}
/* Horizontal pages tabs */
.featured-pages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	padding: 0 2rem;
	max-width: 100%; /* 1200px; */
	margin: 0 auto;
	margin-bottom: 4rem; /* Space between sections */
}

.featured-page-card {
	background: #111;
	border-radius: 0.5rem;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.featured-page-card img {
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
}

.featured-page-card h3 {
	margin-bottom: 1rem;
}

.featured-page-card p {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.featured-page-card a {
    display: block;
}

.featured-page-card button {
	margin-top: 1rem;
	background: var(--accent);
	border: none;
	color: var(--foreground);
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: background 0.3s;
}

.featured-page-card button:hover {
	background: #006edc;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem; /* optional for rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* match your card style */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.info-box {
	padding: 1rem;
	margin-bottom: 0.5rem;
	width: 100%;			
	background: #222;
	border-left: 5px solid #444;
	padding: 1rem;
	cursor: pointer;
	transition: background 0.2s;
}

.info-box:hover {
	background: #2a2a2a;
	border-left: 4px solid #007BFF;
}

.info-box.error {
	border-left-color: red;
}

.info-box.attention {
	border-left-color: yellow;
}

.info-box.success {
	border-left-color: green;
}

.back-button {
	width: 100%;
	padding: 0.75rem;
	background: #1e90ff;
	border: none;
	border-radius: 8px;
	color: white;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 1rem;
}

.back-button:hover {
	background: #147bd1;
}

a {
	color: #1e90ff;
	text-decoration: none;
}