
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #a8d5ff 0%, #e0f7ff 50%, #ffffff 100%);
  background-size: 400% 400%;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50 L60 40 L50 30 L40 40 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

header {
  text-align: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.logo {
  max-width: 300px;
  height: auto;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

h1 {
  font-family: 'Pacifico', cursive;
  color: #1e3d59;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.2rem;
  color: #456789;
  margin-bottom: 2rem;
}

.cta-button {
  background: #2196f3;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.cta-button:hover {
  transform: scale(1.05);
}

.signature-product {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.9);
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  flex: 1;
  min-width: 300px;
  height: 300px;
  position: relative;
  background: linear-gradient(45deg, #e0f7ff, #a8d5ff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ice-paw, .ice-cube {
  font-size: 5rem;
  position: absolute;
}

.ice-paw {
  transform: rotate(-15deg);
}

.ice-cube {
  top: 60%;
  left: 60%;
}

.product-info {
  flex: 1;
  padding: 2rem;
}

.product-info h2 {
  font-family: 'Pacifico', cursive;
  color: #1e3d59;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #456789;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.product-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.product-benefits li {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #666;
}

.try-now-button {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.try-now-button:hover {
  transform: scale(1.05);
  background: #ff5252;
}

@media (max-width: 768px) {
  .signature-product {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  
  .product-image {
    min-width: 100%;
  }
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature h2 {
  color: #1e3d59;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #666;
}

footer {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: #666;
}

.why-us {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.why-us h2 {
  color: #1e3d59;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: 'Pacifico', cursive;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit h3 {
  color: #1e3d59;
  margin-bottom: 0.5rem;
}

.benefit p {
  color: #666;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  
  h1 {
    font-size: 2rem;
  }
}
