/* ===== RESET ===== */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #0a0a0a;
  color: #fff;
}

a {
  color: #ffcc00;
  text-decoration: none;
}

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

/* ===== HEADER ===== */
header.navbar {
  background: #1a1a1a;
  padding: 15px 0;
  border-bottom: 2px solid #ffcc00;
  display: flex;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  margin-right: 10px;
}

.site-title {
  font-size: 22px;
  color: #ffcc00;
}

nav {
  margin-left: auto;
}

nav a {
  margin-left: 20px;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: url('../img/bg-game.jpg') no-repeat center/cover;
  background-color: #111;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.highlight {
  color: #ffcc00;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 10px auto 40px;
  color: #ddd;
}

/* Tombol Daftar Besar */
.btn-daftar {
  display: inline-block;
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  color: #000;
  font-weight: bold;
  font-size: 22px;
  padding: 18px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
  transition: all 0.3s;
}

.btn-daftar:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ffdd33, #ffaa00);
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.6);
}

/* ===== ARTICLES ===== */
.articles {
  padding: 60px 0;
  background: #111;
}

.articles h3 {
  text-align: center;
  color: #ffcc00;
  font-size: 24px;
}

.articles ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 30px auto;
}

.articles li {
  background: #1a1a1a;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 4px solid #ffcc00;
  transition: background 0.3s;
}

.articles li:hover {
  background: #222;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
  color: #aaa;
  border-top: 1px solid #333;
}
/* ===== ABOUT SECTION ===== */
.about-section {
  background: #0f0f0f;
  padding: 60px 20px;
  line-height: 1.8;
}

.about-section h2 {
  text-align: center;
  color: #ffcc00;
  font-size: 30px;
  margin-bottom: 20px;
}

.about-section h3 {
  color: #ffcc00;
  margin-top: 30px;
}

.about-section p {
  font-size: 17px;
  color: #ddd;
}

.about-section ul {
  padding-left: 20px;
  color: #ccc;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}
/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #0b0b0b;
  padding: 60px 20px;
  color: #eee;
  text-align: center;
}

.contact-section h2 {
  color: #ffcc00;
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.contact-card {
  background: #1b1b1b;
  border: 1px solid #333;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.contact-card:hover {
  border-color: #ffcc00;
  transform: scale(1.03);
}

.contact-card h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.contact-link {
  color: #00bfff;
  text-decoration: none;
  font-weight: bold;
}

.contact-link:hover {
  text-decoration: underline;
}
/* ===== ARTICLE SECTION ===== */
.article-section {
  background: #0e0e0e;
  padding: 60px 20px;
  color: #ddd;
  line-height: 1.8;
}

.article-section h2 {
  color: #ffcc00;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.article-section h3 {
  color: #ffcc00;
  margin-top: 25px;
}

.article-section ul {
  padding-left: 25px;
  margin-top: 10px;
}

.article-section li {
  margin-bottom: 8px;
}

