body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0f0f0f;
  color: #f4f4f4;
}
a {
  color: #58f0d4;
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.site-header, .site-footer {
  background: #1a1a1a;
  padding: 20px 0;
  text-align: center;
}
.site-header nav a, .site-footer nav a {
  margin: 0 10px;
}
main {
  padding: 30px 0;
}
h1, h2 {
  color: #58f0d4;
}
.article-tile {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.newsletter input, .newsletter button {
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
}
.newsletter input {
  width: 200px;
}
.newsletter button {
  background: #58f0d4;
  color: #0f0f0f;
  font-weight: bold;
  cursor: pointer;
}.contact-form input, .contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #2a2a2a;
  color: #fff;
}
.contact-form button {
  background: #58f0d4;
  color: #000;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.hero {
  background: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.newsletter-signup input {
  padding: 12px;
  width: 300px;
  max-width: 90%;
  margin-right: 10px;
  border: none;
  border-radius: 4px;
}
.newsletter-signup button {
  padding: 12px 20px;
  background: #58f0d4;
  color: #0f0f0f;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.upcoming-games {
  padding: 40px 20px;
}
.game-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}
.game-card {
  background: #1e1e1e;
  padding: 15px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
}
.game-card img {
  max-width: 100%;
  border-radius: 8px;
}
.how-we-make-money {
  background: #141414;
  padding: 40px 20px;
  text-align: center;
}
.visual-highlights {
  padding: 40px 20px;
  text-align: center;
}
.visual-highlights .section-intro {
  margin-bottom: 20px;
  color: #ccc;
}
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.image-grid img {
  max-width: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.image-grid img:hover {
  transform: scale(1.05);
}
.privacy-policy {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
}
.privacy-policy h1, .privacy-policy h2 {
  color: #58f0d4;
}
.privacy-policy p, .privacy-policy li {
  line-height: 1.7;
  color: #e0e0e0;
}
.articles {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}
.articles .section-intro {
  margin-bottom: 30px;
  color: #ccc;
  font-size: 1.1em;
}
.article-list article {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.article-list article h2 a {
  color: #58f0d4;
  text-decoration: none;
}
.article-list article h2 a:hover {
  text-decoration: underline;
}
.article-list article p {
  color: #e0e0e0;
}
.grid-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
}
.tile {
  background: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
}
.tile:hover {
  transform: translateY(-5px);
}
.tile img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
}
.tile h2 {
  margin: 15px 10px 5px;
  font-size: 1.1em;
}
.tile h2 a {
  color: #58f0d4;
  text-decoration: none;
}
.tile p {
  margin: 5px 10px 15px;
  color: #ccc;
}