
    /* =========================
       Light Theme — Guess Forum
       (Inspired by satta-king.com, adapted to light with color variations)
       ========================= */
    :root {
      --bg: #f9f9f9; /* Light grayish background */
      --panel: #ffffff; /* Pure white for cards */
      --ink: #212121; /* Deep black for text */
      --muted: #757575; /* Muted gray for secondary text */
      --line: #e0e0e0; /* Light gray border */
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow */
      --brand: #ffd600; /* Gold/yellow from satta-king.com */
      --brand-ink: #222222; /* Dark text over brand color */
      --red: #d50000; /* Vibrant red */
      --green: #1b5e20; /* Deep green */
      --white: #ffffff; /* Pure white */
    }

    /* Base */
    body {
      background: var(--bg);
      color: var(--ink);
      font-family: 'Poppins', sans-serif;
      line-height: 1.5;
      margin: 0 auto;
      max-width: 100%;
      overflow-x: hidden;
    }

    a {
      color: var(--red);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--brand);
      text-decoration: underline;
    }

    /* Cards / surfaces */
    .post-card {
      background: #FEF9F9;
      border-radius: 8px;
      padding: 12px;
      margin-bottom: 12px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      border: 1px solid var(--line);
    }

    .profile-pic {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      background: #f5f5f5;
      border: 1px solid var(--line);
    }

    /* Username styling */
    .sk-username{
  color:#d50000;           /* red */
  font-weight:700;
  margin-right:6px;
  text-shadow:
    1px 1px 0 #000,        /* crisp outline */
    0 0 6px rgba(0,0,0,.55);/* soft glow */
}


    /* Game name styling */
    .sk-game{
  color: var(--green);         /* Green for game name */
  font-size: 1.10em;
  font-weight: 800;            /* bolder */
  font-style: italic;          /* italic */
  text-transform: uppercase;   /* name style */
  letter-spacing: .35px;       /* slight tracking */
  margin-bottom: 4px;
  text-shadow: 0 1px 0 rgba(0,0,0,.12); /* subtle lift */
}


    /* Date/Time styling */
    .sk-time {
      color: var(--muted); /* Muted gray for date/time */
      font-size: 0.93em;
    }

    /* Jodi (Guess Number) styling */
    .jodi-circle{
  display:inline-block;
  min-width:40px;
  height:40px;
  line-height:40px;
  border-radius:50%;
  background:#ffffff;      /* white background */
  color:red;           /* black text */
  font-weight:900;
  text-align:center;
  font-size:1.08em;
  border:2px solid #000000;/* black border */
  box-shadow:0 1px 0 rgba(0,0,0,.25), 0 2px 6px rgba(0,0,0,.08);
  margin-right:4px;
}


    /* Comment (Post Text) styling */
    .guess-post-text{
  color: var(--ink);                 /* readable text */
  font-size: 1.02em;
  line-height: 1.55;
  font-weight: 700;                  /* bold text */
  background:
    linear-gradient(0deg, rgba(255,214,0,.06), rgba(255,214,0,.06)),
    var(--panel);                    /* light brand tint on panel */
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  border-left: 4px solid #ffd600;    /* accent bar */
  word-break: break-word;
  white-space: pre-wrap;             /* keep user line-breaks */
  margin: 8px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,.05);
}

