body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e0f7fa, #fce4ec);
  color: #333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: white;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(to right, #00aaff, #ff00aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
 
  
 
}

.buy-btn {
  background: linear-gradient(to right, #ff66cc, #ff3377);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(255, 51, 119, 0.3);
  cursor: pointer;
}

.page-container {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

h1 {
  text-align: center;
  color: #f02a8f;
  font-size: 26px;
  margin-bottom: 30px;
}

h2 {
  font-size: 18px;
  color: #2196f3;
  margin-top: 25px;
}

p {
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0;
}
