body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #F9F0F0;
}

hr {
  border-color: #3E0D23;
}

.container {
  max-width: 80%; /* Set the desired maximum width */
  margin: 0 auto; /* Center the container */
  padding: 0 20px; /* Add some padding on the sides */
}

.hero {
  background-color: white;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  color: #3E0D23;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #F90000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #3E0D23;
  color: #FFFFFF;
}
/* Existing CSS styles remain unchanged */

/* New styles for the game showcase section */
#game-section {
  background-color: #FFFFFF;
  text-align: center;
  padding: 50px 0;
}

.game-showcase {
  max-width: 800px;
  margin: 0 auto;
}

.game-showcase img {
  width: 100%;
  max-width: 600px;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.game-showcase img:hover {
  transform: scale(1.1);
  transition: 0.3s ease;
}

.game-showcase h2 {
  color: #3E0D23;
  font-size: 2em;
  margin-bottom: 10px;
}

.game-showcase p {
  color: #3E0D23;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.game-showcase .btn {
  background-color: #F90000;
  color: #FFFFFF;
}

.game-showcase .btn:hover {
  background-color: #3E0D23;
  color: #FFFFFF;
}
/* Overwiev */
article {
  font-size: 1em;
}
/* End overview */
/* Existing CSS styles remain unchanged */

.navbar {
  background-color: #333; /* Sample color */
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%;
  border-bottom: 5px solid #F90000;
  margin: 0 auto; /* Center the navbar */
}

.brand-link {
  color: #ECF0F1; /* Sample color */
  text-decoration: none;
  font-weight: bold;
  text-transform: capitalize; /* Adjusted text case */
  font-size: 1.5em;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: #ECF0F1; /* Sample color */
  text-decoration: none;
  font-weight: bold;
  text-transform: capitalize; /* Adjusted text case */
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #3498DB; /* Sample color on hover */
  opacity: 0.7;
}

/* Media query remains the same */


@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 1.5em;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #F90000;
    text-align: right;
    width: 100%;
    padding: 20px;
  }

  .nav-links li {
    margin: 15px 0;
  }
}

.footer {
  background-color: #3E0D23; /* Match the site's color scheme */
  color: #FFFFFF; /* Matching text color */
  text-align: center;
  padding: 20px 0;
}

.footer .footer-links {
  display: flex;
  justify-content: center;
}

.footer .footer-links a {
  color: #FFFFFF; /* Matching text color */
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
}

.counter {
  max-width: 1000px;
  margin: 0 auto;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.game-container {
  text-align: center;
  margin: 0 auto;
  max-width: 1000px; /* Adjust the max-width as needed */
  position: relative;
  padding-top: 20px;
}

iframe {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.fullscreen-btn {
  display: inline-block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #F90000; /* Match the button color */
  color: #FFFFFF; /* Matching text color */
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.fullscreen-btn:hover {
  background-color: #3E0D23; /* Color change on hover */
}

/* Blog Page specific styles */

.content {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

.blog-post {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #F9F0F0;
  border-radius: 5px;
}

.blog-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #3E0D23;
}

.blog-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.blog-text {
  line-height: 1.6;
  color: #333;
}

