/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f6f7;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #fff;
  border-bottom: 2px solid #eee;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  font-size: 26px;
  font-weight: bold;
  color: #000;
}

header .logo span {
  color: #ffc107;
}

header nav a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: color 0.3s;
}

header nav a:hover {
  color: #ff4500;
}

/* Tombol Aksi */
.actions {
  text-align: center;
  margin: 20px 0;
}

.actions button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  margin: 0 10px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s;
}

.actions button:hover {
  transform: scale(1.05);
}

.actions .login {
  background: #007bff;
  color: #fff;
}

.actions .jackpot {
  background: #dc3545;
  color: #fff;
}

/* Konten Utama */
main {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

main h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

main p {
  margin-bottom: 15px;
}

main ul {
  margin: 15px 0;
  padding-left: 20px;
}

main ul li {
  margin-bottom: 10px;
}

/* Layout kiri-kanan */
.product-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.product-box .left {
  flex: 1;
}

.product-box .left img {
  max-width: 100%;
  border-radius: 8px;
}

.product-box .right {
  flex: 2;
}

/* Harga */
.price {
  font-size: 22px;
  font-weight: bold;
  color: #ff4500;
  margin-top: 15px;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  padding: 15px;
  background: #fff;
  border-top: 2px solid #eee;
  font-size: 14px;
  color: #666;
}
