body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background-color: #0d0d0d;
  color: #fff;
}

nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px 40px;
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e60000;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}
h1 {
  font-size: 3.5rem;
  color: #e60000;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #009900;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  text-shadow: 0 0 10px #000000;
  margin-bottom: 30px;
}

.btn {
  background-color: #009900;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e60000;
}
#games {
  padding: 60px 20px;
  text-align: center;
}

#games h2 {
  font-size: 2rem;
  color: #ffd700; /* arany */
  margin-bottom: 30px;
  text-shadow: 0 0 10px #e60000;
}

.game-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.game-logos img {
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.game-logos img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}
/* Videó háttér */
/* Videó háttér alapértelmezés (desktop) */
.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay a videó fölött */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

/* Hero tartalom */
header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Videó háttér alapértelmezés (desktop) */
.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay a videó fölött */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); /* sötétítés */
  z-index: -1;
}

/* Hero tartalom */
header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Mobilon videó elrejtése, kép használata */
@media screen and (max-width: 768px) {
  .bg-video {
    display: none; /* videó kikapcsolása */
  }

  header {
    background: url('../images/bg.jpg') center/cover no-repeat; /* fix kép */
  }
}