/* Troxan Studios - Minimal Horror Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e6e6e6;
  background-color: #0d0d0d;
  line-height: 1.6;
  overflow-x: hidden;
}



.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* makes the video behave like a background image */
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* darkens video for text readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #b3b3b3;
}


.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 1rem;
  border-bottom: 1px solid #1a1a1a;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.content-section p {
  margin-bottom: 1rem;
  color: #ccc;
}

.media-placeholder {
  margin-top: 2rem;
  padding: 3rem;
  border: 1px dashed #444;
  text-align: center;
  color: #666;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #0b0b0b;
  color: #777;
  font-size: 0.9rem;
}

#game-gallery {
  padding: 40px;
  background: #111;
  color: #fff;
  text-align: center;
}

#game-gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row on big screens */
  }

  .gallery img {
    border-radius: 12px;
  }
}
