/* ========== RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #d0f0ff;
  line-height: 1.6;
  font-size: 1rem;
}

a {
  color: #00ffe0;
  text-decoration: none;
}

a:hover {
  color: #ff00ff;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 350px;
  background-image: url('img/head.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: 2px solid #222;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
  pointer-events: none;
}

.hero-layer {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

.hero-layer .layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  height: auto;
  transition: transform 0.1s ease-out;
  will-change: transform;
  pointer-events: none;
}

.hero-layer .logo {
  max-width: 30%;
  top: 25%;
  left: 20%;
  z-index: 3;
}

.hero-layer .head {
  max-width: 60%;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 1;
}

.hero-layer .disp {
  max-width: 60%;
  top: 65%;
  left: 50%;
  z-index: 2;
}

@media (max-width: 600px) {
  .hero-layer .logo {
    max-width: 50%;
    top: 15%;
    left: 50%;
  }

  .hero-layer .disp {
    max-width: 60%;
    top: 75%;
  }
}

/* ========== NAVIGATION ========== */
.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #111;
  padding: 15px;
  border-bottom: 2px solid #222;
}

.nav a {
  font-weight: bold;
  font-size: 0.95rem;
}

/* ========== PAGE CONTAINER ========== */
#page-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* ========== CONTACT PAGE ========== */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #111;
  padding: 15px 25px;
  border-radius: 8px;
  border: 1px solid #222;
  transition: background 0.3s ease;
}

.contact-item:hover {
  background-color: #1a1a1a;
}

.contact-item img {
  display: block;
  width: 70px;
  height: auto;
}

.contact-item span {
  font-size: 1.1rem;
  color: #00ffe0;
  font-weight: bold;
}

@media (max-width: 500px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== SUPPORT PAGE ========== */
.support-item {
  text-align: center;
  margin-bottom: 40px;
}

.support-item p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #00ffe0;
  color: #000;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.support-btn:hover {
  background-color: #ff00ff;
  color: #fff;
}

.support-btn img {
  width: 70px;
  height: auto;
  border-radius: 4px;
}

.support-btn span {
  font-size: 1.1rem;
}

@media (max-width: 500px) {
  .support-btn {
    flex-direction: column;
  }
}

/* ========== ABOUT PAGE ========== */
.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #d0f0ff;
}

.about-text p {
  margin-bottom: 1.5em;
}

.about-text strong {
  color: #00ffe0;
  font-weight: bold;
}

/* ========== OUR GAMES SECTION ========== */
#ourgames {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

#ourgames h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 30px;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.game-card {
  flex: 1 1 500px;
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #222;
  box-shadow: 0 0 10px rgba(0, 255, 224, 0.05);
}

.game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
  border: 1px solid #333;
}

.game-info p {
  margin-bottom: 1em;
  color: #d0f0ff;
  font-size: 1rem;
}

.game-info cite {
  font-style: normal;
  color: #00ffe0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .games-grid {
    flex-direction: column;
    gap: 20px;
  }
}



/* ========== FEATURE LIST ========== */
.features {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
}

.features li {
  margin: 5px 0;
  color: #aefaff;
}

/* ========== BUTTONS ========== */
.buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  background-color: #00ffe0;
  color: #000;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
}

.btn:hover {
  background-color: #ff00ff;
  color: #fff;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #111;
  color: #666;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}
/* ========== PARALLAX LOGO LAYER ========== */
.disp-tag {
  max-width: 60%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: transform 0.1s ease-out;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 600px) {
  .disp-tag {
    max-width: 80%;
  }
}
.news-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #00ffe0;
  color: #000;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.news-btn:hover {
  background-color: #ff00ff;
  color: #fff;
}

.news-btn img {
  width: 70px;
  height: auto;
  border-radius: 4px;
}

.news-btn span {
  font-size: 1.1rem;
}
.news-item {
  margin-bottom: 1.5rem;
}
.news-item h3 {
  margin: 0.2em 0;
}
.news-item small {
  color: #888;
  font-size: 0.9em;
}
