* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0;
  border-bottom: 1px solid #333;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 75px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #00ff41;
}

.auth-btn {
  background: #00ff41;
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 3px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: #008512;
  transform: translateY(-1px);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: 10px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #00ff41;
  border-radius: 2px;
  display: block;
  transition: transform .3s ease;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: left 0.8s cubic-bezier(.2, .9, .3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  left: 0;
}

.carousel-slide.prev {
  left: -100%;
}

.carousel-indicators {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1200;
}

.indicator {
  width: 10px;
  height: 10px;
  background: #666;
  border-radius: 50%;
  transition: all .35s ease;
  cursor: pointer;
}

.indicator.active {
  width: 34px;
  background: #00ff41;
  border-radius: 6px;
}

/* Reuse original hero styles inside slide */
.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: bold;
  color: #00ff41;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
}

.hero-title-dp {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
}

.btn-primary {
  background: #00ff41;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: all 0.3s ease;
  border: 2px solid #00ff41;
}

.btn-primary:hover {
  background: transparent;
  color: #00ff41;
  transform: translateY(-2px);
}


.btn-secondary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
/* Background layer (same as original hero background) */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%23111"/><circle cx="960" cy="540" r="300" fill="%23fcaf17" opacity="0.1"/><circle cx="1400" cy="300" r="150" fill="%23ff6b35" opacity="0.05"/><circle cx="500" cy="800" r="200" fill="%23fcaf17" opacity="0.08"/></svg>');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Games Section (original) */
.games-section {
  padding: 80px 20px;
  background: #111111;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #00ff41;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.game-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #00ff41;
  box-shadow: 0 10px 30px rgba(252, 175, 23, 0.2);
}

.game-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #00ff41, #008512);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  position: relative;
  overflow: hidden;
}

.game-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.game-card:hover .game-image::before {
  left: 100%;
}

.game-info {
  padding: 25px;
}

.game-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.game-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.game-btn {
  background: #00ff41;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: all .3s ease;
  display: inline-block;
}

.game-btn:hover {
  background: #e99d0a;
  transform: translateX(5px);
}

/* News Section */
.news-section {
  padding: 80px 20px;
  background: #0a0a0a;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s ease;
  border: 1px solid #333;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: #00ff41;
}

.news-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #333, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff41;
  font-size: 1.2rem;
  font-weight: bold;
}

.news-content {
  padding: 20px;
}

.news-date {
  color: #00ff41;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.news-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-excerpt {
  color: #cccccc;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: #000;
  padding: 50px 20px 30px;
  border-top: 1px solid #333;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #00ff41;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .3s ease;
}

.footer-section ul li a:hover {
  color: #00ff41;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #666666;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.social-links img {
  width: 20px;
}

.social-links a {
  color: #00ff41;
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform .3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

/* Modal / Auth */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 2200;
}

.modal .modal-inner {
  background: #111;
  padding: 26px;
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.modal h2 {
  text-align: center;
  color: #00ff41;
  margin-bottom: 12px;
}

.modal input,
.modal select {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  background: #222;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
}

.modal .primary {
  background: #00ff41;
  color: #000;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}

.modal .secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

.modal .socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.modal .socials button {
  padding: 10px;
  border-radius: 6px;
  background: #222;
  color: #fff;
  border: 1px solid #333;
  cursor: pointer;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 12px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    right: 10px;
    background: #0b0b0b;
    padding: 14px;
    flex-direction: column;
    gap: 12px;
    border-radius: 6px;
    border: 1px solid #222;
    width: calc(100% - 40px);
    max-width: 320px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .games-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .modal .socials {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}