/* Inline emphasis inside the message */
.guess-post-text b{ color:#d32f2f; }    /* strong emphasis */
.guess-post-text i{ color:#ff6f00; }    /* soft emphasis */
.guess-post-text a{ color:#0b57d0; text-decoration:none; font-weight:800 }
.guess-post-text a:hover{ text-decoration:underline }


    .guess-post-text b {
      color: var(--red); /* Bold text in red */
    }

    .guess-post-text i {
      color: #ff9800; /* Italic text in orange */
    }

    /* Header chips, badges, points */
    .pinned-badge {
      background: var(--brand);
      color: var(--brand-ink);
      font-weight: 800;
      border-radius: 6px;
      padding: 3px 8px;
      display: inline-block;
      margin-bottom: 6px;
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }

    .user-points {
      color: var(--green);
      font-weight: 700;
      margin-left: 6px;
      font-size: 0.95em;
    }

    .badge {
      margin-left: 6px;
    }

    /* Result pills */
    .result-pill {
      display: inline-block;
      border-radius: 999px;
      padding: 3px 12px;
      font-weight: 800;
      margin-left: 6px;
      border: 1px solid transparent;
    }

    .result-pending {
      background: #fffde7;
      color: #8d6e00;
      border-color: #ffe57f;
    }

    .result-pass {
      background: #e8f5e9;
      color: var(--green);
      border-color: #c8e6c9;
    }

    .result-fail {
      background: #ffebee;
      color: var(--red);
      border-color: #ffcdd2;
    }

    /* Congrats line */
    .congrats {
      color: var(--green);
      font-weight: 800;
      margin-top: 6px;
    }

    /* =========================
       Top Guesser CTA (light)
       ========================= */
    .top-guesser-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--panel);
      border: 2.5px solid rgba(255, 214, 0, 0.85);
      border-radius: 18px;
      box-shadow: 0 6px 26px rgba(0, 0, 0, 0.08), 0 1.5px 0 #ffd600 inset;
      max-width: 320px;
      margin: 26px auto 20px;
      padding: 20px 18px 15px;
      text-align: center;
      text-decoration: none;
      transition: box-shadow 0.18s, transform 0.16s;
      cursor: pointer;
      animation: topgfade 0.7s;
      position: relative;
      z-index: 1;
    }

    @keyframes topgfade {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
      }
      to {
        opacity: 1;
        transform: none;
      }
    }

    .top-guesser-cta:hover {
      box-shadow: 0 12px 44px rgba(255, 214, 0, 0.28), 0 2px 0 #ffd600 inset;
      transform: translateY(-2px) scale(1.03);
    }

    .topg-icon {
      font-size: 2.1rem;
      margin-bottom: 4px;
      filter: drop-shadow(0 2px 6px rgba(255, 214, 0, 0.55));
      transition: transform 0.23s;
    }

    .top-guesser-cta:hover .topg-icon {
      transform: scale(1.12) rotate(-6deg);
    }

    .topg-title {
      color: var(--brand-ink);
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: 0.35px;
      margin-bottom: 2px;
      line-height: 1.2;
    }

    .topg-link {
      font-size: 1.01rem;
      color: var(--brand-ink);
      background: var(--brand);
      border-radius: 7px;
      padding: 6px 18px;
      font-weight: 700;
      margin-top: 6px;
      box-shadow: 0 2px 10px rgba(255, 214, 0, 0.24);
      transition: background 0.17s, color 0.17s, transform 0.17s;
      display: inline-block;
      letter-spacing: 0.35px;
    }

    .top-guesser-cta:hover .topg-link {
      background: var(--ink);
      color: var(--brand);
      transform: scale(1.07);
    }

    .topg-arrow {
      font-size: 1.18em;
      margin-left: 6px;
      transition: transform 0.19s cubic-bezier(0.4, 2.2, 0.5, 1), color 0.17s;
      vertical-align: middle;
    }

    .top-guesser-cta:hover .topg-arrow {
      color: var(--brand);
      transform: translateX(7px) scale(1.14) rotate(-2deg);
    }

    /* =========================
       Form elements (light)
       ========================= */
    input.tips-list,
    select.tips-list {
      width: 100%;
      background: var(--panel);
      color: var(--ink);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 10px 12px;
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    input.tips-list::placeholder {
      color: var(--muted);
    }

    input.tips-list:focus,
    select.tips-list:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.28);
    }

    /* Buttons */
    button.tips-list,
    .tips-list[type="submit"] {
      background: linear-gradient(180deg, #fff, #f5f5f5);
      border: 1px solid var(--line);
      color: var(--ink);
      border-radius: 10px;
      padding: 9px 12px;
      cursor: pointer;
      font-weight: 800;
      transition: filter 0.12s, transform 0.06s, box-shadow 0.12s;
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }

    button.tips-list:hover {
      filter: brightness(1.02);
    }

    button.tips-list:active {
      transform: translateY(1px);
    }

    /* Primary submit */
    #guessForm .tips-list[type="submit"],
    #guessForm button[type="submit"] {
      background: var(--brand);
      color: var(--brand-ink);
      border: 1px solid #e3b800;
      box-shadow: 0 2px 0 #ffd600 inset, 0 8px 16px rgba(255, 214, 0, 0.18);
    }

    /* Utility tweaks */
    .article-sub {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 12px;
    }

    .article-sub + .article-sub {
      position: relative;
    }

    .article-sub + .article-sub::before {
      content: "";
      position: absolute;
      top: -7px;
      left: 12px;
      right: 12px;
      height: 1px;
      background: var(--line);
    }

    /* Mobile */
    @media (max-width: 480px) {
      .top-guesser-cta {
        max-width: 96vw;
        padding: 14px 4vw 11px;
      }
      .topg-title {
        font-size: 1rem;
      }
      .topg-link {
        font-size: 0.93rem;
      }
    }

    @media (max-width: 320px) {
      input.tips-list,
      select.tips-list {
        font-size: 0.9rem;
      }
      button.tips-list,
      .tips-list[type="submit"] {
        font-size: 0.9rem;
        padding: 8px 10px;
      }
    }
  