/* ─── Color system (Indian flag inspired) ───
     Single (1) = Saffron/Orange  #FF9933
     Jodi   (2) = Green           #138808 / bright #1DB954
     Patti  (3) = Deep Red        #E23744
  ─────────────────────────────────────────────── */
  :root {
    --c-single: #FF9933;
    --c-single-bg: rgba(255,153,51,0.15);
    --c-single-border: rgba(255,153,51,0.3);
    --c-jodi: #1DB954;
    --c-jodi-bg: rgba(29,185,84,0.15);
    --c-jodi-border: rgba(29,185,84,0.3);
    --c-patti: #E23744;
    --c-patti-bg: rgba(226,55,68,0.15);
    --c-patti-border: rgba(226,55,68,0.3);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: #f1f5f9;
    color: #1e293b;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  }

  /* ─── Top bar ─── */
  .top-bar {
    background: linear-gradient(135deg, #0d1520 0%, #111d2b 100%);
    border-bottom: 1px solid #1e2d3d;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 100;
  }
  .top-bar .left { display: flex; flex-direction: column; }
  .top-bar .brand {
    font-size: 28px; color: #fff; font-weight: 800;
    text-decoration: none; letter-spacing: -0.5px;
  }
  .top-bar .brand span { color: var(--c-single); }
  .top-bar .sub { font-size: 12px; color: #fff; margin-top: 3px; font-weight: 500; letter-spacing: 0.3px; }
  .live-dot {
    display: inline-block; width: 7px; height: 7px;
    background: #00e676; border-radius: 50%; margin-right: 5px;
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
  .profile-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-single) 0%, #e07e10 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: #fff;
    cursor: pointer; border: none; text-transform: uppercase; text-decoration: none;
  }
  .btn-login {
    color: #fff; font-size: 15px; font-weight: 500; text-decoration: none;
    padding: 8px 16px; border: 1px solid #fff; border-radius: 10px; transition: all 0.2s;
  }
  .btn-login:hover { border-color: var(--c-single); color: var(--c-single); }

  .container { max-width: 1000px; margin: 0 auto; padding: 16px; }

  /* ─── Hero ─── */
  .hero {
    text-align: center; padding: 48px 16px 36px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,153,51,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero h1 {
    font-size: 47px; font-weight: 900; color: #0f172a; text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    line-height: 1.15; margin-bottom: 12px; letter-spacing: -1px;
  }
  .hero h1 .accent { color: var(--c-single); }
  .hero .tagline {
    font-size: 17px; color: #64748b; max-width: 520px;
    margin: 0 auto 28px; line-height: 1.5;
  }
  .hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-cta {
    padding: 14px 32px;
    background: var(--c-single);
    border: 2px solid var(--c-single); border-radius: 10px;
    color: #fff; font-size: 16px; font-weight: 700; text-shadow: 0 1px 2px rgba(0,0,0,0.2); letter-spacing: 0.3px;
    cursor: pointer; text-decoration: none; transition: opacity 0.2s; flex: 1; text-align: center;
  }
  .btn-cta:hover { opacity: 0.9; }
  .btn-cta-outline {
    padding: 14px 32px; background: #fff;
    border: 2px solid #1e293b; border-radius: 10px;
    color: #1e293b; font-size: 16px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: all 0.2s; flex: 1; text-align: center;
  }
  .btn-cta-outline:hover { opacity: 0.9; }

  /* ─── Offer cards ─── */
  .offers {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin: 0 auto 32px; max-width: 860px; padding: 0 16px;
  }
  .offer-card {
    background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 14px;
    padding: 24px 20px; text-align: center;
    transition: border-color 0.2s, transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
  .offer-card:hover { transform: translateY(-2px); }
  .offer-card:nth-child(1) { border-top: 3px solid var(--c-single); }
  .offer-card:nth-child(1):hover { border-color: var(--c-single); }
  .offer-card:nth-child(2) { border-top: 3px solid var(--c-jodi); }
  .offer-card:nth-child(2):hover { border-color: var(--c-jodi); }
  .offer-card:nth-child(3) { border-top: 3px solid var(--c-patti); }
  .offer-card:nth-child(3):hover { border-color: var(--c-patti); }
  .offer-card .offer-digits {
    display: flex; gap: 6px; justify-content: center; margin-bottom: 14px;
  }
  .offer-card .offer-dbox {
    width: 44px; height: 52px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 800;
  }
  .offer-card:nth-child(1) .offer-dbox {
    background: var(--c-single-bg); color: var(--c-single); border: 1px solid var(--c-single-border);
  }
  .offer-card:nth-child(2) .offer-dbox {
    background: var(--c-jodi-bg); color: var(--c-jodi); border: 1px solid var(--c-jodi-border);
  }
  .offer-card:nth-child(3) .offer-dbox {
    background: var(--c-patti-bg); color: var(--c-patti); border: 1px solid var(--c-patti-border);
  }
  .offer-card .offer-name {
    font-size: 18px; font-weight: 800; color: #0f172a; margin-bottom: 2px;
  }
  .offer-card .offer-mult {
    font-size: 14px; font-weight: 700; margin-bottom: 10px;
  }
  .offer-card:nth-child(1) .offer-mult { color: var(--c-single); }
  .offer-card:nth-child(2) .offer-mult { color: var(--c-jodi); }
  .offer-card:nth-child(3) .offer-mult { color: var(--c-patti); }
  .offer-card .offer-range {
    font-size: 12px; color: #94a3b8; margin-bottom: 14px;
  }
  .offer-card .offer-example {
    padding: 8px 12px; background: #f8fafc;
    border-radius: 8px; font-size: 12px; color: #64748b; border: 1px solid #e2e8f0;
  }
  .offer-card .offer-example b { color: #0f172a; }

  /* ─── Live latest block ─── */
  
  
  
  
  
  
  

  
  
  
  
  
  

  /* Result digits */
  
  
  

  
  
  

  
  
  

  
  

  

  /* ─── Results table ─── */
  .section-title {
    font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
    color: #94a3b8; font-weight: 700; margin-bottom: 14px;
  }
  .results-table {
    width: 100%; border-collapse: separate; border-spacing: 0 4px;
  }
  .results-table thead th {
    font-size: 10px; text-transform: uppercase; letter-spacing: 1px;
    color: #94a3b8; font-weight: 600; padding: 8px 10px; text-align: center;
  }
  .results-table thead th:first-child { text-align: left; }
  .results-table tbody tr { background: #f8fafc; transition: background 0.15s; }
  .results-table tbody tr:hover { background: #f1f5f9; }
  .results-table td { padding: 10px 12px; vertical-align: middle; }
  .results-table tbody tr td:first-child { border-radius: 8px 0 0 8px; }
  .results-table tbody tr td:last-child { border-radius: 0 8px 8px 0; }

  .td-block { font-weight: 700; font-size: 14px; color: #334155; white-space: nowrap; width: 90px; }
  .td-info { width: auto; }
  .td-info .hash {
    font-size: 13px; color: #94a3b8;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    letter-spacing: 0.5px;
  }
  .td-info .hash a { color: inherit; text-decoration: none; }
  .td-info .hash a:hover { color: #8a9bb0; }

  .td-patti { text-align: center; width: 120px; }
  .patti-digits { display: inline-flex; gap: 3px; }
  .patti-digit {
    width: 30px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-patti-bg); border-radius: 6px;
    font-size: 17px; font-weight: 700; color: var(--c-patti);
    border: 1px solid var(--c-patti-border);
  }

  .td-jodi { text-align: center; width: 70px; }
  .jodi-digits { display: inline-flex; gap: 3px; }
  .jodi-digit {
    width: 26px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-jodi-bg); border-radius: 6px;
    font-size: 16px; font-weight: 700; color: var(--c-jodi);
    border: 1px solid var(--c-jodi-border);
  }

  .td-single { text-align: center; width: 60px; }
  .single-circle {
    width: 36px; height: 42px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; color: #fff;
    background: var(--c-single);
  }


  /* Recent Blocks card */
  .recent-blocks-card {
    background: #0f172a;
    border: 1px solid rgba(255,153,51,0.2);
    border-radius: 14px;
    padding: 20px;
    margin: 0 6px 24px;
    box-shadow: 0 0 20px rgba(255,153,51,0.08);
    overflow: hidden;
  }
  .recent-blocks-card .lb-title { padding: 6px 10px 4px; }
  .recent-blocks-card .results-table { border-spacing: 0 3px; }

  .recent-blocks-card .patti-digit {
    background: var(--c-patti); color: #fff; border: none;
    width: 30px; height: 34px; border-radius: 6px;
    font-size: 17px; font-weight: 700;
  }
  .recent-blocks-card .jodi-digit {
    background: var(--c-jodi); color: #fff; border: none;
    width: 30px; height: 34px; border-radius: 6px;
    font-size: 17px; font-weight: 700;
  }
  .recent-blocks-card .single-circle {
    background: var(--c-single); color: #fff;
    width: 30px; height: 34px; border-radius: 6px;
    font-size: 17px; font-weight: 700;
  }

  .recent-blocks-card .results-table thead th {
    color: rgba(255,255,255,0.35);
  }
  .recent-blocks-card .results-table tbody tr {
    background: rgba(255,255,255,0.04);
  }
  .recent-blocks-card .results-table tbody tr:hover,
  .recent-blocks-card .results-table tbody tr.data-row:hover {
    background: rgba(255,255,255,0.08);
  }
  .recent-blocks-card .results-table tbody tr.data-row.expanded {
    background: rgba(255,153,51,0.08);
  }
  .recent-blocks-card .td-block { color: #fff; }
  .recent-blocks-card .block-num { font-size: 15px; font-weight: 800; color: #fff; }
  .recent-blocks-card .td-block div:not(.block-num) { color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 400; }
  .recent-blocks-card .td-info .hash { color: rgba(255,255,255,0.3); }
  .recent-blocks-card .td-info .hash a { color: rgba(255,255,255,0.3); }
  .recent-blocks-card .td-info .hash a:hover { color: rgba(255,255,255,0.5); }

  /* Expandable hash detail */
  .data-row { cursor: pointer; }
  .detail-row { display: none; }
  .detail-row.show { display: table-row; }
  .detail-row, .detail-row:hover { background: transparent !important; }
  .detail-row td { padding: 2px 0 6px; }

  /* ─── Stats ─── */
  .stats-section {
    margin: 24px 6px 0; background: #0f172a;
    border-radius: 14px; padding: 20px 24px;
    border: 1px solid rgba(255,153,51,0.2);
    box-shadow: 0 0 20px rgba(255,153,51,0.08);
  }
  .stats-section h3 {
    font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
    color: #fff; margin-bottom: 16px; font-weight: 800;
  }
  .stats-grid { display: flex; gap: 6px; justify-content: space-between; }
  .stat-bar { flex: 1; text-align: center; }
  .stat-bar .digit-label { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
  .stat-bar .bar-track {
    height: 80px; background: rgba(255,255,255,0.04); border-radius: 6px;
    position: relative; display: flex; flex-direction: column;
    justify-content: flex-end; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .stat-bar .bar-fill {
    background: linear-gradient(180deg, var(--c-single) 0%, #c47315 100%);
    border-radius: 4px 4px 0 0; transition: height 0.5s ease; min-height: 2px;
  }
  .stat-bar .bar-count { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); margin-top: 6px; }
  .stat-bar.max-bar .bar-fill { background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%); box-shadow: 0 0 12px rgba(239,68,68,0.4); }
  .stat-bar.max-bar .digit-label { color: #ef4444; }
  .stat-bar.max-bar .bar-count { color: #ef4444; }
  .stat-bar.min-bar .bar-fill { background: linear-gradient(180deg, #22c55e 0%, #15803d 100%); box-shadow: 0 0 12px rgba(34,197,94,0.4); }
  .stat-bar.min-bar .digit-label { color: #22c55e; }
  .stat-bar.min-bar .bar-count { color: #22c55e; }

  /* ─── How it works ─── */
  .how-section {
    margin-top: 24px; background: #f1f5f9;
    border-radius: 12px; padding: 24px; border: 1px solid #e2e8f0; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
  .how-section h3 {
    font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
    color: #94a3b8; margin-bottom: 16px; font-weight: 600;
  }
  .how-steps { display: flex; flex-direction: column; gap: 10px; }
  .how-step {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15px; color: #e2e8f0; line-height: 1.6;
  }
  .how-step .sn {
    flex-shrink: 0; width: 24px; height: 24px;
    border-radius: 50%; background: var(--c-single); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
  }
  .how-step code {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); font-size: 14px; font-weight: 600; color: #94a3b8; padding: 2px 6px; border-radius: 4px;
    font-size: 12px; font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  }
  .code-patti { color: var(--c-patti); background: var(--c-patti-bg); font-weight: 800; }
  .code-jodi { color: var(--c-jodi); background: var(--c-jodi-bg); font-weight: 800; }
  .code-single { color: var(--c-single); background: var(--c-single-bg); font-weight: 800; }

  /* ─── Footer ─── */
  .footer-links {
    margin-top: 24px; padding: 20px 0; text-align: center;
    display: flex; justify-content: center; gap: 24px;
  }
  .footer-links a { color: #94a3b8; font-size: 12px; text-decoration: none; }
  .footer-links a:hover { color: #64748b; }

  /* ─── Responsive ─── */
  @media (max-width: 700px) {
    .hero { padding: 32px 16px 24px; }
    .hero h1 { font-size: 30px; }
    .hero .tagline { font-size: 15px; }
    .offers { grid-template-columns: 1fr; max-width: 400px; }
    .offer-card .offer-dbox { width: 38px; height: 44px; font-size: 18px; }
    .container { padding: 10px; }
    
    
    .lb-patti-digit, 
    
    
    .patti-digit { width: 26px; height: 30px; font-size: 15px; }
    .jodi-digit { width: 22px; height: 30px; font-size: 14px; }
    .single-circle { width: 30px; height: 36px; font-size: 16px; border-radius: 8px; }
    
    .recent-blocks-card { padding: 14px 10px; margin: 0 6px 24px; }
    .recent-blocks-card .td-block { width: auto; }
    .recent-blocks-card .block-num { font-size: 15px; }
    .recent-blocks-card .td-block div:not(.block-num) { font-size: 10px; font-weight: 400; }
    .recent-blocks-card .results-table td { padding: 8px 6px; }
    .stats-grid { flex-wrap: wrap; }
    .stat-bar { min-width: 28px; }
  }

  /* Streaks — chain links */
  .streaks-section {
    margin: 24px 6px 0; background: #0f172a;
    border: 1px solid rgba(255,153,51,0.2); border-radius: 14px; padding: 24px;
    box-shadow: 0 0 20px rgba(255,153,51,0.08);
  }
  .streaks-section h3 {
    font-size: 14px; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .streak-list { display: flex; flex-direction: column; gap: 10px; }
  .streak-row { display: flex; align-items: center; }
  .streak-row .streak-dbox {
    width: 34px; height: 34px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--c-single); color: #fff; font-size: 15px; font-weight: 800;
    flex-shrink: 0;
  }
  .streak-row.best .streak-dbox { box-shadow: 0 0 14px rgba(255,153,51,0.35); }
  .streak-row .streak-arrow { flex-shrink: 0; }
  .streak-meta { margin-left: 16px; display: flex; align-items: center; gap: 10px; }
  .streak-count-badge {
    font-family: monospace; font-size: 15px; font-weight: 900; color: #fff;
    background: rgba(255,153,51,0.12); border: 1px solid rgba(255,153,51,0.2);
    padding: 4px 10px; border-radius: 6px;
  }
  .streak-row.best .streak-count-badge { background: rgba(255,153,51,0.2); color: var(--c-single); }
  .streak-block { font-size: 11px; color: #fff; }
  .streak-none {
    font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; padding: 16px;
  }



  /* Offer cards mobile: horizontal compact layout */
  @media (max-width: 700px) {
    .offers, .offers-b { gap: 10px !important; }
    .offer-card { text-align: left !important; }
    .offer-card .offer-mult-big { display: none !important; }
    .offer-card .offer-right .offer-example { display: none !important; }
    .offer-card .offer-right .offer-desc-text { margin-bottom: 0 !important; }
  }
  /* Mobile variant cards */
  .mobile-offers { display: none; }
  @media (max-width: 700px) {
    .offers { display: none !important; }
    .mobile-offers { display: flex; flex-direction: column; gap: 10px; max-width: 860px; margin: 0 auto 16px; padding: 0 16px; }
    .mobile-offers-label { font-size: 9px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; font-weight: 600; }
  }
  /* Variant A: aligned names (patti level) */
  .mv-a { display: flex; flex-direction: column; gap: 10px; }
  .mv-a .mv-card { display: flex; align-items: center; gap: 0; padding: 14px 18px; background: #0f172a; border-radius: 14px; border-left: none; box-shadow: none; }
  .mv-a .mv-mult { font-size: 32px; font-weight: 900; width: 115px; text-align: left; padding-right: 16px; }
  .mv-a .mv-s .mv-mult { color: var(--c-single); }
  .mv-a .mv-j .mv-mult { color: var(--c-jodi); }
  .mv-a .mv-p .mv-mult { color: var(--c-patti); }
  .mv-a .mv-info .mv-name { font-size: 16px; font-weight: 800; color: #fff; }
  .mv-a .mv-info .mv-desc { font-size: 12px; color: rgba(255,255,255,0.7); }

  /* Variant B: staircase (fixed gap after mult) */
  .mv-b { display: flex; flex-direction: column; gap: 10px; }
  .mv-b .mv-card { display: flex; align-items: center; padding: 14px 18px; background: #fff; border-radius: 14px; border-left: 4px solid; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
  .mv-b .mv-s { border-color: var(--c-single); }
  .mv-b .mv-j { border-color: var(--c-jodi); }
  .mv-b .mv-p { border-color: var(--c-patti); }
  .mv-b .mv-mult { font-size: 32px; font-weight: 900; margin-right: 16px; }
  .mv-b .mv-s .mv-mult { color: var(--c-single); }
  .mv-b .mv-j .mv-mult { color: var(--c-jodi); }
  .mv-b .mv-p .mv-mult { color: var(--c-patti); }
  .mv-b .mv-info .mv-name { font-size: 16px; font-weight: 800; color: #0f172a; }
  .mv-b .mv-info .mv-desc { font-size: 12px; color: #94a3b8; }

  /* How It Works — togglable */
  .how-toggle-wrap {
    max-width: 860px; margin: 0 auto; padding: 0 16px;
    display: none;
  }
  .how-toggle-wrap.open { display: block; }
  .how-toggle-inner {
    background: #0f172a; border: none; border-radius: 14px;
    padding: 24px; margin-bottom: 16px; position: relative;
  }
  .how-close {
    position: absolute; top: 12px; right: 14px;
    background: none; border: none; font-size: 20px; color: #64748b;
    cursor: pointer; line-height: 1; padding: 0;
  }
  .how-close:hover { color: #94a3b8; }

  .how-toggle-inner .code-patti { background: rgba(226,55,68,0.2); color: var(--c-patti); }
  .how-toggle-inner .code-jodi { background: rgba(29,185,84,0.2); color: var(--c-jodi); }
  .how-toggle-inner .code-single { background: rgba(255,153,51,0.2); color: var(--c-single); }



  /* Latest Block — V11 style */
  .latest-block-card { background: #0f172a; border: 1px solid rgba(255,153,51,0.2); border-radius: 14px; padding: 20px; margin: 0 6px 24px; box-shadow: 0 0 20px rgba(255,153,51,0.08); position: relative; overflow: hidden; text-align: left; }
  .lb-title { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; margin-bottom: 8px; color: var(--c-single); }
  .lb-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
  .lb-block-num { font-size: 15px; font-weight: 800; color: #fff; }
  .lb-block-time { font-size: 13px; color: rgba(255,255,255,0.5); }
  .lb-hash-box { font-family: monospace; font-size: 15px; word-break: break-all; line-height: 1.8; padding: 14px 16px; border-radius: 10px; margin-bottom: 16px; background: rgba(255,153,51,0.05); border: 1px solid rgba(255,153,51,0.15); color: rgba(255,255,255,0.6); }
  .lb-hash-box a { color: inherit; text-decoration: none; }
  .lb-hash-box .hl-patti { color: var(--c-patti); font-weight: 800; }
  .lb-hash-box .hl-jodi { color: var(--c-jodi); font-weight: 800; }
  .lb-hash-box .hl-single { color: var(--c-single); font-weight: 800; }
  .lb-results { display: flex; align-items: flex-end; justify-content: space-evenly; width: 100%; }
  .lb-rg { text-align: center; }
  .lb-rg-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 6px; }
  .lb-rg-label.lp { color: var(--c-patti); }
  .lb-rg-label.lj { color: var(--c-jodi); }
  .lb-rg-label.ls { color: var(--c-single); }
  .lb-rg-digits { display: inline-flex; gap: 4px; }
  .lb-rg-d { width: 36px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; }
  .lb-rg-d.dp { background: var(--c-patti); color: #fff; border: none; }
  .lb-rg-d.dj { background: var(--c-jodi); color: #fff; border: none; }
  .lb-rg-d.ds { background: var(--c-single); color: #fff; border: none; }


  /* Sticky Bet Now in header */
  .header-bet-now {
    display: none;
    padding: 8px 20px;
    background: var(--c-single);
    border: 2px solid var(--c-single);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.3px;
  }


  /* Hero banner */
  .hero-banner {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 1px solid rgba(255,153,51,0.2);
    border-radius: 14px;
    padding: 18px 20px;
    margin: 0 16px 16px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255,153,51,0.06);
  }
  .hero-banner-top {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
  }
  .hero-banner-main {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .hero-banner-main .sat { color: var(--c-single); }
  .hero-banner-main .btc { color: #fbbf24; }
  .hero-banner-digits {
    display: inline-flex;
    gap: 3px;
    margin: 0 4px;
  }
  .hero-banner-digit {
    width: 22px;
    height: 26px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--c-single);
  }
  .hero-banner-mid {
    font-size: 14px;
    color: #fff;
    margin-top: 6px;
  }
  .hero-banner-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 6px;
  }

/* ─── Extracted inline styles ─── */
#header-block-info {
  background: #0a0f14; border: 1px solid #1e293b; border-radius: 10px;
  padding: 8px 16px; text-align: right; position: absolute;
  left: 50%; transform: translateX(-50%);
}
#header-block-num {
  font-family: monospace; font-weight: 700; color: var(--c-single); font-size: 13px;
}
.header-timer {
  font-family: monospace; font-size: 11px; color: #22c55e; margin-top: 6px; font-weight: 600;
}
.hero-banner-link {
  text-decoration: none; display: block; cursor: pointer;
}
.hero-h1 {
  font-size: 36px; font-weight: 900; letter-spacing: -0.5px;
}
.hero .tagline.tagline-dark {
  color: #0f172a;
}
.tagline-link {
  color: var(--c-single); text-decoration: underline;
}
.how-title {
  font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--c-single); margin-bottom: 16px; font-weight: 800;
}
.hl-patti-i { color: var(--c-patti); font-weight: 800; }
.hl-jodi-i { color: var(--c-jodi); font-weight: 800; }
.hl-single-i { color: var(--c-single); font-weight: 800; }
.strong-patti { color: var(--c-patti); }
.strong-jodi { color: var(--c-jodi); }
.strong-single { color: var(--c-single); }
.code-result { font-size: 15px; font-weight: 800; }
.offers-home { margin-top: 0; }
.offer-card-home { padding: 20px; }
.offer-mult-big {
  font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 8px; text-align: center;
}
.offer-mult-single { color: var(--c-single); }
.offer-mult-jodi { color: var(--c-jodi); }
.offer-mult-patti { color: var(--c-patti); }
.offer-name-text {
  font-size: 17px; font-weight: 800; color: #0f172a; margin-bottom: 4px;
}
.offer-desc-text {
  font-size: 13px; color: #64748b; margin-bottom: 10px;
}
#latest-card { display: none; }
.lb-title-row {
  display: flex; justify-content: space-between; align-items: center;
}
.lb-title-date { color: #fff; }
.th-left { text-align: left; }
.th-patti { color: var(--c-patti); }
.th-jodi { color: var(--c-jodi); }
.th-single { color: var(--c-single); }
.section-sub {
  font-weight: 400; font-size: 12px; color: rgba(255,255,255,0.35);
  text-transform: none; letter-spacing: 0;
}
.block-time {
  font-size: 11px; color: #94a3b8;
}
.avatar-img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
}
.about-section {
  margin-top: 5px; padding-left: 22px; padding-right: 22px;
}
.tagline-about {
  color: #0f172a; max-width: none; text-align: left;
}
.tagline-about-mid { margin-bottom: 14px; }
.tagline-about-last { margin-bottom: 0; }

/* ─── Logged-in state ─── */
.header-bet-center {
  display: none;
  padding: 8px 24px;
  background: var(--c-single);
  border: 2px solid var(--c-single);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header-bet-center:hover { opacity: 0.9; }
.hero-logged {
  text-align: center;
  padding: 36px 16px 28px;
}
.hero-logged-label {
  font-size: 14px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-logged-block {
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
}
.hero-logged-block span {
  color: var(--c-single);
}
.hero-logged-timer {
  font-family: monospace;
  font-size: 32px;
  font-weight: 800;
  color: #22c55e;
  letter-spacing: 2px;
}
