    :root {
      --bg: #040814;
      --bg2: #071024;
      --panel: rgba(9, 15, 33, 0.84);
      --panel-2: rgba(10, 16, 34, 0.94);
      --line: rgba(255,255,255,0.08);
      --text: #eef4ff;
      --muted: #9aabc9;
      --gold: #efb85a;
      --gold-2: #ffd990;
      --shadow: 0 20px 60px rgba(0,0,0,0.45);
      --radius-xl: 26px;
      --radius-lg: 20px;
      --max: 1280px;
      --header-h: 76px;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      min-height: 100vh;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(93, 62, 14, 0.20), transparent 28%),
        radial-gradient(circle at 100% 30%, rgba(22, 61, 133, 0.18), transparent 30%),
        linear-gradient(180deg, #030712 0%, #040916 55%, #050b18 100%);
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .wrap {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .notice {
      width: min(calc(100% - 32px), calc(100% - 32px));
      margin: 8px auto 0;
      min-height: 52px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 16px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(8,12,28,0.95), rgba(5,9,22,0.95));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
      color: #d7e1f8;
      font-size: 12px;
    }

    .notice-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
    }

    .notice-text {
      min-width: 0;
      line-height: 1.4;
      opacity: 0.96;
    }

    .sitebar {
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-logo {
      width: 44px;
      height: 44px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-copy strong {
      display: block;
      font-size: 14px;
      line-height: 1.1;
    }

    .brand-copy small {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .nav a {
      height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      color: #edf3ff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      transition: 180ms ease;
    }

    .nav a:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.06);
    }

    .nav .active {
      color: #15110c;
      background: linear-gradient(180deg, #ffd98e, #e7a92f);
      border-color: rgba(255, 223, 154, 0.58);
      box-shadow: 0 8px 24px rgba(239, 184, 90, 0.20);
    }

    main {
      padding: 8px 0 24px;
    }

    .hero {
      padding: 18px 0 0;
    }

    .hero-head {
      margin-bottom: 22px;
    }

    .hero-head h1 {
      margin: 0 0 10px;
      font-size: clamp(34px, 6vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.05em;
    }

    .hero-head p {
      margin: 0;
      max-width: 760px;
      color: #b8c6e1;
      font-size: 15px;
      line-height: 1.7;
    }

    .tool-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .tool-link {
      display: block;
    }

    .tool-card {
      position: relative;
      min-height: 520px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(8,12,28,0.92), rgba(6,10,22,0.94));
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .tool-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255,255,255,0) 25%, rgba(255,255,255,0.16) 48%, rgba(255,255,255,0) 70%);
      transform: translateX(-130%) skewX(-18deg);
      transition: transform 700ms ease;
      z-index: 2;
      pointer-events: none;
    }

    .tool-card:hover::before {
      transform: translateX(130%) skewX(-18deg);
    }

    .tool-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }

    .tool-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.03) translateY(0);
      transition: transform 500ms ease, filter 500ms ease;
      filter: saturate(1) brightness(0.82);
    }

    .tool-card:hover .tool-bg img {
      transform: scale(1.06) translateY(-12px);
      filter: saturate(1.05) brightness(0.92);
    }

    .tool-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(5,8,17,0.12) 0%, rgba(5,8,17,0.24) 34%, rgba(4,7,15,0.88) 100%),
        radial-gradient(circle at top right, rgba(240, 180, 77, 0.12), transparent 28%);
    }

    .tool-content {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: end;
      padding: 28px;
    }

    .tool-top {
      margin-bottom: auto;
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(7, 12, 28, 0.55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #f8dfaa;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .tool-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1;
      letter-spacing: -0.05em;
      text-shadow: 0 10px 40px rgba(0,0,0,0.45);
    }

    .tool-desc {
      margin: 14px 0 0;
      max-width: 48ch;
      color: #dbe6fb;
      font-size: 15px;
      line-height: 1.72;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 260ms ease, transform 260ms ease;
      text-shadow: 0 8px 30px rgba(0,0,0,0.42);
    }

    .tool-meta {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #ffdf9f;
      font-size: 13px;
      font-weight: 700;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 260ms ease 40ms, transform 260ms ease 40ms;
    }

    .tool-card:hover .tool-desc,
    .tool-card:hover .tool-meta,
    .tool-card:focus-within .tool-desc,
    .tool-card:focus-within .tool-meta {
      opacity: 1;
      transform: translateY(0);
    }

    .footer {
      padding: 22px 0 34px;
    }

    .footer-inner {
      min-height: 52px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #8ea0c4;
      font-size: 13px;
      padding-top: 18px;
    }

    .footer-love {
      color: #d5def4;
    }
    
    .donate-shell{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:4px;
  margin-left: 50px;
  border-radius:16px;
  border:1px solid rgba(251,191,36,.28);
  background:linear-gradient(135deg, rgba(245,158,11,.18), rgba(99,102,241,.18));
  box-shadow:0 10px 30px rgba(245,158,11,.16), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.donate-shell:hover{
  border-color:rgba(251,191,36,.45);
  box-shadow:0 14px 36px rgba(245,158,11,.22), inset 0 1px 0 rgba(255,255,255,.12);
  transform:translateY(-1px);
}

.donate-badge{
  display:flex;
  align-items:center;
  gap:8px;
  margin-right:10px;
  padding:0 8px;
  white-space:nowrap;
  font-size:11px;
  font-weight:700;
  letter-spacing:.02em;
  color:#fde68a;
  text-transform:uppercase;
}

.donate-badge svg{
  width:14px;
  height:14px;
  color:#fbbf24;
  flex:0 0 auto;
}

#donate-button-container{ display:flex; align-items:center; }
#donate-button{
  min-width:150px;
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}

#donate-button iframe,
#donate-button img{ pointer-events:auto; }

    @media (max-width: 980px) {
      .tool-grid { grid-template-columns: 1fr; }
      .tool-card { min-height: 440px; }
    }

    @media (max-width: 720px) {
      .wrap { width: min(calc(100% - 20px), var(--max)); }
      .notice { width: min(calc(100% - 20px), calc(100% - 20px)); }
      .sitebar {
        height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
      }
      .nav { width: 100%; }
      .nav a { flex: 1 1 auto; }
      .tool-content { padding: 20px; }
      .tool-desc,
      .tool-meta { opacity: 1; transform: none; }
    }
    
        :root {
      --bg: #040814;
      --bg2: #071024;
      --panel: rgba(9, 15, 33, 0.84);
      --panel-2: rgba(10, 16, 34, 0.94);
      --line: rgba(255,255,255,0.08);
      --text: #eef4ff;
      --muted: #9aabc9;
      --gold: #efb85a;
      --gold-2: #ffd990;
      --shadow: 0 20px 60px rgba(0,0,0,0.45);
      --radius-xl: 26px;
      --radius-lg: 20px;
      --max: 1280px;
      --header-h: 76px;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      min-height: 100vh;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(93, 62, 14, 0.20), transparent 28%),
        radial-gradient(circle at 100% 30%, rgba(22, 61, 133, 0.18), transparent 30%),
        linear-gradient(180deg, #030712 0%, #040916 55%, #050b18 100%);
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .wrap {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .notice {
      width: min(calc(100% - 32px), calc(100% - 32px));
      margin: 8px auto 0;
      min-height: 52px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 16px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(8,12,28,0.95), rgba(5,9,22,0.95));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
      color: #d7e1f8;
      font-size: 12px;
    }

    .notice-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
    }

    .notice-text {
      min-width: 0;
      line-height: 1.4;
      opacity: 0.96;
    }

    .sitebar {
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-logo {
      width: 44px;
      height: 44px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-copy strong {
      display: block;
      font-size: 14px;
      line-height: 1.1;
    }

    .brand-copy small {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .nav a {
      height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      color: #edf3ff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      transition: 180ms ease;
    }

    .nav a:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.06);
    }

    .nav .active {
      color: #15110c;
      background: linear-gradient(180deg, #ffd98e, #e7a92f);
      border-color: rgba(255, 223, 154, 0.58);
      box-shadow: 0 8px 24px rgba(239, 184, 90, 0.20);
    }

    main {
      padding: 8px 0 24px;
    }

    .hero {
      padding: 18px 0 0;
    }

    .hero-head {
      margin-bottom: 22px;
    }

    .hero-head h1 {
      margin: 0 0 10px;
      font-size: clamp(34px, 6vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.05em;
    }

    .hero-head p {
      margin: 0;
      max-width: 760px;
      color: #b8c6e1;
      font-size: 15px;
      line-height: 1.7;
    }

    .tool-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .tool-link {
      display: block;
    }

    .tool-card {
      position: relative;
      min-height: 520px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(8,12,28,0.92), rgba(6,10,22,0.94));
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .tool-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255,255,255,0) 25%, rgba(255,255,255,0.16) 48%, rgba(255,255,255,0) 70%);
      transform: translateX(-130%) skewX(-18deg);
      transition: transform 700ms ease;
      z-index: 2;
      pointer-events: none;
    }

    .tool-card:hover::before {
      transform: translateX(130%) skewX(-18deg);
    }

    .tool-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }

    .tool-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.03) translateY(0);
      transition: transform 500ms ease, filter 500ms ease;
      filter: saturate(1) brightness(0.82);
    }

    .tool-card:hover .tool-bg img {
      transform: scale(1.06) translateY(-12px);
      filter: saturate(1.05) brightness(0.92);
    }

    .tool-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(5,8,17,0.12) 0%, rgba(5,8,17,0.24) 34%, rgba(4,7,15,0.88) 100%),
        radial-gradient(circle at top right, rgba(240, 180, 77, 0.12), transparent 28%);
    }

    .tool-content {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: end;
      padding: 28px;
    }

    .tool-top {
      margin-bottom: auto;
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(7, 12, 28, 0.55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: #f8dfaa;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .tool-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1;
      letter-spacing: -0.05em;
      text-shadow: 0 10px 40px rgba(0,0,0,0.45);
    }

    .tool-desc {
      margin: 14px 0 0;
      max-width: 48ch;
      color: #dbe6fb;
      font-size: 15px;
      line-height: 1.72;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 260ms ease, transform 260ms ease;
      text-shadow: 0 8px 30px rgba(0,0,0,0.42);
    }

    .tool-meta {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #ffdf9f;
      font-size: 13px;
      font-weight: 700;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 260ms ease 40ms, transform 260ms ease 40ms;
    }

    .tool-card:hover .tool-desc,
    .tool-card:hover .tool-meta,
    .tool-card:focus-within .tool-desc,
    .tool-card:focus-within .tool-meta {
      opacity: 1;
      transform: translateY(0);
    }

    .footer {
      padding: 22px 0 34px;
    }

    .footer-inner {
      min-height: 52px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: #8ea0c4;
      font-size: 13px;
      padding-top: 18px;
    }

    .footer-love {
      color: #d5def4;
    }

    @media (max-width: 980px) {
      .tool-grid { grid-template-columns: 1fr; }
      .tool-card { min-height: 440px; }
    }

    @media (max-width: 720px) {
      .wrap { width: min(calc(100% - 20px), var(--max)); }
      .notice { width: min(calc(100% - 20px), calc(100% - 20px)); }
      .sitebar {
        height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
      }
      .nav { width: 100%; }
      .nav a { flex: 1 1 auto; }
      .tool-content { padding: 20px; }
      .tool-desc,
      .tool-meta { opacity: 1; transform: none; }
    }