     .eg-wrapper {
      max-width: 1160px;
      margin: 7rem auto 0;
      padding: 0 1.2rem 5rem;
    }

    .eg-hero-banner {
      background: radial-gradient(circle at top left, #3a2c72, #171429 60%);
      border-radius: 24px;
      padding: 2.2rem 2.4rem;
      display: grid;
      grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
      gap: 2rem;
      box-shadow: 0 24px 40px rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(124, 86, 255, 0.4);
      position: relative;
      overflow: hidden;
    }

    .eg-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.8rem;
      border-radius: 999px;
      font-size: 0.8rem;
      background: rgba(149, 117, 255, 0.2);
      border: 1px solid rgba(184, 154, 255, 0.7);
      color: #d7cfff;
      margin-bottom: 0.7rem;
    }

    .eg-hero-title {
      font-size: 2.1rem;
      font-weight: 800;
      margin-bottom: 0.4rem;
    }

    .eg-hero-title span {
      background: linear-gradient(90deg, #5b66ff, #d46bff);
      -webkit-background-clip: text;
      color: transparent;
    }

    .eg-hero-text {
      color: #e1ddff;
      font-size: 0.98rem;
      max-width: 30rem;
      line-height: 1.6;
      margin-bottom: 1.4rem;
    }

    .eg-hero-cta-row {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .eg-hero-btn {
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(90deg, #5b66ff, #9b4bff);
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      box-shadow: 0 0 18px rgba(130, 95, 255, 0.6);
      transition: 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .eg-hero-btn:hover {
      transform: translateY(-1px) scale(1.02);
      box-shadow: 0 0 26px rgba(130, 95, 255, 0.9);
    }

    .eg-hero-muted {
      font-size: 0.85rem;
      color: #b7b0ff;
      opacity: 0.9;
    }

    .eg-hero-art {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .eg-hero-circle {
      width: 230px;
      height: 230px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #ff8ad1, #5b2cff 70%);
      box-shadow: 0 0 40px #9c5cffaa;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .eg-hero-circle::after {
      content: "💖";
      font-size: 4.5rem;
      filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.8));
      animation: floatHeart 3.6s ease-in-out infinite;
    }

    .eg-hero-heart-float {
      position: absolute;
      font-size: 1.7rem;
      opacity: 0.8;
      animation: smallFloat 4.5s ease-in-out infinite;
    }

    .eg-hero-heart-float:nth-child(1) {
      top: 10%;
      left: 8%;
    }

    .eg-hero-heart-float:nth-child(2) {
      bottom: 14%;
      right: 4%;
      animation-delay: 1s;
    }

    @keyframes floatHeart {
      0%, 100% { transform: translateY(4px); }
      50%      { transform: translateY(-6px); }
    }

    @keyframes smallFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-6px); }
    }

    .eg-section {
      margin-top: 3rem;
    }

    .eg-section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 1rem;
    }

    .eg-section-title {
      font-size: 1.2rem;
      font-weight: 700;
    }

    .eg-section-sub {
      font-size: 0.9rem;
      color: #b8b3e8;
    }

    .eg-section-link {
      font-size: 0.85rem;
      color: #9d7bff;
      text-decoration: none;
    }

    .eg-row-scroll {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      padding-bottom: 0.4rem;
      scroll-behavior: smooth;
    }

    .eg-row-scroll::-webkit-scrollbar {
      height: 8px;
    }

    .eg-row-scroll::-webkit-scrollbar-thumb {
      background: #491d81;
      border-radius: 999px;
    }

    .eg-mini-card {
      min-width: 140px;
      max-width: 160px;
      background: rgba(20, 20, 26, 0.9);
      border-radius: 15px;
      border: 1px solid rgba(120, 40, 255, 0.25);
      padding: 0.9rem 0.8rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.45rem;
      text-decoration: none;
      color: #fff;
      box-shadow: 0 0 16px #00000088;
      flex-shrink: 0;
      transition: 0.2s;
    }

    .eg-mini-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 20px rgba(124, 86, 255, 0.7);
      border-color: #9c6cff;
    }

    .eg-mini-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: radial-gradient(circle at 30% 20%, #ff8ad1, #5b2cff);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 0 14px rgba(156, 92, 255, 0.8);
    }

    .eg-mini-name {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .eg-mini-meta {
      font-size: 0.78rem;
      color: #bcb5f6;
    }

    .eg-mini-badge {
      margin-top: 0.2rem;
      font-size: 0.75rem;
      padding: 0.1rem 0.55rem;
      border-radius: 999px;
      background: rgba(120, 40, 255, 0.2);
      border: 1px solid rgba(166, 122, 255, 0.7);
      color: #e2ddff;
    }

    .eg-wide-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.4rem;
      margin-top: 1.2rem;
    }

    .eg-wide-card {
      background: radial-gradient(circle at top left, #262339, #14121f 65%);
      border-radius: 18px;
      border: 1px solid rgba(130, 86, 255, 0.35);
      padding: 1.3rem 1.2rem 1.2rem;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      box-shadow: 0 0 20px #000000aa;
      text-decoration: none;
      color: #fff;
      transition: 0.25s;
    }

    .eg-wide-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 25px rgba(138, 93, 255, 0.8);
      border-color: #b084ff;
    }

    .eg-wide-tag {
      font-size: 0.75rem;
      padding: 0.1rem 0.6rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      align-self: flex-start;
      color: #dcd5ff;
    }

    .eg-wide-title {
      font-size: 1.1rem;
      font-weight: 700;
    }

    .eg-wide-desc {
      font-size: 0.9rem;
      color: #cbc4ff;
      line-height: 1.5;
    }

    .eg-wide-meta {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: #a49ced;
    }

    .eg-wide-cta {
      font-size: 0.82rem;
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      border: none;
      background: #2ed3a5;
      color: #02010a;
      font-weight: 600;
    }

    .eg-wide-ghost {
      opacity: 0.65;
    }

    .eg-disabled {
      opacity: 0.55;
      cursor: default;
    }

    .eg-disabled:hover {
      transform: none;
      box-shadow: 0 0 20px #000000aa;
      border-color: rgba(130, 86, 255, 0.35);
    }

    @media (max-width: 900px) {
      .eg-hero-banner {
        grid-template-columns: 1fr;
        padding: 1.8rem 1.6rem;
      }

      .eg-hero-art {
        order: -1;
      }

      .eg-hero-circle {
        width: 190px;
        height: 190px;
      }

      .eg-wrapper {
        margin-top: 6.5rem;
      }
    }

    @media (max-width: 600px) {
      .eg-wrapper {
        padding-inline: 0.8rem;
      }

      .eg-hero-title {
        font-size: 1.7rem;
      }

      .eg-hero-text {
        font-size: 0.9rem;
      }
    }