.containerpop {
      width: 400px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
      border: 3px solid #7CD943;
      position: relative;
      font-family: 'Roboto', sans-serif;
      z-index: 1;
    }

    .top-section {
      background: linear-gradient(145deg, #2a2a6a, #1a1a4a);
      padding: 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .top-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .bottom-section {
      background: #7CD943;
      padding: 20px 20px 30px 20px;
      text-align: center;
      position: relative;
      z-index: 2;
      margin-top: -20px;
    }

    .bottom-section::before {
      content: '';
      position: absolute;
      top: -20px;
      left: 0;
      width: 100%;
      height: 40px;
      background: #7CD943;
      border-top-left-radius: 100% 40px;
      border-top-right-radius: 100% 40px;
      z-index: 1;
    }

    .bottom-section h4 {
      font-size: 28px;
      font-weight: 900;
      color: white;
      margin-bottom: 10px;
      line-height: 1.2;
      position: relative;
      z-index: 2;
    }

    .bottom-section .text-content {
      font-size: 15px;
      font-weight: 400;
      color: white;
      margin-bottom: 18px;
      line-height: 1.4;
      position: relative;
      z-index: 2;
    }

    .deposit-button {
      margin-bottom: 18px;
      position: relative;
      z-index: 2;
    }

    .deposit-button a {
      display: inline-block;
      background: #1a1a4a;
      color: #7CD943;
      padding: 12px 35px;
      border-radius: 50px;
      font-weight: 900;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      text-transform: uppercase;
    }

    .deposit-button a:hover {
      background: #2a2a6a;
      transform: translateY(-2px);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    }

    .bottom-section .disclaimer {
      font-size: 12px;
      color: #000;
      font-weight: 600;
    }

    @media (max-width: 480px) {
      .containerpop {
        width: 90%;
      }

      .top-section {
        height: 200px;
      }

      .bottom-section {
        padding: 15px 15px 25px 15px;
        margin-top: -15px;
      }

      .bottom-section::before {
        top: -15px;
        height: 35px;
        border-top-left-radius: 100% 35px;
        border-top-right-radius: 100% 35px;
      }

      .bottom-section h4 {
        font-size: 22px;
        margin-bottom: 8px;
      }

      .bottom-section .text-content {
        font-size: 14px;
        margin-bottom: 14px;
      }

      .deposit-button a {
        font-size: 14px;
        padding: 10px 25px;
      }
    }
