 /* Header */
  .plan-section .plan-header {
    text-align: center;
    margin-bottom:34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .plan-section .plan-header .emoji {
    font-size: 24px;
    margin-right: 10px;
  }

  .plan-section .plan-header h1 {
    display: inline-block;
    font-weight: 700;
    font-size: 24px;
    color: #f7fffaff; /* green */
    vertical-align: middle;
  }

  .plan-section .plan-header p {
    font-size: 14px;
    margin-top: 8px;
    color: #e5e7eb;
  }

  .plan-section .plans {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Single plan */
  .plan-section .plan {
    background-color:#131B2C;
    border-radius: 20px;
    min-height: 410px;
    padding: 30px 25px 30px 25px;
    color: rgb(180, 170, 170);
    position: relative;
    box-shadow:3px 3px 3px 5px rgba(56, 81, 238, 0.15);
    border:#397afc 1px solid;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width:33%;
    margin:auto;
  }

  /* Popular badge */
  .plan-section .popular-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background-color: #facc15; /* amber/yellow */
    color: #78350f; /* dark amber */
    font-weight: 600;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.2);
  }
  .plan-section .popular-badge::before {
    content: "🔥";
    margin-right: 6px;
  }

  /* Plan title */
  .plan-section .plan-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }

  /* Price and duration */
  .plan-section .price {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #effff5ff;
    margin-bottom: 10px;
  }

  /* Small description */
  .plan-section .desc-short {
    text-align: center;
    font-size: 14px;
    margin-bottom: 18px;
    color: #b3b5b9;
  }

  /* Features list */
  .plan-section .features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 13px;
    color: #9ea3aa;
    text-decoration: bold;
    text-transform: bold;
  }
  .plan-section .features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .plan-section .features li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: #00ff5e;
  }
  /* Different icons for each feature type */
  .plan-section .features li.icon-cash svg {
    fill: #00ff5e;
  }
  .plan-section .features li.icon-clock svg {
    fill: #8a9fc9;
  }
  .plan-section .features li.icon-bets svg {
    fill: #a7c4ff;
  }

  /* Subscribe button */
  .plan-section .subscribe-btn {
    background: linear-gradient(to right, #06B6D4, #3B82F6);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    padding: 12px 0;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .plan-section .subscribe-btn:hover,
  .plan-section .subscribe-btn:focus {
    background-color: #15803d;
    outline: none;
  }

  /* Cancel text */
  .plan-section .cancel-text {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
    color: #6b7280;
    cursor: default;
    user-select: none;
  }

  .plan-section {
    margin: 0 auto;
  }

  .plan-section .plans-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width:1000px;
    margin:0 auto;
  }

  /* Center heading vertically & horizontally if no plans */
  .plan-section.no-plans {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Responsive */
  @media (max-width: 940px) {
    .plans {
      gap: 25px;
    }
  }

  @media (max-width: 767px) {
    .plans-section {
      grid-template-columns: 1fr !important;
      width:80% !important;
      margin:auto;
    }
    .plans {
      flex-direction: column;
      gap: 25px;
    }
    .plan {
      width: auto;
      min-width: -webkit-fill-available;
    }
  }

  .plan form input{
    background:#328BF1;
    padding:10px 8px;
    color:#fff;
    text-align:center;
    border-radius:12px;
    display:flex;
    justify-content: center;
    font-size:16px;
    font-weight:600;
    padding:0 20px;
    height:48px;
    outline:none;
    border:none;
    width:100%;
  }

  .plan  form{text-align:center;}

  .plan-section{padding:60px 0px;background:#1A2436;}
.plans-section{background:unset !important;}

