body {
  margin: 0;
  height: 100vh;
  background: url('img/mainBackground.jpg') no-repeat center center/cover;
  font-family: Arial, sans-serif;
}

@font-face {
  font-family: 'MainMedium';
  src: url('fonts/MainMedium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.blur-background::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(8px);   
  z-index: -1;                   
}

.blur-panel {
  margin: 40px auto;
  width: 80%;
  max-width: 800px;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

h1 {
  margin: 0;
  font-size: 1.7em;
  font-weight: normal;
  letter-spacing: 1px;
  font-family: 'MainMedium', sans-serif;
}

h2 {
  margin: 0;
  font-weight: normal;
  font-family: 'MainMedium', sans-serif;
}

.choose-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.choose-btn {
  padding: 15px 30px;
  font-size: 1.2em;
  border: none;
  border-radius: 12px;
  background: #ffffff20;
  color: white;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 0.3s;
}

.choose-btn:hover {
  background: #ffffff40;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.modal.visible {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.game-option {
  display: block;
  margin: 15px auto;
  padding: 10px 25px;
  font-size: 1em;
  font-family: 'MainMedium', sans-serif;
  font-weight: 100;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.game-option:hover {
  background: rgba(255, 255, 255, 0.4);
}

.game-header {
  text-align: center;
  padding: 80px 0 40px;
  color: white;
  font-family: 'MainMedium', sans-serif;
}

.overview-section {
  text-align: center;
  color: white;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 30px;
}

.overview-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.screenshot-gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.screenshot-gallery img {
  width: 400px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.screenshot-gallery img:hover {
  transform: scale(1.05);
}

.download-section {
  text-align: center;
  margin: 60px 0 100px;
}

.download-btn {
  display: inline-block;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  font-family: 'MainMedium', sans-serif;
  transition: background 0.3s, transform 0.2s;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}