    /* ===== BASE ===== */
    .aibe-pyq-page {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(120deg, #eef2ff, #f8fafc);
      padding: 20px;
      color: #222;
    }

    /* ===== HEADER ===== */
    .aibe-pyq-header {
      background: linear-gradient(135deg, #0ea5e9, #6366f1, #9333ea);
      color: white;
      padding: 28px;
      border-radius: 18px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .aibe-pyq-header h1 {
      font-size: 2rem;
    }

    .aibe-pyq-header p {
      opacity: 0.95;
      margin-top: 8px;
    }

    /* ===== GRID ===== */
    .aibe-pyq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 25px;
    }

    /* ===== CARD ===== */
    .aibe-pyq-card {
      background: linear-gradient(135deg, #ffffff, #eef2ff);
      padding: 20px;
      border-radius: 16px;
      text-decoration: none;
      color: #222;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    /* Hover */
    .aibe-pyq-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    }

    /* Gradient Glow Effect */
    .aibe-pyq-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(99, 102, 241, 0.2), rgba(14, 165, 233, 0.2));
      opacity: 0;
      transition: 0.4s;
    }

    .aibe-pyq-card:hover::before {
      opacity: 1;
    }

    /* TEXT */
    .aibe-pyq-card h3 {
      font-size: 1.3rem;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .aibe-pyq-card p {
      font-size: 0.9rem;
      opacity: 0.85;
      position: relative;
      z-index: 1;
    }

    /* ARROW */
    .aibe-pyq-card::after {
      content: "→";
      position: absolute;
      right: 15px;
      bottom: 12px;
      font-size: 1.4rem;
      opacity: 0;
      transition: 0.3s;
    }

    .aibe-pyq-card:hover::after {
      opacity: 1;
      transform: translateX(6px);
    }

    /* ===== SECTION ===== */
    .aibe-pyq-section {
      margin-top: 40px;
    }

    .aibe-pyq-section h2 {
      color: #4f46e5;
      margin-bottom: 12px;
    }

    /* ===== LIST BOX ===== */
    .aibe-list {
      background: linear-gradient(135deg, #ffffff, #f1f5ff);
      padding: 20px;
      border-radius: 14px;
      line-height: 1.8;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }

    /* ===== MOBILE ===== */
    @media (max-width: 600px) {
      .aibe-pyq-header h1 {
        font-size: 1.5rem;
      }
    }
