:root {
      --black: #050505;
      --panel: #0e0e0f;
      --panel-2: #151112;
      --red: #ff2d2d;
      --red-2: #b90912;
      --gold: #ffd15a;
      --gold-2: #d08116;
      --cyan: #28c8ff;
      --text: #f7f7f7;
      --muted: #c7ccd8;
      --soft: #8f98a8;
      --line: rgba(255, 209, 90, .22);
      --shadow: 0 0 32px rgba(255, 45, 45, .28);
      --max: 1220px;
    }

    * { box-sizing: border-box; }

    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 52% 0%, rgba(255, 45, 45, .16), transparent 38rem),
        linear-gradient(180deg, #030303 0%, #090909 50%, #101010 100%);
      letter-spacing: 0;
    }

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

    .top {
      background: #000;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .top-inner {
      width: min(var(--max), calc(100% - 44px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-weight: 900;
      line-height: 1;
    }

    .brand-mark {
      width: 56px;
      height: 48px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      color: #170700;
      background: linear-gradient(145deg, #ffe98c, #e33818 62%, #8c050b);
      border: 1px solid rgba(255, 209, 90, .7);
      box-shadow: 0 10px 26px rgba(227, 56, 24, .3);
      font-size: 18px;
    }

    .brand-word {
      font-size: 42px;
      color: var(--red);
      text-shadow: 0 2px 0 #5b0000, 0 0 16px rgba(255, 45, 45, .42);
    }

    .brand-word span { color: var(--gold); }

    .actions {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .btn {
      min-height: 42px;
      min-width: 0;
      padding: 0 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, .16);
      color: #fff;
      background: #151515;
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
      letter-spacing: 0;
    }

    .btn.red {
      background: linear-gradient(180deg, #ff3939, #b90912);
      border-color: rgba(255, 97, 97, .5);
      box-shadow: 0 12px 24px rgba(255, 45, 45, .28);
    }

    .btn.gold {
      color: #190b00;
      background: linear-gradient(180deg, #ffe58b, #e99a1d);
      border-color: rgba(255, 230, 139, .7);
      box-shadow: 0 12px 24px rgba(255, 209, 90, .22);
    }

    .nav {
      background: #100202;
      border-bottom: 1px solid rgba(255, 45, 45, .2);
    }

    .nav-inner {
      width: min(var(--max), calc(100% - 44px));
      margin: 0 auto;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .nav-inner::-webkit-scrollbar { display: none; }

    .nav-inner a {
      flex: 0 0 auto;
      padding: 19px 0;
      color: var(--gold);
      font-weight: 900;
      font-size: 14px;
      text-transform: uppercase;
      position: relative;
      text-shadow: 0 0 12px rgba(255, 209, 90, .4);
      white-space: nowrap;
    }

    .nav-inner a:first-child::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 10px;
      height: 3px;
      background: var(--cyan);
      box-shadow: 0 0 10px rgba(40, 200, 255, .8);
    }

    .hero {
      min-height: 540px;
      position: relative;
      background: #07101d;
      overflow: hidden;
      border-bottom: 1px solid rgba(255, 209, 90, .18);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .72) 34%, rgba(0, 0, 0, .08) 68%),
        url("au88-hero.png");
      background-size: cover;
      background-position: center;
    }

    .hero-inner {
      position: relative;
      width: min(var(--max), calc(100% - 44px));
      min-height: 540px;
      margin: 0 auto;
      display: flex;
      align-items: center;
    }

    .hero-copy {
      width: min(680px, 100%);
      padding: 56px 0;
      text-shadow: 0 4px 16px rgba(0, 0, 0, .55);
    }

    .hero-copy h1 {
      margin: 0 0 18px;
      font-size: clamp(42px, 6vw, 76px);
      line-height: .96;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
    }

    .hero-copy h1 span {
      display: block;
      color: var(--gold);
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.08;
      margin-top: 10px;
    }

    .hero-copy p {
      max-width: 610px;
      margin: 0 0 28px;
      color: rgba(255, 255, 255, .9);
      font-size: 18px;
      line-height: 1.68;
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .ticker {
      width: min(var(--max), calc(100% - 44px));
      min-height: 54px;
      margin: -27px auto 0;
      padding: 0 22px;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border-radius: 8px;
      color: #fff;
      background: #090909;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      font-weight: 800;
    }

    .ticker strong { color: var(--red); }
    .ticker span:last-child { color: var(--gold); }

    .section {
      width: min(var(--max), calc(100% - 44px));
      margin: 44px auto 0;
    }

    .intro-card {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: 8px;
      background: rgba(9, 9, 9, .94);
      box-shadow: 0 0 24px rgba(255, 255, 255, .13);
    }

    .intro-card h2,
    .section-title,
    .side-panel h2 {
      margin: 0 0 16px;
      color: var(--red);
      font-size: 30px;
      line-height: 1.22;
      font-weight: 900;
      text-transform: uppercase;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) 360px;
      gap: 28px;
      align-items: start;
    }

    .intro-card p,
    .side-panel p,
    .feature p,
    .article-card p,
    .step p,
    .faq-card p,
    .rich-panel p,
    .detail-row p,
    .bonus-card p,
    .security-card p,
    .note-panel p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.78;
    }

    .highlight-list {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .highlight-list div {
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 13px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .055);
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .highlight-list b {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #180800;
      background: linear-gradient(180deg, #ffe58b, #e99a1d);
      font-weight: 900;
    }

    .highlight-list span {
      font-weight: 800;
      color: #f4f5f8;
      line-height: 1.35;
    }

    .side-panel {
      padding: 24px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 45, 45, .16), transparent 54%),
        #141414;
      border: 1px solid rgba(255, 45, 45, .38);
      box-shadow: var(--shadow);
    }

    .mini-stat {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .mini-stat div {
      min-height: 82px;
      padding: 14px;
      border-radius: 8px;
      border: 1px solid rgba(255, 209, 90, .2);
      background: rgba(255, 255, 255, .05);
    }

    .mini-stat strong {
      display: block;
      color: var(--gold);
      font-size: 24px;
      line-height: 1;
    }

    .mini-stat small {
      color: var(--soft);
      display: block;
      margin-top: 7px;
      line-height: 1.35;
    }

    .content-rail {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 18px;
      align-items: stretch;
    }

    .rich-panel,
    .note-panel {
      min-width: 0;
      padding: 26px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .12);
      background:
        linear-gradient(135deg, rgba(255, 45, 45, .1), transparent 46%),
        rgba(12, 12, 12, .96);
      box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    }

    .rich-panel h2,
    .note-panel h2 {
      margin: 0 0 14px;
      color: var(--gold);
      font-size: 28px;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .rich-panel p,
    .note-panel p { margin: 0 0 14px; }

    .info-stack {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .info-row {
      display: grid;
      grid-template-columns: 118px minmax(0, 1fr);
      gap: 14px;
      padding: 14px;
      border-radius: 8px;
      border: 1px solid rgba(255, 209, 90, .16);
      background: rgba(255, 255, 255, .045);
    }

    .info-row b {
      color: var(--gold);
      text-transform: uppercase;
      font-size: 13px;
      line-height: 1.4;
    }

    .info-row span {
      color: #f4f5f8;
      line-height: 1.55;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .pill-row span {
      padding: 9px 12px;
      border-radius: 999px;
      color: #160800;
      background: linear-gradient(180deg, #ffe58b, #e99a1d);
      font-size: 13px;
      font-weight: 900;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .section-head p {
      margin: 0;
      max-width: 720px;
      color: var(--muted);
      line-height: 1.7;
    }

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

    .detail-list {
      display: grid;
      gap: 12px;
    }

    .detail-row {
      display: grid;
      grid-template-columns: 180px minmax(0, 1fr) 150px;
      gap: 18px;
      align-items: center;
      padding: 17px 18px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .11);
      background: rgba(255, 255, 255, .045);
    }

    .detail-row strong {
      color: #fff;
      font-size: 18px;
      line-height: 1.3;
    }

    .detail-row p {
      margin: 0;
      font-size: 14px;
    }

    .status {
      justify-self: end;
      padding: 9px 12px;
      border-radius: 6px;
      color: #160800;
      background: var(--gold);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .feature,
    .article-card,
    .step,
    .faq-card {
      min-width: 0;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
      box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
      overflow: hidden;
    }

    .feature-media,
    .article-thumb {
      min-height: 142px;
      background:
        radial-gradient(circle at 74% 30%, rgba(255, 209, 90, .95), transparent 20%),
        radial-gradient(circle at 24% 38%, rgba(40, 200, 255, .56), transparent 22%),
        linear-gradient(135deg, #080b12, #2a080b);
      position: relative;
    }

    .feature-media::before,
    .article-thumb::before {
      content: "";
      position: absolute;
      right: 22px;
      bottom: -34px;
      width: 118px;
      height: 118px;
      border-radius: 999px;
      border: 8px solid rgba(255, 255, 255, .16);
    }

    .feature-media::after,
    .article-thumb::after {
      content: "";
      position: absolute;
      left: 26px;
      top: 30px;
      width: 78px;
      height: 78px;
      border-radius: 999px;
      border: 8px solid rgba(255, 209, 90, .46);
    }

    .feature-body,
    .article-body,
    .step,
    .faq-card {
      padding: 18px;
    }

    .feature h3,
    .article-card h3,
    .step h3,
    .faq-card h3 {
      margin: 0 0 8px;
      color: #fff;
      font-size: 19px;
      line-height: 1.28;
    }

    .feature p,
    .article-card p,
    .step p,
    .faq-card p {
      margin: 0;
      font-size: 14px;
    }

    .promo {
      min-height: 260px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      border: 1px solid rgba(255, 209, 90, .25);
      background: #070707;
      box-shadow: var(--shadow);
    }

    .promo::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .72) 42%, rgba(0, 0, 0, .08)),
        url("au88-hero.png");
      background-size: cover;
      background-position: center;
    }

    .promo-copy {
      position: relative;
      max-width: 610px;
      padding: 34px;
    }

    .promo-copy h2 {
      margin: 0 0 12px;
      color: var(--gold);
      font-size: 36px;
      line-height: 1.08;
      text-transform: uppercase;
    }

    .promo-copy p {
      margin: 0 0 22px;
      color: rgba(255, 255, 255, .86);
      line-height: 1.7;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

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

    .bonus-card,
    .security-card {
      min-width: 0;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid rgba(255, 209, 90, .18);
      background:
        linear-gradient(180deg, rgba(255, 45, 45, .12), rgba(255, 255, 255, .035)),
        #111;
      box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
    }

    .bonus-card b,
    .security-card b {
      display: block;
      margin-bottom: 12px;
      color: var(--gold);
      font-size: 14px;
      text-transform: uppercase;
    }

    .bonus-card h3,
    .security-card h3 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 20px;
      line-height: 1.25;
    }

    .bonus-card p,
    .security-card p {
      margin: 0;
      font-size: 14px;
    }

    .step-num {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      margin-bottom: 14px;
      color: #160800;
      background: var(--gold);
      font-weight: 900;
    }

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

    .date {
      width: 54px;
      min-height: 56px;
      margin-top: -48px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: #090909;
      border: 2px solid var(--gold);
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
    }

    .date small {
      display: block;
      color: var(--gold);
      font-size: 11px;
      margin-top: 4px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    footer {
      margin-top: 48px;
      padding: 28px 0;
      background: #000;
      color: #d8dce7;
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 44px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 14px;
    }

    @media (max-width: 980px) {
      .nav-inner { justify-content: flex-start; }
      .hero,
      .hero-inner { min-height: 570px; }
      .hero::before { background-position: 64% center; }
      .intro-grid { grid-template-columns: 1fr; }
      .content-rail { grid-template-columns: 1fr; }
      .feature-grid,
      .article-grid,
      .bonus-grid,
      .security-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .detail-row { grid-template-columns: 1fr; }
      .status { justify-self: start; }
      .faq-grid,
      .steps { grid-template-columns: 1fr; }
    }

    @media (max-width: 620px) {
      .top-inner,
      .nav-inner,
      .hero-inner,
      .ticker,
      .section,
      .footer-inner {
        width: calc(100% - 28px);
      }

      .top-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
        gap: 12px;
      }

      .brand-word { font-size: 34px; }
      .brand-mark { width: 50px; height: 44px; }

      .actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .actions .btn {
        padding: 0 10px;
        font-size: 13px;
      }

      .nav-inner {
        min-height: 48px;
        gap: 22px;
      }

      .nav-inner a {
        padding: 15px 0;
        font-size: 13px;
      }

      .hero,
      .hero-inner {
        min-height: 560px;
      }

      .hero::before {
        background-position: 68% center;
      }

      .hero-copy {
        padding: 24px;
        border-radius: 8px;
        border: 1px solid rgba(255, 209, 90, .24);
        background: rgba(0, 0, 0, .68);
      }

      .hero-copy p {
        font-size: 15px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .ticker {
        margin-top: 14px;
        padding: 14px;
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
      }

      .intro-card,
      .side-panel,
      .promo-copy {
        padding: 22px;
      }

      .intro-card h2,
      .section-title,
      .side-panel h2 {
        font-size: 24px;
      }

      .section-head {
        display: block;
      }

      .section-head .btn {
        margin-top: 16px;
      }

      .feature-grid,
      .article-grid,
      .bonus-grid,
      .security-grid {
        grid-template-columns: 1fr;
      }

      .info-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .mini-stat {
        grid-template-columns: 1fr;
      }
    }

    .article-hero {
      min-height: 360px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(255, 209, 90, .18);
      background: #080808;
    }

    .article-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .72) 42%, rgba(0, 0, 0, .12)),
        url("au88-hero.png");
      background-size: cover;
      background-position: center;
    }

    .article-hero-inner {
      position: relative;
      width: min(var(--max), calc(100% - 44px));
      min-height: 360px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 48px 0;
    }

    .article-hero h1 {
      max-width: 880px;
      margin: 0 0 18px;
      color: #fff;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.08;
      font-weight: 900;
      text-transform: uppercase;
    }

    .article-hero p {
      max-width: 720px;
      margin: 0;
      color: rgba(255, 255, 255, .9);
      font-size: 18px;
      line-height: 1.72;
      font-weight: 700;
    }

    .article-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 22px;
      align-items: start;
    }

    .article-main,
    .article-sidebar {
      min-width: 0;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(9, 9, 9, .94);
      box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    }

    .article-main {
      padding: 30px;
    }

    .article-main h2,
    .article-sidebar h2 {
      margin: 0 0 16px;
      color: var(--red);
      font-size: 28px;
      line-height: 1.22;
      text-transform: uppercase;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      margin-bottom: 20px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      color: var(--soft);
      font-size: 14px;
    }

    .article-content {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.9;
    }

    .article-content p {
      margin: 0 0 18px;
    }

    .article-content h2,
    .article-content h3 {
      margin: 28px 0 12px;
      color: var(--gold);
      line-height: 1.3;
    }

    .article-content img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .article-sidebar {
      padding: 24px;
      position: sticky;
      top: 18px;
    }

    .sidebar-list,
    .article-nav-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .sidebar-list li,
    .article-nav-list li {
      padding: 13px;
      border-radius: 8px;
      border: 1px solid rgba(255, 209, 90, .15);
      background: rgba(255, 255, 255, .045);
      color: var(--muted);
      line-height: 1.55;
    }

    .article-nav-list a,
    .article-card h3 a,
    .pagination a,
    .prenext a {
      color: inherit;
      text-decoration: none;
    }

    .article-card h3 a:hover,
    .article-nav-list a:hover {
      color: var(--gold);
    }

    .template-list .article-card h3 a {
      color: #fff;
    }

    .au88-pager,
    .column-page,
    .prenext {
      margin-top: 24px;
      color: var(--muted);
    }

    .au88-pager ul,
    .column-page ul,
    .pagination {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .au88-pager a,
    .au88-pager span,
    .column-page a,
    .column-page span,
    .pagination a,
    .pagination span {
      min-height: 36px;
      padding: 8px 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      border: 1px solid rgba(255, 209, 90, .18);
      background: rgba(255, 255, 255, .055);
      color: #fff;
    }

    .article-tools {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .article-tools a,
    .article-tools button {
      min-height: 36px;
      padding: 8px 12px;
      border-radius: 6px;
      border: 1px solid rgba(255, 209, 90, .18);
      background: rgba(255, 255, 255, .055);
      color: #fff;
      font-weight: 800;
      cursor: pointer;
    }

    @media (max-width: 980px) {
      .article-layout {
        grid-template-columns: 1fr;
      }

      .article-sidebar {
        position: static;
      }
    }

    @media (max-width: 620px) {
      .article-hero-inner {
        width: calc(100% - 28px);
        min-height: 380px;
        padding: 30px 0;
      }

      .article-hero p {
        font-size: 15px;
      }

      .article-main,
      .article-sidebar {
        padding: 22px;
      }
    }
