/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #0D0D0D;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
  }
  
  .container {
    max-width: 400px;
    width: 100%;
    text-align: center;
  }
  
  /* Header */
  .header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .header .icon {
    width: 40px;
    height: 40px;
  }
  
  .header h1 {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  /* Description */
  .description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #fff;
  }
  
  /* Video grid placeholder */
  .video-grid {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
    object-fit: cover;
  }
  
  /* Button */
  .buy-btn {
    width: 65%;
    background-color: #38b000;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .buy-btn:hover {
    background-color: #2d8600;
  }
  
  /* Price */
  .price {
    font-size: 0.95rem;
    margin: 10px 0;
    font-weight: bold;
  }
  
  /* SMS logo */
  .sms-logo img {
    width: 100px;
    margin-bottom: 15px;
    border-radius: 11px;
  }
  
  /* Footer */
  .footer-text {
    font-size: 0.8rem;
    color: #fff;
    text-align: justify;
    line-height: 1.4;
  }
  
  .footer-text a {
    color: #0066cc;
    text-decoration: none;
  }
  
  .footer-text a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .header h1 {
      font-size: 1.4rem;
    }
  
    .buy-btn {
      padding: 12px;
      font-size: 0.9rem;
    }
  
    .price {
      font-size: 0.85rem;
    }
  
    .footer-text {
      font-size: 0.75rem;
    }
  }
  