body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: #f4f9ef;
    color: #0a2e23;
  }

  .hero {
    background: black url('/img/top-img.jpg') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 60px 20px 30px;
    height: 35vh;
  }

  .hero h1 {
    font-size: 30px;
    margin: 0;
  }

  .hero p {
    font-size: 16px;
    margin: 10px 0;
  }

  .cta-button {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  .section {
    padding: 0px 20px;
  }

  .section h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .benefits p {
    margin: 6px 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .buttons a {
    display: inline-block;
  margin: 10px 10px 0 0;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: bold;
  width: 90%;
  text-decoration: none;
  text-align: center;
  }

  .platform-preview {
    background: #eaf7e0;
    padding: 30px 20px;
    text-align: center;
  }

  .platform-preview img {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
  }

  .platform-labels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }

  .platform-labels span {
    background: #c7f064;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
  }

  .info-text {
    font-size: 14px;
    margin-top: 15px;
  }

  .more-btn {
    background: #0a2e23;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    margin-top: 20px;
  }

  .footer {
    padding: 30px 20px;
    font-size: 12px;
    color: #666;
    text-align: center;
    background: #fff;
  }

  .footer img {
    max-width: 160px;
    margin-bottom: 10px;
  }

  .roaring-kitty-quote {
    font-style: italic;
    text-align: center;
    margin: 30px 20px;
    font-size: 18px;
    color: #ff4d00;
  }

  .meme-mode {
    text-align: center;
    margin: 30px auto;
    max-width: 400px;
    padding: 20px;
  }

  .meme-mode video {
    width: 100%;
    border-radius: 8px;
  }
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  .modal-container {
    background-color: #f4f9ef;
    border-radius: 12px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 3px solid #ff4d00;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
  }
  
  .modal-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff4d00;
  }
  
  .modal-content {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .phone-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #25d366;
    border-radius: 8px;
    font-size: 16px;
  }

  .modal-cta {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
  }
  
  .modal-cta:hover {
    background-color: #128C7E;
    transform: scale(1.02);
  }

  .disclaimer-check {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 12px;
  }
  
  @media (max-width: 480px) {
    .modal-container {
      padding: 20px;
      width: 80%;
    }
    .modal-title {
      font-size: 20px;
      width: 80%;
    }
  }
  #pageLoading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }