/* 基础样式复位 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #2b0b00; /* 深棕色背景 */
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 83px; /* 补偿固定导航栏的高度 */
}

/* 导航栏样式 */
.navbar {
  background-color: #250900;
  padding: 0 5%;
  height: 83px; /* 固定导航栏高度 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo 容器 */
.logo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* 绝对定位 Logo */
.logo-img {
  height: 93px;
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffd700;
}

.subscribe-btn {
  display: inline-block;
  background-color: #fbc02d;
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.subscribe-btn:hover,
.subscribe-btn:visited {
  color: #000;
}

.subscribe-btn:hover {
  background-color: #fdd835;
}

/* 移动端顶部导航栏专用按钮（默认桌面端隐藏） */
.mobile-play-btn {
  display: none;
}

/* 汉堡菜单按钮（默认桌面端隐藏） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO 主体区域 */
.hero-section {
  padding: 30px 20px 15px 20px;
  display: flex;
  justify-content: center;
}

.hero-container {
  max-width: 1193px;
  width: 100%;
  display: grid;
  grid-template-columns: 2.8fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* 图片外层包装容器 */
.banner-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  display: flex;
}

/* 图片适应样式 */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* 可点击的主 Banner：填满容器 + 悬停缩放 + 持续呼吸光晕，提示可点击 */
.hero-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-banner-link .hero-img {
  animation: heroImgBreathe 4s ease-in-out infinite;
}

.hero-banner-link:hover .hero-img {
  transform: scale(1.1);
}

.banner-wrapper--clickable {
  animation: bannerGlow 2.5s ease-in-out infinite;
}

@keyframes heroImgBreathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes bannerGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 0 rgba(255, 215, 0, 0);
  }
  50% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 22px rgba(255, 215, 0, 0.55);
  }
}

/* ==========================================
   第二部分：4 个可点击黄金大按钮区域
   ========================================== */
.action-buttons-section {
  padding: 15px 20px 30px 20px;
  display: flex;
  justify-content: center;
}

