body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #00010B;
  color: #EEF0F2;
}

.list-title {
  color: #EE4266;
  font-weight: bold;
  text-decoration: none;
}
.list-title:visited {
  color: #EE4266;
}
.list-title:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

/* === Header === */
header {
  position: sticky;
  top: 0;
  padding: 1rem 0;
  background-color: rgb(0, 1, 11);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}


.logo-link:hover {
  color: #EE4266;
}

.logo {
  height: 48px;
  margin-right: 0.75rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .mini {
  font-size: 1.2rem;
  font-weight: bold;
}

.logo-text .studios {
  font-size: 0.9rem;
  color: #999;
}

nav a {
  margin-left: 1.5rem;
  color: #EEF0F2;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #EE4266;
}

/* === Sections === */

h1{
  color: #EE4266;
}

.white-h1{
  color: #EEF0F2;
}

.blog-head h1{ 
  margin-bottom: 0;
}

.blog-image{
  display: flex;
  justify-content: center;
}

.game-description h2 {
  color: #EE4266;
}

h2 {
  margin-top: 2rem;
  color: #EEF0F2;
}

/* === Featured Games === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.game-card {
  display: block;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.game-card img {
  width: 307px;
  height: 172px;
  border-radius: 6px;

}

.game-card:hover {
  transform: scale(1.02);

}

.game-frame-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.game-frame-wrapper iframe {
  max-width: 100%;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* === Blog Posts === */
.post-list {
  margin-top: 1rem;
}

.post-preview {
  margin-bottom: 1.5rem;
}

.post-preview h3 {
  margin: 0;
}

.post-preview p {
  color: #bbb;
}

/* === Footer === */
footer {
  padding: 2rem 0;
  text-align: center;
}

footer .about {
  margin-bottom: 1.5rem;
}

footer .socials a {
  margin: 0 0.5rem;
  color: #EEF0F2;
  text-decoration: none;
}

footer .socials a:hover {
  color: #EE4266;
}
