      .toast-container {
          position: fixed !important;
          bottom: 20px !important;
          right: 20px !important;
          z-index: 99999 !important;
          display: flex;
          flex-direction: column;
          gap: 10px;
          pointer-events: none;
      }

      .toast {
          min-width: 260px;
          max-width: 360px;
          background: rgba(15, 15, 15, 0.95);
          border: 1px solid rgba(155, 161, 255, 0.6);
          border-radius: 12px;
          color: #fff;
          box-shadow:
              0 0 15px rgba(155, 161, 255, 0.35),
              0 0 30px rgba(155, 161, 255, 0.15);
          backdrop-filter: blur(6px);
          -webkit-backdrop-filter: blur(6px);
          opacity: 0;
          transform: translateY(20px) scale(0.98);
          animation: toast-in 0.35s ease forwards, toast-out 0.35s ease forwards 2.8s;
          pointer-events: auto;
          font-family: 'Chakra Petch', sans-serif;
      }

      .toast-body {
          font-size: 0.85rem;
          line-height: 1.3rem;
          text-align: center;
          padding: 14px 16px;
      }

      .toast.text-bg-success {
          border-color: #00ffb3;
          box-shadow:
              0 0 15px rgba(0, 255, 179, 0.35),
              0 0 30px rgba(0, 255, 179, 0.15);
      }

      .toast.text-bg-danger {
          border-color: #ff006e;
          box-shadow:
              0 0 15px rgba(255, 0, 110, 0.35),
              0 0 30px rgba(255, 0, 110, 0.15);
      }

      .toast.text-bg-warning {
          border-color: #ffc107;
          box-shadow:
              0 0 15px rgba(255, 193, 7, 0.35),
              0 0 30px rgba(255, 193, 7, 0.15);
      }

      @keyframes toast-in {
          from { opacity: 0; transform: translateY(20px) scale(0.95); }
          to   { opacity: 1; transform: translateY(0) scale(1); }
      }

      @keyframes toast-out {
          to { opacity: 0; transform: translateY(-10px) scale(0.95); }
      }

      .xp-modal-overlay{
          position: fixed;
          inset: 0;
          background: rgba(0, 0, 0, 0.72);
          display: none;
          align-items: center;
          justify-content: center;
          z-index: 999999;
          padding: 20px;
      }

      .xp-modal-box{
          width: 100%;
          max-width: 420px;
          background: linear-gradient(180deg, rgba(19,19,35,0.98) 0%, rgba(12,12,24,0.98) 100%);
          border: 1px solid rgba(155, 161, 255, 0.45);
          border-radius: 18px;
          padding: 24px 22px;
          text-align: center;
          color: #fff;
          font-family: 'Chakra Petch', sans-serif;
          box-shadow:
              0 0 20px rgba(155, 161, 255, 0.30),
              0 0 50px rgba(118, 27, 255, 0.18);
          transform: scale(0.92);
          opacity: 0;
          transition: all .22s ease;
      }

      .xp-modal-overlay.show{
          display: flex !important;
      }

      .xp-modal-overlay.show .xp-modal-box{
          transform: scale(1);
          opacity: 1;
      }

      .xp-modal-icon{
          font-size: 2.2rem;
          margin-bottom: 10px;
      }

      .xp-modal-title{
          font-size: 1.4rem;
          font-weight: 700;
          margin-bottom: 8px;
          color: #ffffff;
      }

      .xp-modal-text{
          font-size: 0.95rem;
          line-height: 1.45rem;
          color: rgba(255,255,255,0.88);
          margin-bottom: 18px;
      }

      .xp-modal-btn{
          border: 0;
          border-radius: 10px;
          background: #761bff;
          color: #fff;
          padding: 10px 18px;
          font-weight: 700;
          font-family: 'Chakra Petch', sans-serif;
          cursor: pointer;
          min-width: 130px;
          transition: transform .15s ease, opacity .15s ease;
      }

      .xp-modal-btn:hover{
          transform: translateY(-1px);
          opacity: .95;
      }
      
      .course-meta-price{
          margin-bottom:10px;
      }

      .course-meta-price .free{
          color:#ff006e;
          font-weight:700;
          text-transform:uppercase;
          letter-spacing:.5px;
      }

      .course-meta-price .price{
          color:#00f1ff;
          font-weight:700;
          font-size:18px;
          text-shadow:0 0 12px rgba(0,241,255,.35);
      }   
