body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #fff;
}
header {
    background: #000;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
header h1 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}
nav a {
    color: #f1c40f;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.artikel-isi {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  line-height: 1.8;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.artikel-isi img {
  max-width: 100%;
  border-radius: 10px;
}
.hero {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-bottom: 4px solid #ffeb3b;
}
.hero h2 {
    margin-top: 0;
    font-size: 36px;
}
.cta-buttons {
    text-align: center;
    margin: 30px 0;
}
.cta-buttons a {
    font-size: 18px;
    padding: 14px 26px;
    margin: 10px;
    background: #ffeb3b;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: inline-block;
    transition: 0.3s;
}
.cta-buttons a:hover {
    background: #ffc107;
}
.banner {
    margin: 30px auto;
    max-width: 1000px;
}
.banner img {
    width: 100%;
    border-radius: 12px;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}
.feature-box {
    background: #1c1c1c;
    padding: 20px;
    width: 250px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,193,7,0.3);
}
.feature-box h3 {
    color: #f1c40f;
    margin-bottom: 10px;
}
footer {
    background: #1b1b1b;
    color: #aaa;
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid #333;
    margin-top: 40px;
}
/* Responsive Hide Mobile */
.hide-mobile {
  display: inline-block;
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* Header */
header {
  background: #1e1e2f;
  color: white;
  padding: 15px 10px;
  text-align: center;
}
header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
}
header nav a:hover {
  color: #3b82f6;
}

/* Hero Section */
.hero {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}
.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #007bff;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #444;
}

/* Button */
.btn-premier-login {
  padding: 12px 30px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
}
.btn-premier-login:hover {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #1e1e2f;
  color: #ccc;
  padding: 20px 10px;
  text-align: center;
}
footer nav a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}
footer nav a:hover {
  color: #3b82f6;
}

/* Sembunyikan elemen dengan class 'hide-mobile' di layar kecil */
@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}