/* Reset & basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #ddd;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Header & Navbar */
header {
  background-color: #1f1f1f;
  padding: 20px 0;
  box-shadow: 0 3px 15px rgba(245,197,24,0.4);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f5c518;
  text-shadow: 0 0 12px #f5c518cc;
  user-select: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ddd;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.nav-links li a:hover,
.nav-links li a:focus {
  background-color: #f5c518;
  color: #121212;
  outline: none;
}

.btn-wa {
  background: linear-gradient(45deg, #f5c518, #ffd93b);
  color: #121212 !important;
  font-weight: 700;
  box-shadow: 0 0 15px #f5c518bb;
  user-select: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f5c518;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 70px 20px 50px 20px;
  background: linear-gradient(135deg, #1f1f1f 0%, #121212 100%);
  user-select: none;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f5c518;
  text-shadow: 0 0 20px #f5c518bb;
  margin-bottom: 20px;
}

.highlight {
  color: #ffeb3b;
  user-select: text;
}

.lead-text {
  color: #ddd;
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-image {
  width: 100%;
  max-width: 720px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(245,197,24,0.7);
  margin-bottom: 35px;
  user-select: none;
}

.detailed-text {
  max-width: 720px;
  margin: 0 auto 40px auto;
  font-size: 1.15rem;
  font-weight: 300;
  color: #ccc;
  line-height: 1.8;
}

/* Primary button */
.btn-primary {
  display: inline-block;
  background: linear-gradient(45deg, #f5c518, #ffde59);
  padding: 18px 60px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #121212;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 25px #f5c518cc;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  user-select: none;
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 50px #f5c518ff;
  transform: scale(1.1);
  outline: none;
}

/* Sections */
.section {
  background: #1f1f1f;
  padding: 60px 20px;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(245,197,24,0.25);
  user-select: none;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f5c518;
  margin-bottom: 20px;
  text-shadow: 0 0 12px #f5c518cc;
}

.section p {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto 30px auto;
  color: #bbb;
  line-height: 1.7;
}

/* Game list & image */
.game-list {
  list-style-type: disc;
  max-width: 720px;
  margin: 20px auto 40px auto;
  color: #ddd;
  font-size: 1.15rem;
  font-weight: 300;
  text-align: left;
  padding-left: 25px;
  line-height: 1.7;
  user-select: text;
}

.game-list li {
  margin-bottom: 14px;
}

.game-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(245,197,24,0.6);
  display: block;
  margin: 0 auto;
  user-select: none;
}

/* Footer */
.footer {
  background-color: #121212;
  color: #bbb;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  font-weight: 300;
  border-top: 2px solid #f5c518;
  user-select: none;
}

.footer a {
  color: #f5c518;
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1f1f1f;
    position: absolute;
    top: 80px;
    right: 0;
    width: 200px;
    border-radius: 0 0 0 10px;
    box-shadow: 0 15px 40px rgba(245,197,24,0.5);
  }

  .nav-links.nav-active {
    display: flex;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: right;
    padding-right: 20px;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 700px) {
  .container {
    width: 95%;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .lead-text,
  .detailed-text,
  .section p,
  .game-list {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 14px 40px;
    font-size: 1.1rem;
  }
}
