    :root {
      --primary: #166534;
      --primary2: #22c55e;
      --leaf: #4ade80;
      --amber: #f59e0b;
      --gold: #facc15;
      --dark: #020807;
      --dark2: #071713;
      --panel: #0d2a20;
      --panel2: #123d2c;
      --text: #ffffff;
      --muted: #dcfce7;
      --line: rgba(255,255,255,.14);
      --shadow: 0 18px 45px rgba(0,0,0,.58);
    }

    * { box-sizing: border-box; }

    .error-code {
      margin: 0;
      color: var(--gold);
      font-size: clamp(64px, 16vw, 140px);
      font-weight: 800;
      line-height: 1;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      overflow-x: clip;
      font-family: 'Poppins', system-ui, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(74,222,128,.24), transparent 28%),
        radial-gradient(circle at top right, rgba(245,158,11,.18), transparent 30%),
        linear-gradient(180deg, #020807 0%, #071713 48%, #010403 100%);
      color: var(--text);
    }

    body { padding-bottom: 90px; }

    a { color: inherit; text-decoration: none; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 99;
      background: linear-gradient(180deg, #0d2a20 0%, #010403 100%);
      border-bottom: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 10px 28px rgba(0,0,0,.48);
    }

    .topbar {
      max-width: 1180px;
      margin: 0 auto;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .logo-box {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
    }

    .logo-img {
      width: 155px;
      height: auto;
      display: block;
    }

    .menu-scroll {
      flex: 1;
      min-width: 0;
      overflow-x: auto;
      white-space: nowrap;
      padding: 3px 0;
    }

    .menu-scroll::-webkit-scrollbar,
    .provider-row::-webkit-scrollbar {
      display: none;
    }

    .menu-list {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .menu-item {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 16px;
      border-radius: 10px;
      background: linear-gradient(180deg, #14532d 0%, #0d2a20 100%);
      border: 1px solid rgba(255,255,255,.14);
      color: #f0fdf4;
      font-weight: 600;
      font-size: 15px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    }

    .menu-item.live::before {
      content: "LIVE";
      position: absolute;
      top: -9px;
      left: -2px;
      background: linear-gradient(180deg, #facc15, #22c55e);
      color: #062014;
      font-size: 9px;
      font-weight: 800;
      padding: 2px 5px;
      border-radius: 7px;
    }

    .search-btn {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      border-radius: 50%;
      background: #010403;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid rgba(74,222,128,.38);
      box-shadow: 0 0 20px rgba(74,222,128,.35);
      font-size: 22px;
    }

    .auth-buttons {
      display: flex;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn-login,
    .btn-daftar {
      border: 0;
      padding: 12px 18px;
      border-radius: 12px;
      cursor: pointer;
      font-family: inherit;
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 4px 0 rgba(0,0,0,.35);
    }

    .btn-login {
      color: #062014;
      background: linear-gradient(180deg, #fef08a 0%, #facc15 100%);
    }

    .btn-daftar {
      color: #062014;
      background: linear-gradient(180deg, #86efac 0%, #22c55e 100%);
    }

    .color-strip {
      height: 52px;
      background: linear-gradient(90deg, #166534 0%, #22c55e 50%, #f59e0b 100%);
      border-bottom: 1px solid rgba(255,255,255,.1);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .promo-marquee {
      display: flex;
      width: max-content;
      white-space: nowrap;
      animation: promo-marquee 18s linear infinite;
      will-change: transform;
    }

    .promo-marquee span {
      flex: 0 0 auto;
      padding-right: 70px;
      color: #ffffff;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: .3px;
      text-shadow: 0 2px 5px rgba(0,0,0,.45);
    }

    @keyframes promo-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .page {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 14px 24px;
      width: 100%;
      overflow: hidden;
    }

    .hero-wrap {
      margin-top: -8px;
      width: 100%;
      overflow: hidden;
    }

    .hero-track {
      display: flex;
      gap: 16px;
      width: 200%;
      animation: hero-slider-desktop 10s ease-in-out infinite;
      will-change: transform;
    }

    @keyframes hero-slider-desktop {
      0%, 38% { transform: translateX(0); }
      48%, 83% { transform: translateX(-25%); }
      93%, 100% { transform: translateX(-50%); }
    }

    .hero-card {
      position: relative;
      flex: 0 0 calc(25% - 16px);
      width: calc(25% - 16px);
      aspect-ratio: 16 / 7;
      border-radius: 14px;
      overflow: hidden;
      background: #010403;
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
    }

    .hero-card:last-child {
      flex-basis: 25%;
      width: 25%;
    }

    .hero-card img {
      object-fit: fill;
      object-position: center;
    }

    .hero-card {
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100% 100%;
    }

    .hero-banner-one { background-image: url('/img/bannersapporo88.webp'); }
    .hero-banner-two { background-image: url('/img/banner2.webp'); }

    .welcome-ticker {
      margin: 20px 0;
      background: linear-gradient(90deg, #166534, #22c55e, #f59e0b);
      border-top: 1px solid rgba(255,255,255,.18);
      border-bottom: 1px solid rgba(0,0,0,.45);
      padding: 14px 18px;
      overflow: hidden;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      box-shadow: 0 8px 22px rgba(0,0,0,.38);
    }

    .main-layout {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 18px;
      align-items: start;
    }

    .side-menu {
      position: sticky;
      top: 95px;
      background: linear-gradient(180deg, #0d2a20, #010403);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 38px;
      box-shadow: 0 18px 40px rgba(0,0,0,.65);
      padding: 18px 10px;
      overflow: hidden;
    }

    .side-item {
      display: flex;
      width: 100%;
      border: 0;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 14px 8px;
      color: #dcfce7;
      font-size: 13px;
      font-weight: 500;
    }

    .side-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 22px;
      background: rgba(255,255,255,.08);
    }

    .side-item.active .side-icon {
      background: linear-gradient(180deg, #facc15, #166534);
      color: #fff;
      box-shadow: 0 0 22px rgba(74,222,128,.62);
    }

    .side-item.login .side-icon {
      border: 2px solid #4ade80;
      box-shadow: 0 0 18px rgba(74,222,128,.4);
    }

    .content {
      min-width: 0;
      width: 100%;
      overflow: hidden;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .title-block h1,
    .title-block h2 {
      margin: 0;
      line-height: 1.1;
      font-size: 31px;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      text-shadow: 0 4px 0 rgba(0,0,0,.45);
    }

    .title-block span {
      display: inline-block;
      margin-top: 8px;
      background: rgba(255,255,255,.12);
      padding: 6px 14px;
      border-radius: 999px;
      color: #dcfce7;
      font-size: 13px;
    }

    .provider-row {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 8px 0 18px;
      white-space: nowrap;
    }

    .provider {
      flex: 0 0 84px;
      text-align: center;
      color: #dcfce7;
      font-size: 12px;
    }

    .provider-icon {
      width: 74px;
      height: 74px;
      margin: 0 auto 8px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #14532d 0%, #020807 100%);
      border: 3px solid #4ade80;
      box-shadow: 0 0 18px rgba(74,222,128,.25);
      font-size: 31px;
      position: relative;
    }

    .provider.hot .provider-icon {
      border-color: #facc15;
    }

    .provider.live .provider-icon {
      border-color: #86efac;
    }

    .provider.live .provider-icon::after {
      content: "LIVE";
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      background: #166534;
      color: #fff;
      border-radius: 5px;
      font-size: 9px;
      padding: 2px 5px;
      font-weight: 800;
    }

    .game-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .game-card {
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(180deg, #123d2c 0%, #020807 100%);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 14px 28px rgba(0,0,0,.42);
    }

    .game-thumb {
      background: #010403;
      overflow: hidden;
    }

    .game-thumb img {
      display: block;
      width: 100%;
      height: auto;
    }

    .game-info {
      padding: 10px;
    }

    .game-info h3 {
      margin: 0 0 7px;
      font-size: 13px;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .game-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: #dcfce7;
    }

    .tag {
      padding: 4px 8px;
      border-radius: 999px;
      background: linear-gradient(180deg, #facc15, #166534);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      flex: 0 0 auto;
    }

    .seo-section {
      margin-top: 24px;
      padding: 22px;
      border-radius: 20px;
      background:
        linear-gradient(180deg, rgba(34,197,94,.22), rgba(245,158,11,.08)),
        #071713;
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
    }

    .seo-section h2 {
      margin: 0 0 14px;
      font-size: 25px;
      color: #fff;
    }

    .seo-section h3 {
      margin: 24px 0 8px;
      color: var(--gold);
      font-size: 18px;
      line-height: 1.4;
    }

    .seo-section a {
      color: var(--gold);
      text-decoration: underline;
    }

    .seo-section p {
      margin: 0 0 14px;
      color: #dcfce7;
      line-height: 1.8;
      font-size: 14px;
    }

    .seo-section strong {
      color: #facc15;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .info-card {
      padding: 22px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(34,197,94,.16), rgba(2,8,7,.9));
      border: 1px solid var(--line);
      box-shadow: 0 12px 28px rgba(0,0,0,.32);
    }

    .info-card h2,
    .info-card h3 { margin: 0 0 12px; color: #fff; }
    .info-card h2 { font-size: 22px; }
    .info-card h3 { font-size: 16px; }
    .info-card p,
    .info-card li { color: var(--muted); font-size: 13px; line-height: 1.75; }
    .info-card p:last-child { margin-bottom: 0; }
    .info-card ul { margin: 0; padding-left: 20px; }
    .info-card a { color: var(--gold); text-decoration: underline; }

    .faq-list details {
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }

    .faq-list details:last-child { border-bottom: 0; }
    .faq-list summary { cursor: pointer; font-weight: 700; color: #fff; }
    .faq-list p { margin: 10px 0 0; }

    body.modal-open { overflow: hidden; }

    .auth-modal[hidden] { display: none; }

    .auth-modal {
      position: fixed;
      inset: 0;
      z-index: 500;
      display: grid;
      place-items: center;
      padding: 20px;
      opacity: 0;
      transition: opacity .18s ease;
    }

    .auth-modal.is-open { opacity: 1; }

    .auth-modal-backdrop {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      background: rgba(0,0,0,.78);
      cursor: pointer;
      backdrop-filter: blur(7px);
    }

    .auth-modal-dialog {
      position: relative;
      z-index: 1;
      width: min(100%, 460px);
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      padding: 30px;
      border: 1px solid rgba(243,207,99,.35);
      border-radius: 24px;
      background:
        radial-gradient(circle at top right, rgba(243,207,99,.18), transparent 32%),
        linear-gradient(180deg, #303030 0%, #151515 100%);
      box-shadow: 0 28px 80px rgba(0,0,0,.72);
      transform: translateY(18px) scale(.97);
      transition: transform .18s ease;
    }

    .auth-modal.is-open .auth-modal-dialog { transform: translateY(0) scale(1); }

    .auth-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      color: #fff;
      cursor: pointer;
      font-size: 25px;
      line-height: 1;
    }

    .auth-modal-kicker {
      margin: 0 42px 8px 0;
      color: var(--gold);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
    }

    .auth-modal-dialog h2 { margin: 0 42px 8px 0; color: #fff; font-size: 27px; }
    .auth-modal-intro { margin: 0 0 22px; color: #d6d3d1; font-size: 13px; line-height: 1.6; }

    .auth-form { display: grid; gap: 9px; }
    .auth-form label { color: #f5f5f4; font-size: 12px; font-weight: 700; }

    .auth-form input:not([type="checkbox"]) {
      width: 100%;
      min-height: 48px;
      margin-bottom: 5px;
      padding: 0 14px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 12px;
      outline: none;
      background: #111;
      color: #fff;
      font: inherit;
      font-size: 14px;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .auth-form input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(243,207,99,.13);
    }

    .auth-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin: 5px 0;
      color: #d6d3d1;
      line-height: 1.5;
    }

    .auth-checkbox input { margin-top: 3px; accent-color: var(--gold); }

    .auth-submit {
      min-height: 50px;
      margin-top: 7px;
      border: 0;
      border-radius: 13px;
      background: linear-gradient(180deg, #f3cf63, #9a6a16);
      color: #17130a;
      cursor: pointer;
      font-family: inherit;
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 8px 22px rgba(154,106,22,.3);
    }

    .auth-form-status { min-height: 20px; margin: 0; font-size: 12px; text-align: center; }
    .auth-form-status.is-error { color: #fca5a5; }
    .auth-form-status.is-success { color: #86efac; }

    .auth-modal-switch { margin: 14px 0 0; color: #d6d3d1; font-size: 12px; text-align: center; }
    .auth-modal-switch button { border: 0; background: none; color: var(--gold); cursor: pointer; font: inherit; font-weight: 800; }

    .site-footer {
      margin-top: 28px;
      padding: 26px 18px 110px;
      background: #010403;
      border-top: 1px solid var(--line);
      text-align: center;
    }

    .footer-inner { max-width: 1180px; margin: 0 auto; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
    .footer-links a { color: var(--muted); font-size: 12px; }
    .footer-note { max-width: 760px; margin: 18px auto 0; color: #a7f3d0; font-size: 11px; line-height: 1.7; }
    .age-badge { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 12px; border: 2px solid #facc15; border-radius: 50%; color: #facc15; font-weight: 800; }

    .help-chat {
      position: fixed;
      right: 26px;
      bottom: 26px;
      z-index: 120;
      background: linear-gradient(180deg, #facc15, #166534);
      color: #fff;
      padding: 13px 22px;
      border-radius: 45px;
      box-shadow: 0 12px 30px rgba(0,0,0,.45);
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      border: 0;
      cursor: pointer;
      font-family: inherit;
    }

    .help-chat .chat-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 2px solid #fff;
    }

    .help-chat small {
      display: block;
      letter-spacing: 4px;
      font-size: 10px;
      line-height: 1;
    }

    .help-chat span {
      display: block;
      font-size: 15px;
      line-height: 1.2;
    }

    .mobile-bottom {
      display: none;
    }

    @media (max-width: 900px) {
      .menu-scroll,
      .search-btn { display: none; }

      .auth-buttons {
        display: flex;
        margin-left: auto;
        gap: 6px;
      }

      .btn-login,
      .btn-daftar {
        padding: 9px 13px;
        border-radius: 9px;
        font-size: 12px;
      }

      .side-menu { display: none; }
      .main-layout { display: block; }
      .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 768px) {
      .topbar {
        padding: 8px 10px;
        gap: 8px;
        max-width: 100%;
      }

      .logo-img { width: 118px; }
      .menu-scroll { padding-left: 4px; }
      .menu-list { gap: 7px; }

      .menu-item {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 10px;
      }

      .search-btn {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 20px;
      }

      .color-strip { height: 34px; }
      .promo-marquee { animation-duration: 14s; }
      .promo-marquee span { font-size: 12px; padding-right: 45px; }
      .page { padding: 0 10px 95px; }

      .hero-wrap {
        margin-top: 10px;
      }

      .hero-track {
        gap: 0;
        width: 400%;
        animation-name: hero-slider-mobile;
        animation-duration: 10s;
      }

      @keyframes hero-slider-mobile {
        0%, 38% { transform: translateX(0); }
        48%, 83% { transform: translateX(-25%); }
        93%, 100% { transform: translateX(-50%); }
      }

      .hero-card {
        flex-basis: 25%;
        width: 25%;
        border-radius: 12px;
      }

      .welcome-ticker {
        margin: 12px -10px 16px;
        border-radius: 0;
        font-size: 12px;
        padding: 10px 14px;
        white-space: nowrap;
      }

      .section-head { margin-bottom: 10px; }

      .title-block h1,
      .title-block h2 {
        font-size: 25px;
      }

      .title-block span {
        font-size: 11px;
        padding: 5px 10px;
        margin-top: 6px;
      }

      .provider-row {
        gap: 13px;
        padding: 6px 0 14px;
      }

      .provider {
        flex: 0 0 68px;
        font-size: 11px;
      }

      .provider-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
        border-width: 3px;
      }

      .game-grid { gap: 12px; }
      .game-card { border-radius: 18px; }

      .game-thumb {
        min-height: 115px;
        background: #010403;
      }

      .game-info { padding: 10px 9px 12px; }

      .game-info h3 {
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 9px;
      }

      .game-meta { font-size: 12px; }

      .tag {
        font-size: 11px;
        padding: 6px 10px;
      }

      .seo-section {
        margin-top: 22px;
        padding: 17px;
        border-radius: 18px;
      }

      .seo-section h2 {
        font-size: 20px;
        line-height: 1.25;
      }

      .seo-section h3 { font-size: 16px; }

      .seo-section p {
        font-size: 13px;
        line-height: 1.7;
      }

      .info-grid { grid-template-columns: 1fr; gap: 12px; }
      .info-card { padding: 18px; }

      .help-chat {
        left: 50%;
        right: auto;
        bottom: 82px;
        transform: translateX(-50%);
        width: calc(100% - 36px);
        max-width: 340px;
        justify-content: center;
        padding: 12px 16px;
        border-radius: 999px;
      }

      .help-chat small {
        font-size: 9px;
        letter-spacing: 5px;
      }

      .help-chat span { font-size: 15px; }

      .mobile-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 110;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: linear-gradient(180deg, #0d2a20, #010403);
        border-top: 1px solid rgba(255,255,255,.15);
        padding: 8px 6px 10px;
      }

      .mobile-bottom a,
      .mobile-bottom button {
        border: 0;
        background: transparent;
        cursor: pointer;
        font-family: inherit;
        text-align: center;
        color: #dcfce7;
        font-size: 10px;
        font-weight: 600;
      }

      .mobile-bottom b {
        display: grid;
        place-items: center;
        margin: 0 auto 4px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        font-size: 17px;
      }

      .mobile-bottom .play b {
        background: linear-gradient(180deg, #facc15, #166534);
        color: #fff;
        box-shadow: 0 0 18px rgba(74,222,128,.65);
      }

      .auth-modal { padding: 12px; }
      .auth-modal-dialog { max-height: calc(100vh - 24px); padding: 24px 18px; border-radius: 20px; }
      .auth-modal-dialog h2 { font-size: 23px; }
    }

    @media (max-width: 390px) {
      .logo-img { width: 105px; }

      .menu-item {
        font-size: 12px;
        padding: 7px 10px;
      }

      .search-btn {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
      }

      .game-grid { gap: 10px; }
      .game-thumb { min-height: 100px; }
      .game-info h3 { font-size: 13px; }
      .game-meta { font-size: 11px; }
      .tag { padding: 5px 8px; }
    }

    /* Gold and graphite palette derived from the SAPPORO88 logo */
    :root {
      --primary: #9a6a16;
      --primary2: #d4a72c;
      --leaf: #f1cf69;
      --amber: #d19a2a;
      --gold: #f3cf63;
      --dark: #111111;
      --dark2: #1a1a1a;
      --panel: #252525;
      --panel2: #343434;
      --text: #ffffff;
      --muted: #e5dfd0;
      --line: rgba(243,207,99,.22);
      --shadow: 0 18px 45px rgba(0,0,0,.58);
    }

    html, body {
      background:
        radial-gradient(circle at top left, rgba(243,207,99,.16), transparent 28%),
        radial-gradient(circle at top right, rgba(154,106,22,.18), transparent 30%),
        linear-gradient(180deg, #111111 0%, #202020 48%, #0d0d0d 100%);
    }

    .site-header,
    .mobile-bottom { background: linear-gradient(180deg, #303030 0%, #111111 100%); }

    .menu-item,
    .side-item,
    .provider-icon {
      background: linear-gradient(180deg, #3a3a3a 0%, #202020 100%);
      border-color: rgba(243,207,99,.24);
      color: #f7edcf;
    }

    .menu-item.live::before,
    .btn-daftar,
    .side-item.active,
    .side-item.login,
    .tag,
    .help-chat,
    .mobile-bottom a.play b {
      background: linear-gradient(180deg, #f3d77a 0%, #a66f16 100%);
      color: #171717;
    }

    .btn-login {
      color: #171717;
      background: linear-gradient(180deg, #fff1b8 0%, #d4a72c 100%);
    }

    .search-btn {
      background: #171717;
      border-color: rgba(243,207,99,.48);
      box-shadow: 0 0 20px rgba(212,167,44,.32);
    }

    .color-strip { background: linear-gradient(90deg, #5f4315 0%, #d4a72c 50%, #5f4315 100%); }
    .welcome-ticker { background: linear-gradient(180deg, #3a3a3a, #1c1c1c); border-color: rgba(243,207,99,.24); }
    .game-card { background: linear-gradient(180deg, #343434 0%, #111111 100%); border-color: rgba(243,207,99,.22); }
    .game-thumb { background: #111111; }

    .seo-section {
      background: linear-gradient(180deg, rgba(212,167,44,.18), rgba(154,106,22,.08)), #1a1a1a;
      border-color: rgba(243,207,99,.24);
    }

    .info-card { background: linear-gradient(180deg, rgba(212,167,44,.12), rgba(17,17,17,.94)); }
    .seo-section p, .info-card p, .info-card li, .game-meta, .mobile-bottom a { color: #e5dfd0; }
    .seo-section strong, .info-card a, .age-badge { color: #f3cf63; }
    .age-badge { border-color: #f3cf63; }
    .site-footer { background: #0d0d0d; }
    .footer-links a { color: #e5dfd0; }
    .footer-note { color: #c9c1ad; }

    .side-icon,
    .side-item.active .side-icon,
    .side-item.login .side-icon {
      background: linear-gradient(145deg, #f3d77a 0%, #a66f16 100%);
      border: 1px solid rgba(243,207,99,.38);
      box-shadow: 0 7px 18px rgba(0,0,0,.28);
      color: #171717;
    }

    .side-item,
    .side-item:hover,
    .side-item.active,
    .side-item.login {
      background: transparent;
    }

    @media (min-width: 769px) {
      html, body {
        background: linear-gradient(180deg, #111111 0%, #181818 48%, #101010 100%);
      }

      .main-layout {
        gap: 24px;
        padding: 24px;
        border: 1px solid rgba(243,207,99,.16);
        border-radius: 28px;
        background: linear-gradient(145deg, #242424 0%, #1b1b1b 46%, #161616 100%);
        box-shadow: 0 24px 55px rgba(0,0,0,.34);
      }

      .side-menu {
        top: 92px;
        padding: 12px 8px;
        border: 1px solid rgba(243,207,99,.14);
        border-radius: 20px;
        background: rgba(12,12,12,.42);
        box-shadow: none;
      }

      .side-item {
        margin: 3px 0;
        border-radius: 14px;
        transition: background-color .2s ease, color .2s ease;
      }

      .side-item:hover { background: transparent; }

      .side-item.active,
      .side-item.login {
        background: transparent;
        color: #f3cf63;
      }

      .side-item.active .side-icon,
      .side-item.login .side-icon {
        border: 1px solid rgba(243,207,99,.38);
        background: linear-gradient(145deg, #f3d77a 0%, #a66f16 100%);
        color: #171717;
        box-shadow: 0 7px 18px rgba(0,0,0,.28);
      }

      .content {
        padding: 2px 2px 4px;
        overflow: visible;
      }

      .section-head {
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(243,207,99,.14);
      }

      .provider-row {
        margin-bottom: 6px;
        padding: 4px 2px 18px;
      }

      .provider-icon {
        background: #292929;
        border-color: rgba(243,207,99,.18);
        box-shadow: none;
      }

      .game-grid { gap: 16px; }

      .game-card {
        background: #222222;
        border-color: rgba(243,207,99,.14);
        box-shadow: 0 10px 24px rgba(0,0,0,.22);
        transition: transform .2s ease, border-color .2s ease;
      }

      .game-card:hover {
        transform: translateY(-3px);
        border-color: rgba(243,207,99,.42);
      }

      .seo-section {
        background: #202020;
        border-color: rgba(243,207,99,.16);
        box-shadow: none;
      }

      .info-card {
        background: #202020;
        border-color: rgba(243,207,99,.14);
        box-shadow: none;
      }
    }