.action-buttons-container {
  max-width: 1181px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  border-radius: 12px;
  text-decoration: none;
  color: #000000;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, #ffe500 0%, #ffc107 60%, #ffa000 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 193, 7, 0.4), inset 0 1px 3px rgba(255, 255, 255, 1);
  background: linear-gradient(180deg, #fff066 0%, #ffca28 60%, #ffb300 100%);
}

.action-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.action-btn span {
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ==========================================
   第三部分：内容介绍与底部双图 Banner
   ========================================== */
.info-card-section {
  padding: 0 20px 40px 20px;
  display: flex;
  justify-content: center;
}

.info-card-container {
  max-width: 1181px;
  width: 100%;
  background-color: #1a0500;
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.info-title {
  color: #ffcc00;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.info-description {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.info-banners-grid {
  display: grid;
  grid-template-columns: 2.6fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.info-banner-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  display: flex;
}

.info-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================
   SEO 长文内容区域（Bahasa Malaysia）
   ========================================== */
.seo-content-section {
  padding: 0 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.seo-content-container {
  max-width: 1181px;
  width: 100%;
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.seo-main-title {
  color: #ffcc00;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
}

.seo-content-container h2 {
  color: #ffcc00;
  font-size: 21px;
  font-weight: 800;
  margin: 30px 0 14px 0;
}

.seo-content-container h3 {
  color: #ffcc00;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.seo-content-container p {
  color: #e0d5c1;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: justify;
}

.seo-content-container ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}

.seo-content-container ul li {
  color: #e0d5c1;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.seo-content-container a {
  color: #ffd700;
  text-decoration: underline;
}

.seo-content-container a:hover {
  color: #ffffff;
}

.seo-content-container strong {
  color: #ffffff;
}

.rtp-table-wrapper {
  overflow-x: auto;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.rtp-table th,
.rtp-table td {
  padding: 10px 16px;
  text-align: left;
  white-space: nowrap;
}

.rtp-table th {
  background-color: #2b0b00;
  color: #ffcc00;
  font-weight: 800;
}

.rtp-table td {
  color: #e0d5c1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rtp-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}

@media (max-width: 850px) {
  .rtp-table th,
  .rtp-table td {
    padding: 8px 12px;
    font-size: 13px;
  }

  .seo-content-container {
    padding: 20px 18px;
  }

  .seo-main-title {
    font-size: 22px;
  }

  .seo-content-container h2 {
    font-size: 18px;
  }
}

/* ==========================================
   第四部分：常见问题解答 (FAQ) 区域
   ========================================== */
.faq-section {
  padding: 20px 20px 50px 20px;
  display: flex;
  justify-content: center;
}

.faq-container {
  max-width: 1181px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: center;
}

.faq-container--no-image {
  grid-template-columns: 1fr;
  max-width: 1139px;
  margin: 0 auto;
}

.faq-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.5));
}

.faq-content {
  display: flex;
  flex-direction: column;
}

.faq-header {
  color: #ffcc00;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffcc00;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-arrow {
  color: #ffcc00;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  color: #e0d5c1;
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer p {
  padding-bottom: 16px;
  padding-left: 26px;
}

.faq-answer.show {
  max-height: 300px;
  transition: max-height 0.3s ease-in-out;
}

/* ==========================================
   联系方式与 APP 下载按钮区域
   ========================================== */
.contact-buttons-container {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 85px;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.contact-icon {
  width: 26px;
  height: 26px;
}

.whatsapp-btn {
  background-color: #25D366;
  color: #05230f;
}

.telegram-btn {
  background-color: #229ED9;
  color: #05202e;
}

.android-btn {
  background-color: #ffd700;
  color: #1a0500;
}

.ios-btn {
  background-color: #e8e8e8;
  color: #1a0500;
}

/* 移动端右下角悬浮联系按钮（默认桌面端隐藏） */
.floating-contact {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-telegram {
  background: linear-gradient(135deg, #2aabee, #229ed9);
}

/* ==========================================
   第五部分：页脚 (Footer) 样式
   ========================================== */
.footer {
  background-color: #1a0300; /* 更深底色的页脚 */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  margin-top: auto; /* 置底显示 */
  text-align: center;
}

.footer-container p {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.footer-container strong {
  color: #ffffff;
  font-weight: bold;
}

/* ==========================================
   移动端响应式布局
   ========================================== */
@media (max-width: 850px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 83px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #250900;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-links a.active {
    background-color: rgba(255, 215, 0, 0.08);
  }

  .subscribe-btn {
    margin: 14px 5% 18px 5%;
    width: calc(100% - 10%);
  }

  /* 隐藏汉堡下拉菜单内的 PLAY NOW，改用顶部导航栏专用按钮 */
  #subscribeBtn {
    display: none;
  }

  .mobile-play-btn {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: auto;
    /* 左右内边距随屏幕宽度（320px~850px）在 16px~28px 之间线性增长 */
    padding: 8px clamp(16px, 8.75px + 2.26vw, 28px);
    font-size: 13px;
    white-space: nowrap;
  }

  .action-buttons-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .action-btn {
    height: 60px;
    font-size: 20px;
  }

  .contact-buttons-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .contact-btn {
    height: 85px;
    font-size: 13px;
  }

  /* WhatsApp / Telegram 改用右下角悬浮按钮，隐藏行内版本 */
  .whatsapp-btn,
  .telegram-btn {
    display: none;
  }

  .floating-contact {
    display: flex;
  }

  .info-banners-grid {
    grid-template-columns: 1fr;
  }

  .info-card-container {
    padding: 20px 15px;
  }

  .info-title {
    font-size: 20px;
  }

  .info-description {
    font-size: 14px;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-header {
    text-align: center;
    font-size: 20px;
  }

  .faq-question {
    font-size: 16px;
  }

  .footer-container p {
    font-size: 11px;
    padding: 0 10px;
  }
}

@media(max-width:366px){
      .logo-img{
        height: 75px;
      }
    }

.scanner-section {
      --mega-purple: #34062E;
      --mega-dark: #0C0306;
      --mega-gold: #E99616;
      --mega-gold-dark: #cc7f0d;
      --mega-pink: #E93AB4;
      --card: #34062E;
      --card2: #290524;
      --line: #521a49;
      --gold: #E99616;
      --gold-dark: #cc7f0d;
      --text: #ffffff;
      --muted: #b98fb0;
      --accent: #E93AB4;
      --danger: #ff6b8a;
      --safe: #3ddb9a;
      padding: 0 20px 40px 20px;
      display: flex;
      justify-content: center;
    }
    .scanner-section .wrap {
      width: 100%;
      max-width: 1191px;
      background: linear-gradient(160deg, #34062E 0%, #0C0306 100%);
      color: var(--text);
      line-height: 1.55;
      padding: 24px 16px;
      border-radius: 16px;
    }
    .scanner-section .grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
    @media (max-width: 760px) { .scanner-section .grid { grid-template-columns: 1fr; } }

    .scanner-section .panel {
      background: var(--card);
      border-radius: 18px;
      padding: 30px 28px;
      position: relative;
      overflow: hidden;
    }
    .scanner-section .panel::after {
      content: "";
      position: absolute;
      top: -40px; right: -40px;
      width: 160px; height: 160px;
      background: rgba(255,255,255,0.03);
      border-radius: 50%;
    }
    .scanner-section .tag {
      display: inline-block;
      border-left: 3px solid var(--gold);
      padding-left: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 1px;
      color: var(--muted); margin-bottom: 14px;
    }
    .scanner-section h1 { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
    .scanner-section h1 .dot { color: var(--mega-pink); }
    .scanner-section .lead { color: var(--muted); font-size: 15px; margin-bottom: 20px; max-width: 92%; }

    /* tabs */
    .scanner-section .tabs { display: flex; gap: 8px; margin-bottom: 22px; }
    .scanner-section .tab {
      flex: 1; text-align: center; padding: 12px;
      background: var(--card2); border: 1px solid var(--line);
      border-radius: 10px; font-size: 14px; font-weight: 700;
      color: var(--muted); cursor: pointer; transition: all .15s;
    }
    .scanner-section .tab.active { background: var(--gold); color: #34062E; border-color: var(--gold); }

    .scanner-section label { display:block; font-size: 12px; color: var(--muted); margin: 0 0 6px 2px; font-weight:600; letter-spacing:.3px; }
    .scanner-section .field {
      background: var(--card2); border: 1px solid var(--line);
      border-radius: 12px; padding: 14px 16px;
      display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
    }
    .scanner-section .field svg { flex: 0 0 18px; opacity: .6; }
    .scanner-section .field input, .scanner-section .field select {
      background: transparent; border: none; outline: none;
      color: var(--text); font-size: 15px; width: 100%;
    }
    .scanner-section .field select option { background: var(--card2); color: var(--text); }
    .scanner-section #otherWrap { display: none; }

    .scanner-section .actions { display: flex; gap: 12px; margin-top: 4px; }
    @media (max-width: 480px){ .scanner-section .actions { flex-direction: column; } }
    .scanner-section .btn-scan {
      flex: 2; background: var(--gold); color: #34062E; border: none;
      border-radius: 12px; padding: 16px; font-size: 16px; font-weight: 800;
      cursor: pointer; display:flex; align-items:center; justify-content:center; gap:8px;
      transition: background .15s;
    }
    .scanner-section .btn-scan:hover { background: var(--gold-dark); }
    .scanner-section .btn-reg {
      flex: 1.4; background: var(--card2); color: #fff; border: 1px solid var(--line);
      border-radius: 12px; padding: 16px; font-size: 15px; font-weight: 700;
      text-align:center; display:flex; align-items:center; justify-content:center;
    }
    .scanner-section .meta { display:flex; justify-content: space-between; margin-top: 16px; font-size: 12px; color: var(--muted); }
    .scanner-section .meta b { color: #e6c9df; font-weight:600; }

    /* file drop */
    .scanner-section .drop {
      border: 1.5px dashed var(--line); border-radius: 12px;
      padding: 26px 16px; text-align: center; margin-bottom: 16px;
      cursor: pointer; transition: border-color .15s;
    }
    .scanner-section .drop:hover { border-color: var(--gold); }
    .scanner-section .drop svg { opacity:.5; margin-bottom:8px; }
    .scanner-section .drop p { font-size: 14px; color: var(--muted); }
    .scanner-section .drop .fname { color: var(--gold); font-weight: 700; margin-top: 6px; word-break: break-all; }

    .scanner-section .radio-group { margin-bottom: 16px; }
    .scanner-section .radio-group > p { font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
    .scanner-section .radio {
      display:flex; align-items:center; gap:10px; padding:11px 14px;
      border:1px solid var(--line); border-radius:10px; margin-bottom:8px;
      cursor:pointer; font-size:14px; color:#e6c9df; transition:all .12s;
    }
    .scanner-section .radio:hover { border-color: var(--gold); }
    .scanner-section .radio.sel { border-color: var(--gold); background: rgba(233,150,22,0.08); }
    .scanner-section .radio .dotmark { width:16px; height:16px; border-radius:50%; border:2px solid var(--muted); flex:0 0 16px; }
    .scanner-section .radio.sel .dotmark { border-color: var(--gold); background: var(--gold); }

    .scanner-section .side { background: var(--card); }
    .scanner-section .side h3 { display:flex; align-items:center; gap:8px; font-size: 20px; margin-bottom: 14px; }
    .scanner-section .side ul { list-style: none; margin-bottom: 22px; }
    .scanner-section .side li { position: relative; padding-left: 18px; font-size: 14px; color:#e6c9df; margin-bottom: 10px; }
    .scanner-section .side li::before { content:""; position:absolute; left:0; top:9px; width:6px; height:6px; border-radius:50%; background: var(--gold); }
    .scanner-section .side .note h3 { color: var(--gold); }
    .scanner-section .side .note li::before { background: var(--danger); }

    .scanner-section .scanning { display:none; text-align:center; padding: 20px 0 6px; }
    .scanner-section .scanning.show { display:block; }
    .scanner-section .radar { width:70px; height:70px; margin:0 auto 14px; border:3px solid var(--line); border-top-color: var(--gold); border-radius:50%; animation: scanner-spin .8s linear infinite; }
    @keyframes scanner-spin { to { transform: rotate(360deg); } }
    .scanner-section .scanning p { color: var(--muted); font-size: 14px; }

    .scanner-section .result { display:none; margin-top: 20px; border-radius: 14px; padding: 20px; }
    .scanner-section .result.show { display:block; }
    .scanner-section .result.data { background: var(--card2); border: 1px solid var(--line); }
    .scanner-section .rtitle { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
    .scanner-section .rrow { display:flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
    .scanner-section .rrow:last-of-type { border-bottom: none; }
    .scanner-section .rrow span:first-child { color: var(--muted); }
    .scanner-section .rrow span:last-child { font-weight: 700; text-align:right; }
    .scanner-section .verdict { font-size: 15px; font-weight: 800; padding: 12px 14px; border-radius: 10px; margin-bottom: 12px; }
    .scanner-section .verdict.bad { background: rgba(255,107,138,0.12); color: var(--danger); border:1px solid var(--danger); }
    .scanner-section .verdict.ok  { background: rgba(61,219,154,0.1); color: var(--safe); border:1px solid var(--safe); }
    .scanner-section .warn {
      margin-top: 14px; background: rgba(233,58,180,0.08);
      border: 1px solid var(--mega-pink); border-radius: 10px;
      padding: 14px; font-size: 13.5px; color: #ffd6f1;
    }
    .scanner-section .warn b { color: var(--mega-pink); }
    .scanner-section .again {
      display:block; width:100%; margin-top: 16px; background: transparent;
      color: var(--muted); border: 1px solid var(--line); border-radius: 10px;
      padding: 12px; font-size: 14px; font-weight:600; cursor:pointer;
    }
