* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #0d0d12;
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 14px;
}
a { color: #f5c542; text-decoration: none; }
a:hover { color: #ffd966; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  background: linear-gradient(180deg, #1a1a24 0%, #14141c 100%);
  border-bottom: 2px solid #f5c542;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.logo {
  font-size: 26px;
  font-weight: 900;
  color: #f5c542;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #f5c542 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.main-nav a {
  color: #d8d8d8;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.main-nav a:hover, .main-nav a.active {
  background: #f5c542;
  color: #1a1a24;
}
.auth-buttons { display: flex; gap: 8px; }
.btn {
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}
.btn-login {
  background: transparent;
  color: #f5c542;
  border: 1.5px solid #f5c542;
}
.btn-register {
  background: linear-gradient(90deg, #ff6b35 0%, #f5c542 100%);
  color: #1a1a24;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(245,197,66,0.4); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1f1530 0%, #2b1a3e 50%, #1a1a24 100%);
  padding: 30px 16px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(245,197,66,0.15), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,107,53,0.12), transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 1100px; margin: 0 auto; }
.hero h1 {
  font-size: 32px;
  color: #ffd966;
  margin-bottom: 12px;
  font-weight: 900;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
.hero p {
  font-size: 15px;
  color: #cfcfcf;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-banner {
  margin: 18px auto;
  border-radius: 8px;
  overflow: hidden;
  max-width: 700px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  max-width: 800px;
  margin: 24px auto 0;
}
.stat-box {
  background: rgba(245,197,66,0.08);
  border: 1px solid rgba(245,197,66,0.3);
  border-radius: 6px;
  padding: 14px 10px;
}
.stat-num { font-size: 22px; font-weight: 900; color: #f5c542; display: block; }
.stat-label { font-size: 12px; color: #b0b0b0; margin-top: 4px; }

/* Section base */
section { padding: 36px 16px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: 13px;
  color: #f5c542;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 4px solid #f5c542;
  padding-left: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.view-all {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* Hot Game Hall */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.game-card {
  background: #1a1a24;
  border: 1px solid #2a2a36;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.game-card:hover { transform: translateY(-4px); border-color: #f5c542; }
.game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.game-card .game-name {
  padding: 8px 6px;
  font-size: 12px;
  color: #d0d0d0;
  text-align: center;
  background: #14141c;
  font-weight: 600;
}
.tag-jili {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #ff6b35;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 700;
}

/* Fish Shooting Section */
.feature-section {
  background: linear-gradient(135deg, #142028 0%, #0d1820 100%);
  border-radius: 10px;
  padding: 24px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
}
.feature-side h3 {
  font-size: 22px;
  color: #ffd966;
  margin-bottom: 12px;
  font-weight: 900;
}
.feature-side p { font-size: 13px; color: #b8b8b8; margin-bottom: 14px; }
.feature-side .btn-enter {
  background: #f5c542;
  color: #1a1a24;
  padding: 8px 28px;
  border-radius: 4px;
  font-weight: 800;
  display: inline-block;
}
.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}

/* Casino */
.casino-banner {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.casino-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.casino-card {
  background: #1a1a24;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #2a2a36;
}
.casino-card img { width: 70px; height: 70px; border-radius: 6px; object-fit: cover; }
.casino-card .cc-name { font-size: 14px; font-weight: 700; color: #f5c542; }
.casino-card .cc-sub { font-size: 11px; color: #999; }

/* Sport */
.sport-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #0d1018 100%);
  padding: 24px;
  border-radius: 10px;
  margin: 24px 0;
}
.sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.sport-card {
  background: #20253a;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 10px;
}
.sport-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.sport-card .sp-name {
  font-size: 11px;
  color: #ffd966;
  padding: 8px 4px 2px;
  font-weight: 700;
  text-transform: uppercase;
}
.sport-card .sp-sub { font-size: 10px; color: #999; }

/* Jackpot */
.jackpot-section {
  background: linear-gradient(135deg, #3a1a0a 0%, #4a2510 50%, #2a1408 100%);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  margin: 24px 0;
  border: 1px solid #c9941a;
}
.jackpot-label { font-size: 12px; color: #ffd966; letter-spacing: 3px; font-weight: 700; }
.jackpot-amount {
  font-size: 38px;
  font-weight: 900;
  color: #ffd966;
  margin: 12px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  letter-spacing: 2px;
}
.jackpot-sub { font-size: 13px; color: #d8d8d8; }

/* Content Section */
.content-section { background: #0f0f17; padding: 40px 16px; }
.content-block { background: #14141c; padding: 24px; border-radius: 8px; margin-bottom: 18px; }
.content-block h2 {
  font-size: 22px;
  color: #f5c542;
  margin-bottom: 14px;
  font-weight: 800;
  border-bottom: 1px solid #2a2a36;
  padding-bottom: 8px;
}
.content-block h3 {
  font-size: 16px;
  color: #ffd966;
  margin: 16px 0 10px;
  font-weight: 700;
}
.content-block p { font-size: 14px; color: #c8c8c8; margin-bottom: 12px; }
.content-block ul { margin: 10px 0 14px 22px; color: #c8c8c8; font-size: 13.5px; }
.content-block li { margin-bottom: 6px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.two-col img { border-radius: 6px; }
.user-review {
  background: rgba(245,197,66,0.06);
  border-left: 3px solid #f5c542;
  padding: 12px 16px;
  margin: 16px 0;
  font-style: italic;
  color: #d0d0d0;
  font-size: 13px;
  border-radius: 0 6px 6px 0;
}

/* FAQ */
.faq-item {
  background: #14141c;
  border-left: 3px solid #f5c542;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 0 6px 6px 0;
}
.faq-item h4 {
  color: #ffd966;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 700;
}
.faq-item p { color: #c0c0c0; font-size: 13.5px; }

/* Download App */
.download-section {
  background: linear-gradient(135deg, #1a2638 0%, #0d1828 100%);
  padding: 30px 20px;
  border-radius: 10px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
}
.download-side img { max-width: 200px; margin: 0 auto; }
.download-info h3 { color: #ffd966; font-size: 20px; margin-bottom: 10px; font-weight: 800; }
.download-info p { font-size: 13px; color: #b8b8b8; margin-bottom: 14px; }
.qr-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.qr-box {
  background: #fff;
  padding: 6px;
  border-radius: 4px;
  width: 80px;
}
.qr-box img { width: 100%; }
.dl-btn {
  background: #f5c542;
  color: #1a1a24;
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
}

/* Footer */
.site-footer {
  background: #08080c;
  color: #b0b0b0;
  padding: 36px 16px 18px;
  border-top: 2px solid #f5c542;
  font-size: 13px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.footer-col h4 {
  color: #f5c542;
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #b0b0b0; }
.footer-col a:hover { color: #f5c542; }
.footer-col p { font-size: 12.5px; color: #999; margin-bottom: 6px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid #1a1a24;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #777;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom .age-warning {
  background: #f5c542;
  color: #1a1a24;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 700;
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; padding: 10px; }
  .main-nav ul { justify-content: center; }
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 13px; }
  .feature-section { grid-template-columns: 1fr; }
  .download-section { grid-template-columns: 1fr; text-align: center; }
  .two-col { grid-template-columns: 1fr; }
  .jackpot-amount { font-size: 26px; }
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
  .main-nav a { padding: 6px 10px; font-size: 12px; }
}
@media (max-width: 480px) {
  .stat-box { padding: 10px 6px; }
  .stat-num { font-size: 18px; }
}
/* Jackpot */
.jackpot-section img{width:100%;height:100%;object-fit:cover;object-position:center}