
    .ki-section {
      font-family: 'Archivo', sans-serif;
      background: #1a0a2e;
      position: relative;
      padding: 70px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 380px;
      width: 100%;
      max-width: 860px;
      overflow: hidden;
      border-radius: 20px;
	  margin-right: auto;
	  margin-left: auto;
	  margin-top: 140px;
    }

    .ki-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 50% -10%, rgba(160, 80, 255, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 55% 40% at 15% 100%, rgba(100, 0, 180, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 50% 35% at 88% 95%, rgba(194, 255, 90, 0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .ki-section::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(194,255,90,0.35) 30%, rgba(194,255,90,0.65) 50%, rgba(194,255,90,0.35) 70%, transparent 100%);
    }

    .ki-gloss {
      position: absolute;
      top: 0; left: 10%; right: 10%;
      height: 42%;
      background: linear-gradient(180deg, rgba(255,255,255,0.055) 0%, transparent 100%);
      border-radius: 0 0 60% 60%;
      pointer-events: none;
      z-index: 1;
    }

    .ki-corner {
      position: absolute;
      width: 18px;
      height: 18px;
      border-color: rgba(194,255,90,0.25);
      border-style: solid;
      border-width: 0;
    }
    .ki-corner.tl { top: 18px; left: 20px; border-top-width: 1px; border-left-width: 1px; border-radius: 3px 0 0 0; }
    .ki-corner.tr { top: 18px; right: 20px; border-top-width: 1px; border-right-width: 1px; border-radius: 0 3px 0 0; }
    .ki-corner.bl { bottom: 18px; left: 20px; border-bottom-width: 1px; border-left-width: 1px; border-radius: 0 0 0 3px; }
    .ki-corner.br { bottom: 18px; right: 20px; border-bottom-width: 1px; border-right-width: 1px; border-radius: 0 0 3px 0; }

    .ki-tags {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .ki-tag {
      font-family: 'Archivo', sans-serif;
      font-weight: 900;
      font-size: clamp(18px, 4.8vw, 28px);
      color: #c2ff5a;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      line-height: 1.15;
      width: 100%;
      cursor: default;
      transition: text-shadow 0.25s ease, transform 0.25s ease;
    }

    .ki-tag:hover {
      transform: translateY(-2px);
      text-shadow: 0 0 22px rgba(194,255,90,0.5), 0 0 60px rgba(194,255,90,0.2);
    }

    .ki-divider {
      width: 2px;
      height: 10px;
      background: linear-gradient(180deg, rgba(194,255,90,0.45) 0%, rgba(194,255,90,0.05) 100%);
      border-radius: 2px;
    }

    @media (max-width: 600px) {
      .ki-section { padding: 50px 20px; border-radius: 14px; }
    }