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

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
}

body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: white;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
}

.content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cupcake-image {
  margin-bottom: 2rem;
}

.cupcake {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.cupcake:hover {
  transform: scale(1.1);
}

.title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  min-width: 100px;
}

.number {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}

.label {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.email-signup {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.email-input {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1rem;
  min-width: 250px;
  outline: none;
  transition: all 0.3s ease;
}

.email-input:focus {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.notify-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.social-links {
  margin-top: 2rem;
}

.social-link {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  display: inline-block;
}

.social-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.copyright-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem 0;
}

.copyright {
  margin-top: 0;
}

.copyright p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .time-unit {
    min-width: 80px;
    padding: 1rem 0.5rem;
  }
  
  .number {
    font-size: 2rem;
  }
  
  .email-input {
    min-width: 200px;
  }
  
  .content {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .email-signup {
    flex-direction: column;
    align-items: center;
  }
  
  .email-input {
    width: 100%;
    max-width: 300px;
  }
  
  .notify-btn {
    width: 100%;
    max-width: 300px;
  }
}
