:root {
      --red: #ff1f22;
      --red-dark: #7a0508;
      --gold: #ffd84d;
      --green: #34d259;
      --ink: #111111;
      --muted: #636773;
      --line: #eceff3;
      --paper: #ffffff;
      --soft: #f7f7f8;
      --shell: min(1120px, calc(100vw - 44px));
      font-family: Arial, Helvetica, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: #fff;
      color: var(--ink);
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    .shell {
      width: var(--shell);
      margin: 0 auto;
    }

    .topbar {
      background: var(--red);
      color: #111;
    }
    .topbar-inner {
      height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .brand-badge {
      width: 118px;
      height: 58px;
      display: grid;
      place-items: center;
      border: 3px solid #fff;
      border-radius: 10px;
      background: linear-gradient(180deg, #fff7c2, #ffc92d);
      color: #e60012;
      box-shadow: 0 8px 0 rgba(0,0,0,.14);
      font-weight: 1000;
      line-height: .9;
      transform: skew(-6deg);
    }
    .brand-badge span {
      display: block;
      font-size: 29px;
      letter-spacing: 0;
      text-shadow: 2px 2px 0 #fff;
    }
    .brand small {
      display: block;
      margin-top: 4px;
      color: rgba(0,0,0,.7);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0;
      transform: skew(6deg);
    }
    .account {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .pill {
      min-width: 118px;
      padding: 13px 20px;
      border-radius: 7px;
      background: var(--green);
      color: #0a2a0f;
      font-size: 13px;
      font-weight: 900;
      text-align: center;
      text-transform: uppercase;
      box-shadow: 0 5px 0 rgba(0,0,0,.16);
    }
    .pill.gold {
      background: var(--gold);
      color: #351a00;
    }

    .nav-wrap { background: #210202; }
    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      min-height: 48px;
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .nav a { opacity: .94; }
    .nav a.active,
    .nav a:hover { color: var(--gold); }

    .hero {
      position: relative;
      min-height: 470px;
      display: flex;
      align-items: stretch;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.72) 36%, rgba(0,0,0,.12) 68%, rgba(0,0,0,.1) 100%),
        url("123bong-hero.jpg") center / cover no-repeat;
      border-bottom: 5px solid #f0c238;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 540px) 1fr;
      align-items: center;
      min-height: 470px;
    }
    .hero-copy {
      padding: 44px 0;
    }
    .hero-logo {
      width: 126px;
      margin-bottom: 22px;
      padding: 10px 12px;
      border: 2px solid #fff;
      border-radius: 10px;
      background: linear-gradient(180deg, #fff, #ffd44a);
      color: #e60012;
      font-size: 28px;
      font-weight: 1000;
      line-height: 1;
      text-align: center;
      box-shadow: 0 12px 0 rgba(0,0,0,.28);
    }
    .hero h1 {
      margin: 0;
      color: #fff;
      font-size: 54px;
      line-height: 1.02;
      letter-spacing: 0;
      text-transform: uppercase;
      text-shadow: 0 4px 0 #9d060a, 0 12px 34px rgba(0,0,0,.7);
    }
    .hero h1 strong {
      display: block;
      color: var(--gold);
    }
    .hero p {
      max-width: 490px;
      margin: 22px 0 0;
      color: rgba(255,255,255,.86);
      font-size: 17px;
      line-height: 1.72;
      font-weight: 600;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      border: 0;
      border-radius: 7px;
      background: var(--red);
      color: #fff;
      font-size: 14px;
      font-weight: 1000;
      text-transform: uppercase;
      box-shadow: 0 6px 0 rgba(122,5,8,.9);
    }
    .btn.dark {
      background: #161616;
      color: #fff;
      border: 1px solid rgba(255,255,255,.28);
      box-shadow: none;
    }

    .intro {
      padding: 42px 0 22px;
      background: #fff;
    }
    .intro h2 {
      margin: 0 0 28px;
      color: var(--red);
      font-size: 27px;
      line-height: 1.2;
      text-align: center;
      text-transform: uppercase;
    }
    .notice {
      padding: 28px 32px;
      border: 3px solid var(--red);
      border-radius: 12px;
      color: #222;
      font-size: 16px;
      line-height: 1.78;
    }
    .notice p { margin: 0 0 18px; }
    .notice p:last-child { margin-bottom: 0; }
    .notice b { color: #e40012; }
    .link-line {
      margin-top: 20px;
      color: #e40012;
      font-weight: 900;
    }

    .info-table-section {
      padding: 18px 0 38px;
      background: #fff;
    }
    .section-title {
      margin: 0 0 18px;
      color: var(--red);
      font-size: 29px;
      line-height: 1.18;
      text-transform: uppercase;
    }
    .info-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
      background: #fff;
      border-top: 1px solid var(--line);
    }
    .info-table th,
    .info-table td {
      padding: 13px 12px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }
    .info-table th {
      width: 210px;
      color: #555;
      font-weight: 900;
    }
    .info-table td {
      color: #676d78;
      line-height: 1.55;
    }
    .ad-strip {
      margin: 20px 0 0;
      overflow: hidden;
      border-radius: 7px;
      border: 1px solid #f4be25;
      background: linear-gradient(90deg, #ffe24c, #ff1f22, #ffe24c);
      color: #260000;
      font-weight: 1000;
      text-align: center;
      padding: 12px;
      text-transform: uppercase;
    }

    .faq {
      padding: 24px 0 48px;
      background: #fff;
    }
    .faq h2,
    .news h2 {
      margin: 0 0 24px;
      color: var(--red);
      font-size: 28px;
      line-height: 1.18;
      text-align: center;
      text-transform: uppercase;
    }
    .faq-list {
      border-top: 1px solid #ddd;
    }
    .faq-item {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 8px;
      align-items: center;
      padding: 17px 0;
      border-bottom: 1px solid #ddd;
      color: #4e5561;
      font-size: 16px;
      font-weight: 700;
    }
    .chev {
      width: 18px;
      height: 18px;
      border-right: 2px solid #777;
      border-bottom: 2px solid #777;
      transform: rotate(45deg) translateY(-4px);
      opacity: .8;
    }

    .news {
      padding: 26px 0 64px;
      background: #fff;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 34px;
    }
    .news-card {
      background: #fff;
      text-align: center;
    }
    .news-card img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border-radius: 0;
      box-shadow: 0 14px 35px rgba(0,0,0,.12);
    }
    .news-card h3 {
      min-height: 58px;
      margin: 18px 0 9px;
      color: var(--red);
      font-size: 17px;
      line-height: 1.28;
      font-weight: 1000;
    }
    .news-card p {
      margin: 0;
      color: #3d4048;
      font-size: 14px;
      line-height: 1.6;
    }

    .footer {
      padding: 58px 0 0;
      background: #fff;
      color: #333;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr 1.1fr;
      gap: 58px;
      align-items: start;
    }
    .footer-logo {
      width: 154px;
      margin-bottom: 16px;
      padding: 12px 14px;
      border-radius: 10px;
      background: linear-gradient(180deg, #fff8c6, #ffc629);
      color: #e60012;
      font-size: 32px;
      font-weight: 1000;
      text-align: center;
      box-shadow: inset 0 0 0 3px #fff, 0 10px 0 rgba(0,0,0,.1);
    }
    .footer h3 {
      margin: 0 0 18px;
      color: var(--red);
      font-size: 22px;
      text-transform: uppercase;
    }
    .footer p,
    .footer li {
      margin: 0;
      color: #535964;
      font-size: 15px;
      line-height: 1.75;
    }
    .footer ul {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .footer li::before {
      content: "›";
      margin-right: 8px;
      color: #2eb64c;
      font-weight: 1000;
    }
    .copyright {
      margin-top: 44px;
      padding: 18px 0;
      background: var(--red);
      color: rgba(255,255,255,.9);
      text-align: center;
      font-size: 13px;
      font-weight: 700;
    }

    @media (max-width: 860px) {
      :root { --shell: min(640px, calc(100vw - 28px)); }
      .topbar-inner {
        height: auto;
        padding: 14px 0;
        flex-direction: column;
        align-items: flex-start;
      }
      .brand-badge { width: 102px; height: 52px; }
      .brand-badge span { font-size: 25px; }
      .account { width: 100%; gap: 10px; }
      .pill { flex: 1; min-width: 0; padding: 12px 10px; }
      .nav {
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
        padding: 0 14px;
        width: 100%;
      }
      .hero {
        min-height: 0;
        background-position: 60% center;
      }
      .hero-inner {
        display: block;
        min-height: 0;
      }
      .hero-copy {
        padding: 42px 0 54px;
      }
      .hero-logo { width: 108px; font-size: 23px; }
      .hero h1 {
        max-width: 340px;
        font-size: 38px;
      }
      .hero p {
        max-width: 340px;
        font-size: 15px;
      }
      .btn { width: 100%; }
      .intro { padding-top: 34px; }
      .intro h2 { font-size: 23px; }
      .notice {
        padding: 20px 18px;
        font-size: 15px;
      }
      .section-title { font-size: 24px; }
      .info-table,
      .info-table tbody,
      .info-table tr,
      .info-table th,
      .info-table td {
        display: block;
        width: 100%;
      }
      .info-table th {
        padding-bottom: 5px;
        border-bottom: 0;
      }
      .info-table td {
        padding-top: 0;
      }
      .news-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .news-card h3 { min-height: 0; }
      .footer { padding-top: 42px; }
    }

    .article-hero {
      padding: 58px 0 50px;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.38)),
        url("123bong-hero.jpg") center / cover no-repeat;
      border-bottom: 5px solid #f0c238;
    }
    .breadcrumb-line {
      margin-bottom: 16px;
      color: rgba(255,255,255,.75);
      font-size: 13px;
      font-weight: 700;
    }
    .article-hero h1 {
      max-width: 880px;
      margin: 0;
      color: #fff;
      font-size: 46px;
      line-height: 1.08;
      letter-spacing: 0;
      text-transform: uppercase;
      text-shadow: 0 4px 0 #9d060a, 0 12px 34px rgba(0,0,0,.7);
    }
    .article-hero p {
      max-width: 760px;
      margin: 18px 0 0;
      color: rgba(255,255,255,.86);
      font-size: 17px;
      line-height: 1.75;
      font-weight: 600;
    }
    .article-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 30px;
      padding: 46px 0 62px;
      background: #fff;
    }
    .article-card,
    .side-card {
      background: #fff;
      border: 1px solid #eceff3;
      border-radius: 10px;
      box-shadow: 0 16px 45px rgba(0,0,0,.08);
    }
    .article-card { padding: 32px; }
    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      margin-bottom: 22px;
      color: #636773;
      font-size: 13px;
      font-weight: 700;
    }
    .article-main-image {
      margin: 0 0 28px;
      overflow: hidden;
      border-radius: 8px;
      background: #111;
    }
    .article-main-image img {
      width: 100%;
      aspect-ratio: 16 / 7;
      object-fit: cover;
    }
    .article-body {
      color: #30343c;
      font-size: 17px;
      line-height: 1.86;
    }
    .article-body h2,
    .article-body h3 {
      margin: 30px 0 12px;
      color: #ff1f22;
      line-height: 1.22;
      text-transform: uppercase;
    }
    .article-body p { margin: 0 0 18px; }
    .article-body img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .article-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin: 32px 0 10px;
      padding: 22px;
      border-radius: 9px;
      background: #210202;
      color: #fff;
    }
    .article-cta strong { display: block; margin-bottom: 4px; color: #ffd84d; }
    .article-cta span { color: rgba(255,255,255,.78); }
    .article-actions {
      margin-top: 26px;
      padding-top: 22px;
      border-top: 1px solid #eceff3;
      color: #535964;
      font-size: 14px;
      font-weight: 700;
    }
    .article-actions ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .article-actions a { color: #ff1f22; font-weight: 900; }
    .side-stack { display: grid; gap: 18px; align-content: start; }
    .side-card { overflow: hidden; padding: 22px; }
    .side-card img {
      width: calc(100% + 44px);
      max-width: none;
      height: 178px;
      margin: -22px -22px 18px;
      object-fit: cover;
    }
    .side-card h2,
    .side-card h3 {
      margin: 0 0 10px;
      color: #ff1f22;
      line-height: 1.2;
      text-transform: uppercase;
    }
    .side-card p,
    .side-card li {
      color: #535964;
      line-height: 1.7;
      font-size: 14px;
    }
    .side-card ul { margin: 0; padding-left: 18px; }
    .news-card a { color: inherit; text-decoration: none; }

    @media (max-width: 860px) {
      .article-hero { padding: 42px 0 36px; }
      .article-hero h1 { font-size: 31px; }
      .article-layout { grid-template-columns: 1fr; padding: 34px 0 48px; }
      .article-card { padding: 20px; }
      .article-main-image img { aspect-ratio: 16 / 10; }
      .article-cta { align-items: flex-start; flex-direction: column; }
      .side-card img { height: 166px; }
    }

