:root {
    --bg: #0a0203;
    --bg-soft: rgba(24, 6, 8, 0.96);
    --accent: #b91c1c;
    --accent-bright: #ef4444;
    --gold: #facc15;
    --gold-soft: rgba(250, 204, 21, 0.18);
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --card-bg: rgba(15, 6, 8, 0.9);
    --border-soft: rgba(248, 250, 252, 0.12);
    --radius-xl: 24px;
    --shadow-soft: 0 28px 60px rgba(15, 6, 8, 0.9);
    --container-width: 1120px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }
  
  body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #450a0a 0, #020617 45%, #020005 100%);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* HEADER */
  header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(15, 6, 8, 0.95), rgba(15, 6, 8, 0.8));
    border-bottom: 1px solid rgba(248, 250, 252, 0.05);
    transition: box-shadow 0.22s ease-out, background 0.22s ease-out, transform 0.18s ease-out;
  }
  
  header.is-scrolled {
    background: rgba(10, 2, 3, 0.98);
    box-shadow: 0 18px 40px rgba(15, 6, 8, 1);
    transform: translateY(-1px);
  }
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
}
  .logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0%, #f97316, #b91c1c 55%, #facc15 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fef9c3;
    box-shadow: 0 10px 25px rgba(248, 250, 252, 0.35);
  }
  
  .brand-text {
    display: flex;
    flex-direction: column;
  }
  
  .brand-text span:first-child {
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  
  .brand-text span:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
  }
  
  nav {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  nav ul {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.93rem;
  }
  
  .nav-link {
    color: var(--text-muted);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.16s ease-out;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--gold), var(--accent-bright));
    transition: width 0.22s ease-out;
  }
  
  .nav-link:hover {
    color: #e5e7eb;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link.active {
    color: #e5e7eb;
  }
  
  .nav-link.active::after {
    width: 100%;
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(250, 250, 250, 0.3);
    background: radial-gradient(circle at 10% 0, #b91c1c, #ef4444 45%, #facc15 100%);
    color: #0b0202;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(153, 27, 27, 0.8);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.16s ease-out;
    white-space: nowrap;
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 28px 60px rgba(185, 28, 28, 1);
    filter: brightness(1.05);
  }
  
  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(250, 204, 21, 0.5);
    background: rgba(10, 2, 3, 0.8);
    color: var(--gold);
    font-size: 0.85rem;
    cursor: pointer;
    gap: 8px;
    transition: background 0.16s ease-out, border-color 0.16s ease-out, color 0.16s ease-out;
  }
  
  .btn-outline:hover {
    background: rgba(24, 6, 8, 0.96);
    border-color: rgba(250, 204, 21, 0.9);
    color: #fef9c3;
  }
  
  main {
    padding-bottom: 80px;
  }
  
  /* HERO */
  .hero {
    position: relative;
    padding: 48px 0 32px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 38px;
    align-items: center;
  }
  
  .hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    color: #fed7aa;
    background: rgba(127, 29, 29, 0.35);
    border: 1px solid rgba(248, 113, 113, 0.45);
    margin-bottom: 10px;
  }
  
  .hero-tagline-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(250, 204, 21, 0.9);
  }
  
  .hero h1 {
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: 0.01em;
  }
  
  .hero h1 .highlight {
    background: linear-gradient(to right, #facc15, #ef4444);
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .hero-sub {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 18px;
  }
  
  .hero-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 24px;
    font-size: 0.88rem;
    margin-bottom: 20px;
  }
  
  .hero-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .check {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(250, 204, 21, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #bbf7d0;
    background: rgba(30, 64, 175, 0.18);
  }
  
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  /* HERO BANNER */
  .hero-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: radial-gradient(circle at top left, rgba(127, 29, 29, 0.6), rgba(15, 6, 8, 0.98));
    border: 1px solid rgba(250, 204, 21, 0.4);
    transform: translateY(10px);
    opacity: 0;
    animation: heroFadeIn 0.7s ease-out forwards 0.15s;
  }
  
  @keyframes heroFadeIn {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .hero-banner-img {
    position: relative;
    overflow: hidden;
    max-height: 320px;
  }
  
  .hero-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.5s ease-out;
  }
  
  .hero-banner:hover .hero-banner-img img {
    transform: scale(1.07);
  }
  
  .hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(15, 6, 8, 0.1), rgba(10, 2, 3, 0.98));
    mix-blend-mode: soft-light;
  }
  
  .hero-banner-floating {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text-main);
  }
  
  .hero-chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(10, 2, 3, 0.9);
    border: 1px solid rgba(250, 204, 21, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  .hero-kpi {
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(10, 2, 3, 0.96);
    border: 1px solid rgba(248, 250, 252, 0.2);
    text-align: right;
  }
  
  .hero-kpi strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
  }
  
  /* SECTIONS */
  section {
    padding: 40px 0 12px;
    scroll-margin-top: 90px;
  }
  
  section h2 {
    font-size: 1.6rem;
    margin: 0 0 8px;
  }
  
  .section-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 24px;
  }
  
  /* CARDS / GRID */
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .card {
    position: relative;
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 40px rgba(10, 2, 3, 0.9);
    overflow: hidden;
  }
  
  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: conic-gradient(from 180deg at 50% 0%, rgba(250, 204, 21, 0.7), transparent 40%, transparent 80%, rgba(248, 113, 113, 0.7));
    opacity: 0;
    transition: opacity 0.18s ease-out;
    z-index: -1;
  }
  
  .card:hover::before {
    opacity: 0.7;
  }
  
  .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(127, 29, 29, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    z-index: -2;
  }
  
  .card:hover::after {
    opacity: 1;
  }
  
  .card h3 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 6px;
  }
  
  .card p {
    font-size: 0.86rem;
    color: var(--text-muted);
  }
  
  .badge-soft {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    color: #fef3c7;
    background: rgba(127, 29, 29, 0.5);
    border: 1px solid rgba(250, 204, 21, 0.65);
    margin-bottom: 10px;
  }
  
  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
  }
  
  .pricing-card {
    padding: 20px 18px 18px;
    border-radius: 20px;
    background: radial-gradient(circle at top, rgba(127, 29, 29, 0.5), rgba(10, 2, 3, 0.98));
    border: 1px solid rgba(250, 204, 21, 0.7);
    box-shadow: var(--shadow-soft);
  }
  
  .pricing-card h3 {
    margin: 0 0 4px;
  }
  
  .pricing-label {
    font-size: 0.78rem;
    color: #fde68a;
    margin-bottom: 10px;
  }
  
  .pricing-price {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
  }
  
  .pricing-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 0.84rem;
    color: var(--text-muted);
  }
  
  .pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 6px;
  }
  
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(250, 250, 250, 0.9);
    margin-top: 6px;
  }
  
  /* TABEL GAME */
  .game-table-wrapper {
    margin-top: 18px;
    overflow-x: auto;
  }
  
  .game-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 620px;
  }
  
  .game-table thead {
    background: linear-gradient(to right, #450a0a, #7f1d1d);
  }
  
  .game-table th,
  .game-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(248, 250, 252, 0.06);
  }
  
  .game-table th {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 2px solid rgba(250, 204, 21, 0.8);
    white-space: nowrap;
  }
  
  .game-table tbody tr:nth-child(even) {
    background: rgba(15, 6, 8, 0.7);
  }
  
  .game-table tbody tr:nth-child(odd) {
    background: rgba(10, 2, 3, 0.9);
  }
  
  .game-table tbody tr:hover {
    background: rgba(127, 29, 29, 0.9);
  }
  
  .badge-mode {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(250, 204, 21, 0.7);
    font-size: 0.75rem;
    color: #fef9c3;
    background: rgba(127, 29, 29, 0.7);
  }
  
  .table-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
  }
  
  /* TESTIMONI */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .testi-card {
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: rgba(10, 2, 3, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.85rem;
  }
  
  .testi-card p {
    margin: 0 0 6px;
  }
  
  .testi-name {
    font-weight: 500;
    font-size: 0.83rem;
    color: var(--gold);
  }
  
  .testi-role {
    font-size: 0.76rem;
    color: var(--text-muted);
  }
  
  /* FAQ */
  .faq-list details {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 10px 14px;
    margin-bottom: 8px;
    border: 1px solid var(--border-soft);
    font-size: 0.9rem;
    transition: border-color 0.16s ease-out, background 0.16s ease-out;
  }
  
  .faq-list details[open] {
    border-color: rgba(250, 204, 21, 0.9);
    background: rgba(10, 2, 3, 0.98);
  }
  
  .faq-list summary {
    cursor: pointer;
    list-style: none;
  }
  
  .faq-list summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-list p {
    margin-top: 6px;
    font-size: 0.86rem;
    color: var(--text-muted);
  }
  
  /* INTERNAL LINKS SECTION */
  .internal-links {
    padding: 32px 0 8px;
    border-top: 1px solid rgba(248, 250, 252, 0.07);
    border-bottom: 1px solid rgba(248, 250, 252, 0.07);
    background: radial-gradient(circle at top, rgba(127, 29, 29, 0.45), rgba(10, 2, 3, 0.98));
  }
  
  .internal-links h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: var(--gold);
  }
  
  .internal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
    column-gap: 32px;
  }
  
  .internal-links li {
    margin-bottom: 6px;
    font-size: 0.86rem;
  }
  
  .internal-links a {
    color: #e5e7eb;
  }
  
  .internal-links a:hover {
    color: var(--gold);
    text-decoration: underline;
  }
  
  /* EXTERNAL LINKS SECTION */
  .external-links {
    padding: 26px 0 8px;
  }
  
  .external-links h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--gold);
  }
  
  .external-links p {
    font-size: 0.86rem;
    color: var(--text-muted);
    max-width: 640px;
  }
  
  .external-links a {
    color: var(--gold);
    text-decoration: underline;
  }
  
  .external-links a:hover {
    color: #fef9c3;
  }
  
  /* KONTAK */
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 10px;
  }
  
  form label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 9px 11px;
    border-radius: 12px;
    border: 1px solid rgba(248, 250, 252, 0.18);
    background: rgba(10, 2, 3, 0.96);
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 10px;
    outline: none;
  }
  
  form input:focus,
  form textarea:focus {
    border-color: rgba(250, 204, 21, 0.9);
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.7);
  }
  
  form textarea {
    resize: vertical;
    min-height: 90px;
  }
  
  .contact-card {
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(127, 29, 29, 0.6), rgba(10, 2, 3, 0.98));
    border: 1px solid rgba(250, 204, 21, 0.7);
    font-size: 0.86rem;
  }
  
  .contact-card p {
    margin: 0 0 8px;
  }
  
  /* FOOTER */
  footer {
    border-top: 1px solid rgba(248, 250, 252, 0.12);
    padding: 18px 0 28px;
    font-size: 0.78rem;
    color: var(--text-muted);
  }
  
  footer a {
    color: var(--text-muted);
  }
  
  footer a:hover {
    color: var(--gold);
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-grid {
      grid-template-columns: minmax(0, 1fr);
    }
    .hero-banner {
      order: -1;
    }
    .grid-3,
    .pricing-grid,
    .testi-grid {
      grid-template-columns: minmax(0, 1fr);
    }
    .contact-grid {
      grid-template-columns: minmax(0, 1fr);
    }
    nav ul {
      display: none;
    }
    .game-table {
      min-width: 540px;
    }
    .internal-links ul {
      columns: 1;
    }
  }
  