* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  padding: 20px;
}

.container {
  max-width: 800px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.header {
  background: #fff;
  padding: 20px 15px 15px;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo-img {
  width: 200px;
  height: 200px;
  margin-right: 15px;
}

.brand-name {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  letter-spacing: 1px;
}

.tagline {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 500;
}

.main-content {
  padding: 40px 30px;
}

.main-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.main-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.countdown-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  min-width: 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.countdown-number {
  font-size: 32px;
  font-weight: 700;
  color: #ff3c3c;
}

.countdown-label {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  margin-top: 5px;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  background: #f8f9fa;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: #ff3c3c;
  color: white;
}

.contact-item:hover .contact-icon {
  background: white;
  color: #ff3c3c;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #ff3c3c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: white;
  transition: all 0.3s ease;
}

.contact-text {
  font-size: 16px;
  font-weight: 500;
}

.footer {
  background: #f8f9fa;
  padding: 20px;
  color: #777;
  font-size: 14px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #ff3c3c;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .brand-name {
    font-size: 32px;
  }

  .countdown {
    flex-wrap: wrap;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .contact-item {
    width: 100%;
    max-width: 300px;
  }

  .main-content h2 {
    font-size: 28px;
  }

  .main-content p {
    font-size: 16px;
  }
}
