@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f4f6fa;
  color: #0f172a;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.site-header {
  background: #071120;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #facc15;
  border-radius: 14px;
  font-size: 24px;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.brand small {
  color: #facc15;
  font-size: 12px;
}

.nav-menu {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.nav-menu a {
  font-weight: 700;
  font-size: 14px;
  opacity: .9;
}

.nav-menu a:hover,
.nav-menu .active {
  color: #facc15;
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 14px;
}

.btn.gold {
  background: #facc15;
  color: #071120;
}

.btn.dark {
  background: #071120;
  color: white;
}

.btn.ghost {
  border: 1px solid #facc15;
  color: #facc15;
}

.btn.big {
  padding: 13px 20px;
}

.menu-btn {
  display: none;
  background: #facc15;
  color: #071120;
  border: 0;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
}

.ticker {
  background: #facc15;
  color: #071120;
  padding: 10px 0;
}

.ticker .container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ticker b {
  white-space: nowrap;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(250,204,21,.25), transparent 35%),
    linear-gradient(135deg, #071120, #111827 60%, #1f2937);
  color: white;
  padding: 56px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px;
  align-items: center;
}

.label {
  display: inline-flex;
  background: #facc15;
  color: #071120;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.label.small {
  font-size: 11px;
  padding: 4px 9px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 18px;
}

.hero p {
  color: #d1d5db;
  max-width: 650px;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.match-top {
  color: #facc15;
  font-weight: 800;
  margin-bottom: 22px;
}

.teams {
  display: grid;
  gap: 18px;
}

.teams div {
  background: rgba(255,255,255,.08);
  padding: 18px;
  border-radius: 18px;
}

.teams strong {
  display: block;
  font-size: 24px;
}

.teams span {
  color: #cbd5e1;
}

.teams b {
  text-align: center;
  color: #facc15;
  font-size: 22px;
}

.prediction {
  margin-top: 22px;
  background: #facc15;
  color: #071120;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prediction strong {
  font-size: 28px;
}

.section {
  padding: 42px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: 30px;
  border-left: 6px solid #facc15;
  padding-left: 12px;
}

.section-head p {
  color: #64748b;
  margin-top: 5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature-card {
  background: white;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
  transition: .2s ease;
  border: 1px solid #e5e7eb;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #facc15;
}

.feature-card span {
  font-size: 34px;
}

.feature-card h3 {
  margin: 12px 0 8px;
}

.feature-card p {
  color: #64748b;
  font-size: 14px;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
}

.post-list {
  display: grid;
  gap: 16px;
}

.post-card {
  background: white;
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
}

.post-img {
  min-height: 120px;
  border-radius: 18px;
  background: linear-gradient(135deg, #071120, #facc15);
  display: grid;
  place-items: center;
  font-size: 42px;
}

.post-card h3 {
  margin: 4px 0 8px;
  font-size: 21px;
}

.post-card p {
  color: #64748b;
}

.sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.widget {
  background: white;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
}

.widget h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.widget a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
  font-weight: 600;
}

.dark-widget {
  background: #071120;
  color: white;
}

.dark-widget p {
  color: #cbd5e1;
}

.livechat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #22c55e;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(34,197,94,.35);
  z-index: 90;
}

.footer {
  background: #071120;
  color: white;
  text-align: center;
  padding: 36px 0;
  margin-top: 20px;
}

.footer p {
  color: #cbd5e1;
  margin: 6px 0;
}

.footer small {
  color: #94a3b8;
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #0f172a;
    padding: 14px;
    border-radius: 18px;
    order: 4;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-actions {
    order: 3;
    width: 100%;
  }

  .nav-actions .btn {
    flex: 1;
  }

  .hero-grid,
  .layout {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-wrap {
    min-height: 70px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .hero {
    padding: 36px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .livechat {
    right: 14px;
    bottom: 14px;
    padding: 12px 15px;
  }
}
.page-hero {
  background: linear-gradient(135deg, #071120, #111827);
  color: white;
  padding: 54px 0;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero p {
  color: #cbd5e1;
  max-width: 680px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
}

.news-img {
  height: 170px;
  background: linear-gradient(135deg, #071120, #facc15);
  display: grid;
  place-items: center;
  font-size: 50px;
}

.news-body {
  padding: 20px;
}

.news-body h3 {
  font-size: 22px;
  margin: 6px 0 8px;
}

.news-body p {
  color: #64748b;
}

.read-more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
  color: #071120;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
.prediction-table-wrap {
  overflow-x: auto;
  background: white;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
  margin-bottom: 34px;
}

.prediction-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.prediction-table th {
  background: #071120;
  color: #facc15;
  text-align: left;
  padding: 16px;
  font-size: 14px;
}

.prediction-table td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
}

.prediction-table tr:hover {
  background: #f8fafc;
}

.confidence {
  display: inline-flex;
  background: #2563eb;
  color: white;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.confidence.hot {
  background: #dc2626;
}
.schedule-list {
  display: grid;
  gap: 16px;
}

.schedule-card {
  background: white;
  border-radius: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
}

.schedule-time {
  background: #071120;
  color: white;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.schedule-time strong {
  display: block;
  font-size: 24px;
  color: #facc15;
}

.schedule-time span {
  font-size: 12px;
  color: #cbd5e1;
}

.league {
  display: inline-block;
  color: #facc15;
  background: #071120;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.schedule-match h3 {
  font-size: 22px;
}

.schedule-match p {
  color: #64748b;
}

.status {
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.status.upcoming {
  background: #2563eb;
}

.status.live {
  background: #dc2626;
  animation: pulseLive 1.2s infinite;
}

.status.finished {
  background: #16a34a;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(220,38,38,.5); }
  70% { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

.top-match-box {
  background: linear-gradient(135deg, #071120, #111827);
  color: white;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 12px 35px rgba(15,23,42,.14);
}

.top-match-box p {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-time {
    text-align: left;
  }

  .top-match-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-match-box .btn {
    width: 100%;
  }
}
.rtp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rtp-card {
  background: white;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
}

.rtp-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #071120, #facc15);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 14px;
}

.rtp-card h3 {
  font-size: 22px;
}

.rtp-card p {
  color: #64748b;
  margin: 6px 0 14px;
}

.rtp-bar {
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.rtp-bar span {
  display: block;
  background: linear-gradient(90deg, #22c55e, #facc15);
  color: #071120;
  padding: 8px 12px;
  font-weight: 900;
  text-align: right;
}

@media (max-width: 768px) {
  .rtp-grid {
    grid-template-columns: 1fr;
  }
}.togel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.togel-card {
  background: white;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
}

.market {
  display: inline-block;
  background: #071120;
  color: #facc15;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 12px;
}

.togel-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.number-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.number-box span {
  background: #facc15;
  color: #071120;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 20px;
}

.togel-card p {
  color: #64748b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .togel-grid {
    grid-template-columns: 1fr;
  }
}
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 3px;
  background: #071120;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .menu-btn {
    display: flex;
  }
}
.menu-btn {
  border: none;
  background: #facc15;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 3px;
  background: #071120;
  border-radius: 999px;
}

@media (min-width: 1025px) {
  .menu-btn {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .menu-btn {
    display: flex !important;
  }
}