<<<<<<< HEAD
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
      background: #f6f0e8;
    }

    .planets-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 30%),
        linear-gradient(135deg, #26236b, #322d87 60%, #2b2778);
      padding: 90px 8%;
      text-align: center;
      color: #fff;
    }

    .planets-section::before,
    .planets-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      filter: blur(6px);
      z-index: 0;
    }

    .planets-section::before {
      width: 320px;
      height: 320px;
      top: -80px;
      left: -80px;
    }

    .planets-section::after {
      width: 260px;
      height: 260px;
      bottom: -80px;
      right: -80px;
    }

    .section-title-s {
      position: relative;
      z-index: 1;
      font-family: "Cinzel", serif;
      font-size: clamp(28px, 3vw, 42px);
      margin-bottom: 54px;
      letter-spacing: 1px;
      color: #fff9ec;
    }

    .planets-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
      max-width: 980px;
      margin: 0 auto;
    }

    .planet-card {
      position: relative;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 22px;
      padding: 30px 18px 24px;
      cursor: pointer;
      backdrop-filter: blur(10px);
      box-shadow: 0 14px 34px rgba(0,0,0,0.18);
      transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
      will-change: transform;
      overflow: hidden;
    }

    .planet-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 40%);
      pointer-events: none;
    }

    .planet-card:hover {
      transform: translateY(-8px) scale(1.03);
      background: rgba(255,255,255,0.12);
      box-shadow: 0 18px 40px rgba(0,0,0,0.24);
    }

    .planet-icon-wrap {
      width: 90px;
      height: 90px;
      margin: 0 auto 16px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      position: relative;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,243,200,0.95), rgba(246,201,69,0.28) 48%, rgba(255,255,255,0.05) 75%);
      border: 1px solid rgba(246, 201, 69, 0.35);
      box-shadow:
        0 0 0 8px rgba(246, 201, 69, 0.06),
        0 0 28px rgba(246, 201, 69, 0.25),
        inset 0 0 18px rgba(255,255,255,0.18);
    }

    .planet-icon-wrap::before {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      border: 1px dashed rgba(255, 222, 121, 0.28);
      animation: spinRing 12s linear infinite;
    }

    .planet-icon {
      position: relative;
      z-index: 1;
      font-size: 38px;
      color: #f6c945;
      text-shadow: 0 0 18px rgba(246,201,69,0.35);
    }

    .planet-name {
      font-size: 17px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.5;
    }

    .planet-sub {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      color: rgba(255,255,255,0.72);
      font-weight: 400;
    }

    .planet-modal {
      position: fixed;
      inset: 0;
      background: rgba(12, 12, 28, 0.74);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 9999;
      backdrop-filter: blur(4px);
    }

    .planet-modal.active {
      display: flex;
    }

    .planet-modal-content {
      width: 100%;
      max-width: 620px;
      border-radius: 24px;
      padding: 30px 26px 26px;
      background:
        radial-gradient(circle at top right, rgba(255, 218, 129, 0.35), transparent 25%),
        linear-gradient(135deg, #fffaf2, #f7ead0 70%, #f4dfaf);
      box-shadow: 0 24px 70px rgba(0,0,0,0.28);
      color: #33240f;
      position: relative;
      animation: modalFade 0.28s ease;
      text-align: left;
    }

    .planet-modal-top {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 14px;
      padding-right: 40px;
    }

    .planet-modal-icon {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: radial-gradient(circle, #fff7de, #f6c945 70%);
      color: #7a5608;
      font-size: 32px;
      box-shadow: 0 0 24px rgba(246,201,69,0.22);
      flex-shrink: 0;
    }

    .planet-modal-content h3 {
      font-family: "Cinzel", serif;
      font-size: clamp(24px, 3vw, 34px);
      color: #805b0b;
      margin-bottom: 4px;
    }

    .planet-modal-subtitle {
      font-size: 14px;
      color: #7b6540;
      font-weight: 500;
    }

    .planet-modal-content p {
      font-size: 16px;
      line-height: 1.85;
      color: #4d3a20;
      margin-top: 12px;
    }

    .planet-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 50%;
      background: #ffffff;
      color: #5a420f;
      font-size: 28px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      transition: 0.25s ease;
    }

    .planet-modal-close:hover {
      background: #f6d27a;
      transform: rotate(90deg);
    }

    @keyframes modalFade {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes spinRing {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
      .planets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .planet-icon-wrap {
        width: 82px;
        height: 82px;
      }

      .planet-icon {
        font-size: 34px;
      }
    }

    @media (max-width: 480px) {
      .planets-grid {
        grid-template-columns: 1fr;
      }

      .planet-modal-top {
        align-items: flex-start;
      }

      .planet-modal-content {
        padding: 26px 20px 22px;
      }

      .planet-modal-content p {
        font-size: 15px;
      }
=======
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
      background: #f6f0e8;
    }

    .planets-section {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 30%),
        linear-gradient(135deg, #26236b, #322d87 60%, #2b2778);
      padding: 90px 8%;
      text-align: center;
      color: #fff;
    }

    .planets-section::before,
    .planets-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      filter: blur(6px);
      z-index: 0;
    }

    .planets-section::before {
      width: 320px;
      height: 320px;
      top: -80px;
      left: -80px;
    }

    .planets-section::after {
      width: 260px;
      height: 260px;
      bottom: -80px;
      right: -80px;
    }

    .section-title-s {
      position: relative;
      z-index: 1;
      font-family: "Cinzel", serif;
      font-size: clamp(28px, 3vw, 42px);
      margin-bottom: 54px;
      letter-spacing: 1px;
      color: #fff9ec;
    }

    .planets-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
      max-width: 980px;
      margin: 0 auto;
    }

    .planet-card {
      position: relative;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 22px;
      padding: 30px 18px 24px;
      cursor: pointer;
      backdrop-filter: blur(10px);
      box-shadow: 0 14px 34px rgba(0,0,0,0.18);
      transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
      will-change: transform;
      overflow: hidden;
    }

    .planet-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 40%);
      pointer-events: none;
    }

    .planet-card:hover {
      transform: translateY(-8px) scale(1.03);
      background: rgba(255,255,255,0.12);
      box-shadow: 0 18px 40px rgba(0,0,0,0.24);
    }

    .planet-icon-wrap {
      width: 90px;
      height: 90px;
      margin: 0 auto 16px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      position: relative;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,243,200,0.95), rgba(246,201,69,0.28) 48%, rgba(255,255,255,0.05) 75%);
      border: 1px solid rgba(246, 201, 69, 0.35);
      box-shadow:
        0 0 0 8px rgba(246, 201, 69, 0.06),
        0 0 28px rgba(246, 201, 69, 0.25),
        inset 0 0 18px rgba(255,255,255,0.18);
    }

    .planet-icon-wrap::before {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      border: 1px dashed rgba(255, 222, 121, 0.28);
      animation: spinRing 12s linear infinite;
    }

    .planet-icon {
      position: relative;
      z-index: 1;
      font-size: 38px;
      color: #f6c945;
      text-shadow: 0 0 18px rgba(246,201,69,0.35);
    }

    .planet-name {
      font-size: 17px;
      font-weight: 600;
      color: #ffffff;
      line-height: 1.5;
    }

    .planet-sub {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      color: rgba(255,255,255,0.72);
      font-weight: 400;
    }

    .planet-modal {
      position: fixed;
      inset: 0;
      background: rgba(12, 12, 28, 0.74);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 9999;
      backdrop-filter: blur(4px);
    }

    .planet-modal.active {
      display: flex;
    }

    .planet-modal-content {
      width: 100%;
      max-width: 620px;
      border-radius: 24px;
      padding: 30px 26px 26px;
      background:
        radial-gradient(circle at top right, rgba(255, 218, 129, 0.35), transparent 25%),
        linear-gradient(135deg, #fffaf2, #f7ead0 70%, #f4dfaf);
      box-shadow: 0 24px 70px rgba(0,0,0,0.28);
      color: #33240f;
      position: relative;
      animation: modalFade 0.28s ease;
      text-align: left;
    }

    .planet-modal-top {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 14px;
      padding-right: 40px;
    }

    .planet-modal-icon {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: radial-gradient(circle, #fff7de, #f6c945 70%);
      color: #7a5608;
      font-size: 32px;
      box-shadow: 0 0 24px rgba(246,201,69,0.22);
      flex-shrink: 0;
    }

    .planet-modal-content h3 {
      font-family: "Cinzel", serif;
      font-size: clamp(24px, 3vw, 34px);
      color: #805b0b;
      margin-bottom: 4px;
    }

    .planet-modal-subtitle {
      font-size: 14px;
      color: #7b6540;
      font-weight: 500;
    }

    .planet-modal-content p {
      font-size: 16px;
      line-height: 1.85;
      color: #4d3a20;
      margin-top: 12px;
    }

    .planet-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 50%;
      background: #ffffff;
      color: #5a420f;
      font-size: 28px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      transition: 0.25s ease;
    }

    .planet-modal-close:hover {
      background: #f6d27a;
      transform: rotate(90deg);
    }

    @keyframes modalFade {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes spinRing {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
      .planets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .planet-icon-wrap {
        width: 82px;
        height: 82px;
      }

      .planet-icon {
        font-size: 34px;
      }
    }

    @media (max-width: 480px) {
      .planets-grid {
        grid-template-columns: 1fr;
      }

      .planet-modal-top {
        align-items: flex-start;
      }

      .planet-modal-content {
        padding: 26px 20px 22px;
      }

      .planet-modal-content p {
        font-size: 15px;
      }
>>>>>>> 5429da74df68f4b2fbfb945f3a034bc54d9ecbc5
    }