/* ===============================
   EXARPLAY FUTURISTIC THEME
   =============================== */

/* GENERAL */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #fff;
  background: url("./img/bg-main.png") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}


/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(11, 11, 11, 0.85);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  width: 45px;
}

.logo h1 {
  font-size: 1.4rem;
  color: #c94bff; /* Futuristic purple */
}

nav a {
  margin-left: 25px;
  color: #cfcfcf; /* Softer gray */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

nav a:hover {
  color: #ff5f6d; /* Neon pink hover glow */
  transform: scale(1.08);
}

/* HERO SECTION - LEFT BG IMAGE, RIGHT TRANSPARENT */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* keep text on left */
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 60%, transparent 100%), 
              url("./img/bg-text.png"); /* ✅ left image area */
  background-size: cover;
  background-position: left center; /* align image to left */
  background-repeat: no-repeat;
  background-attachment: fixed; /* keeps it stable on scroll */
  padding-left: 10%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 40px 20px;
}

.hero-content h2 {
  background: linear-gradient(270deg, #c94bff, #ff5f6d, #ffd166);
  background-size: 1200% 1200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  font-weight: 700;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-content h3 {
  font-size: 1.8rem;
  color: #ffd166;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 25px;
}


@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* BUTTONS */
.btn {
  background: linear-gradient(135deg, #7a1fff, #ff5f6d);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 12px rgba(255, 95, 109, 0.5);
}

.btn:hover {
  background: linear-gradient(135deg, #8b3dff, #ff7683);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 95, 109, 0.8);
}

/* SECTIONS */
.section {
  text-align: center;
  padding: 80px 30px;
  background: rgba(11, 11, 11, 0.6);
  backdrop-filter: blur(8px);
}

.section h2 {
  color: #ff5f6d; /* Neon pink */
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section p {
  color: #e0e0e0;
}

/* GAME SECTION */
.game-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.game-info {
  max-width: 800px;
  text-align: center;
}

.game-info h3 {
  color: #ffd166; /* Gold for subheadings */
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.game-info p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* SCREENSHOT SCROLL */
.screenshot-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px;
  scroll-snap-type: x mandatory;
  width: 90%;
  max-width: 900px;
}

.screenshot-scroll img {
  width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  scroll-snap-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.screenshot-scroll img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 95, 109, 0.7);
}

/* VIDEO CONTAINER */
.video-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
}

.video-thumb {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.video-thumb:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: #ffd166;
  text-shadow: 0 0 20px rgba(255, 95, 109, 0.8);
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-container:hover .play-icon {
  opacity: 0.8;
}

.video-player {
  display: none;
  width: 100%;
  border-radius: 12px;
}
/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(to bottom, #0c001a, #000);
  color: #e0e0e0;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Optional futuristic background glow */
.contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(201, 75, 255, 0.08), transparent 70%);
  z-index: 0;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-item {
  flex: 1 1 300px;
  max-width: 340px;
}

.contact-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #ff5f6d;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background: linear-gradient(135deg, #c94bff, #ff5f6d);
  color: #fff;
  transform: scale(1.05);
}

.contact-item h3 {
  color: #ffd166;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-item p {
  line-height: 1.6;
  color: #cfcfcf;
  font-size: 0.95rem;
}

.contact-item a {
  color: #c94bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ff5f6d;
}

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


/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0b0b0b;
  color: #cfcfcf;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
