/* Reset */
* { margin:0; padding:0; box-sizing:border-box; font-family: "Segoe UI", sans-serif; }

body { background:#111; color:#fff; line-height:1.6;  position: relative; min-height: 100vh;
  overflow-x: hidden;}
body::before {
  content: "";
  position: fixed;      /* covers the whole viewport */
  top: 0;
  left: 0;
  width:100%;
  height: 100%;
  scale:4;
  background-size: contain; /* keeps its proportions */
  /* transform: translate(-50%, -50%); */
  margin: auto;
  background: url("images/logo_path.svg")  no-repeat center  ;
  opacity: 0.3;         /* semi-transparent */
  z-index: -1;          /* stays behind content */
}
/* Navbar */
.navbar {
  display:flex; justify-content:space-between; align-items:center;
  padding:5px 20px; background:rgba(0,0,0,0.95);

  position:fixed; width:100%; top:0; z-index:1000;
}
.games    { background:#111; }
.services { background:#1a1a1a; }
.contact  { background:#111; }
.logo { font-size:1.5rem; font-weight:bold; color:#ff2b2b;}
.nav-links { list-style:none; display:flex; gap:30px; font-size: 1.6rem; }
.nav-links a { color:#fff; text-decoration:none; font-weight:500; transition:0.3s; }
.nav-links a:hover {
  color:#ff2b2b;
  text-shadow:0 0 6px #ff2b2b, 0 0 15px #ff5555;
}
.logo img{
 width: 12rem; 
}
.btn {
  background: #ff2b2b;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: #e02222;
  transform: translateY(-2px);
}

/* Hero */
.hero {
  height:100vh;
  background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.8)),
    url("https://images.unsplash.com/photo-1605902711622-cfb43c4437d5") center/cover;
  display:flex; flex-direction:column;
}
.hero-content { margin:auto; text-align:center; max-width:700px; }
.hero h1 { font-size:3.5rem; margin-bottom:20px; }
.hero p { margin-bottom:30px; font-size:1.3rem; color:#ddd; }

/* Neon Buttons (hover only glow) */
.neon-btn {
  background:#ff2b2b; color:#fff;
  padding:12px 25px; border-radius:50px; border:none;
  font-size:1rem; cursor:pointer; transition:0.3s;
  text-decoration:none; display:inline-block;
}
.neon-btn:hover {
  background:#e02222;
  box-shadow:0 0 8px #ff2b2b, 0 0 20px #ff2b2b;
  transform:translateY(-2px);
}

/* Section Styling */
.section { padding:100px 10%; text-align:center; position:relative; }
.section h2 { margin-bottom:40px; font-size:2.5rem; color:#ff2b2b; }

/* Cards */
.card-container { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:30px; }
.card {
  background:#1a1a1a; padding:20px; border-radius:12px;
  box-shadow:0 6px 12px rgba(0,0,0,0.4);
  transition:transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform:translateY(-8px);
  box-shadow:0 0 12px #ff2b2b, 0 0 25px #ff2b2b;
}
.card img { border-radius:10px; width:100%; margin-bottom:15px; }
.card ul {
  text-align:left;
  margin:15px 0;
  padding-left:20px;
  color:#ddd;
}
.card ul li {
  margin-bottom:8px;
  list-style: disc;
}

/* "Learn More" button at bottom */
.card .neon-btn {
  margin-top:15px;
  display:inline-block;
}
/* Contact */
.contact-form { display:flex; flex-direction:column; max-width:500px; margin:30px auto 0; gap:15px; }
.contact-form input,.contact-form textarea {
  padding:12px; border:none; border-radius:8px; font-size:1rem;
}
.contact-form input:focus,.contact-form textarea:focus {
  outline:none;
  box-shadow:0 0 8px #ff2b2b, 0 0 15px #ff5555;
}
.contact-form textarea { resize:none; height:120px; }

/* Wave Dividers */
.wave svg {
  display:block;
  width:100%;
  height:120px;
}
.wave path {
  stroke:none;
  fill:#111; /* Match body background so waves look natural */
}
.wave.flip path {
  fill:#1a1a1a; /* Match section color */
}
/* Carousel container */
.game-carousel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}

/* Game card wrapper (scroll area) */
.game-container {
  display: flex;
  gap: 20px; /* smaller gap */
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}
.game-container::-webkit-scrollbar { display: none; } /* hide scrollbar */

/* Individual game cards */
.game-card {
  min-width: 400px; /* bigger width */
  max-width: 450px;
  background:#1a1a1a;
  border-radius:15px;
  padding:20px;
  box-shadow:0 6px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink:0;
  height: 20rem;;
}
.game-card:hover {
  transform:translateY(-8px);
  box-shadow:0 0 12px #ff2b2b, 0 0 25px #ff2b2b;
}
.game-card img {
  width:100%;
  border-radius:10px;
  margin-bottom:15px;
}

/* Scroll buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,43,43,0.8);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
}
.scroll-btn:hover {
  background:#ff2b2b;
  box-shadow:0 0 8px #ff2b2b, 0 0 20px #ff2b2b;
}
.scroll-btn.left { left: 10px; }
.scroll-btn.right { right: 10px; }
.social-media {
  text-align: center;
  padding: 50px 20px;
  background: #111;
}

.social-media h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #fff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  background: #1a1a1a;
  box-shadow: 0 0 8px #ff2b2b inset;
  transition: all 0.3s ease;
}

/* Hover glow */
.social-btn:hover {
  background: #ff2b2b;
  box-shadow: 0 0 12px #ff2b2b, 0 0 25px #ff2b2b;
  transform: translateY(-5px);
}

/* Optional unique accent colors if you want */
.twitter:hover  { background: #1DA1F2; box-shadow: 0 0 12px #1DA1F2, 0 0 25px #1DA1F2; }
.facebook:hover { background: #1877F2; box-shadow: 0 0 12px #1877F2, 0 0 25px #1877F2; }
.instagram:hover{ background: #E1306C; box-shadow: 0 0 12px #E1306C, 0 0 25px #E1306C; }
.youtube:hover  { background: #FF0000; box-shadow: 0 0 12px #FF0000, 0 0 25px #FF0000; }
.discord:hover  { background: #5865F2; box-shadow: 0 0 12px #5865F2, 0 0 25px #5865F2; }

/* Footer */
footer { background:#000; text-align:center; padding:20px; color:#888; font-size:0.9rem; }
