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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2rem;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  padding: 1rem;
}

span {
  font-weight: bold;
  font-style: italic;
}

.title {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  color: #ffffff;
}

h3 {
  color: #bb86fc;
  text-align: center;
  margin-bottom: 1rem;
}

h4 {
  color: #03dac6;
  margin-bottom: 0.5rem;
}

.sections {
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}

.sections section {
  margin-bottom: 2rem;
}

/* Table (Skills Section) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

td {
  vertical-align: top;
  padding: 1rem;
  border: 1px solid #2c2c2c;
}

.gameContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.game {
  background-color: #1e1e1e;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  padding: 1rem;
  width: 325px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}

.game:hover {
  transform: scale(1.03);
}

.game img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0;
}

.game a {
  color: #03dac6;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.game a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

footer a {
  color: #bb86fc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .game {
    width: 90%;
  }

  table {
    display: block;
    overflow-x: auto;
  }

  td {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #2c2c2c;
  }
}
