    :root {
      --bg: #1a1a1f;
      --bg-soft: rgba(218, 50, 140, 0.7);
      --card: #252529;
      --text: #da328c;
      --muted: #d7d7d7;
	  --accent: #343438;
      --border: #b1b1b1;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Trebuchet MS, Arial, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(218, 50, 140, 0.1), transparent 30%),
        radial-gradient(circle at bottom right, rgba(218, 50, 140, 0.1), transparent 30%),
        var(--bg);
      color: var(--text);
      min-height: 100vh;
      line-height: 1.5;
      cursor: none;
    }

    .container {
      width: min(1120px, calc(100% - 30px));
      margin: 0 auto;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 50px 15px;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 30px;
      width: 100%;
    }

    .panel,
    .stats,
    .feature {
      background: var(--card);
      border: 1px solid var(--border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 15px;
      box-shadow: var(--shadow);
    }

    .panel {
      padding: 35px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
	  min-height: 40px;
      padding: 0px 15px;
      border-radius: 999px;
      background: var(--bg-soft);
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 30px;
    }

    .dot {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--card);
	  box-sizing: border-box;
	  border: 2px solid var(--text);
    }

    h1 {
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.05;
      margin-bottom: 30px;
      max-width: 720px;
    }

    .subtitle {
      font-size: 19px;
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 30px;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 25px;
      border: 1px solid transparent;
      text-decoration: none;
      font-weight: 600;
      transition: 0.2s ease;
    }

    .btn--primary {
      background: linear-gradient(135deg, var(--text), var(--card));
      color: var(--muted);
	  border-color: var(--border);
    }

    .btn--secondary {
      background: var(--accent);
      color: var(--text);
      border-color: var(--border);
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.96;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .feature {
      padding: 20px;
    }

    .feature h3 {
      font-size: 19px;
      margin-bottom: 10px;
    }

    .feature p {
      font-size: 16px;
      color: var(--muted);
    }

    .side {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .stats {
      padding: 25px;
    }

    .stats__title {
      font-size: 19px;
      color: var(--muted);
      margin-bottom: 30px;
    }

    .stats__list {
      display: grid;
      gap: 16px;
    }

    .stat {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 1px;
      border-bottom: 1px solid var(--accent);
    }

    .stat:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .stat span {
      color: var(--muted);
      font-size: 16px;
    }

    .stat strong {
      font-size: 19px;
    }

    .mini-card {
      padding: 25px;
    }

    .mini-card h2 {
      font-size: 22px;
      margin-bottom: 30px;
    }

    .mini-card p {
      color: var(--muted);
      margin-bottom: 10px;
    }

    .donation-widget {
      padding: 25px;
    }

    .donation-widget h2 {
      font-size: 22px;
      margin-bottom: 16px;
    }

    .donation-widget__hint {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .donation-widget__link {
      width: 100%;
    }

    .subscribe {
      display: flex;
      gap: 15px;
    }

    .subscribe input {
      flex: 1;
      min-height: 48px;
      border: 1px solid var(--border);
      background: var(--card);
      color: var(--text);
      border-radius: 15px;
      padding: 0 15px;
      outline: none;
    }

    .subscribe input::placeholder {
      color: var(--border);
    }

    footer {
      margin-top: 30px;
      color: var(--border);
      font-size: 14px;
    }

    .game-hud {
      position: fixed;
      top: 16px;
      right: 16px;
      display: flex;
      gap: 10px;
      z-index: 9998;
      pointer-events: none;
    }

    .score-pill {
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(37, 37, 41, 0.85);
      color: var(--muted);
      font-size: 14px;
      box-shadow: var(--shadow);
      white-space: nowrap;
    }

    .trash-layer {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9996;
      overflow: hidden;
    }

    .trash-item {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      user-select: none;
      font-size: 30px;
      line-height: 1;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
      will-change: transform;
    }

    .trash-cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      user-select: none;
      z-index: 9999;
      font-size: 40px;
      line-height: 1;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
      transition: opacity 0.15s ease;
      transform: translate(-999px, -999px);
    }

    @media (max-width: 900px) {
      .hero__grid {
        grid-template-columns: 1fr;
      }

      .panel {
        padding: 30px;
      }

      .features {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .subscribe {
        flex-direction: column;
      }

      .actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }
    }

    @media (pointer: coarse) {
      body {
        cursor: auto;
      }

      .trash-cursor,
      .trash-layer,
      .game-hud {
        display: none;
      }
    }
  
