* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  z-index: 1;
  margin: 20px auto;
}

.construction-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Construction Animation */
.animated-construction {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  height: 100px;
}

.cone {
  width: 40px;
  height: 80px;
  background: linear-gradient(to bottom, #ff6b35 0%, #ffa500 50%, #ffd700 100%);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  position: relative;
  animation: wobble 0.6s ease-in-out infinite;
}

.cone::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
}

.cone-1 {
  animation-delay: 0s;
}

.cone-2 {
  animation-delay: 0.1s;
}

.cone-3 {
  animation-delay: 0.2s;
}

@keyframes wobble {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(-2deg) translateY(-5px);
  }
  75% {
    transform: rotate(2deg) translateY(5px);
  }
}

h1 {
  font-size: 2.8em;
  color: #333;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.subtitle {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.4s both;
}

.construction-message {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Countdown Timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.8s both;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 25px;
  border-radius: 10px;
  color: white;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  min-width: 90px;
}

.countdown-value {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1;
}

.countdown-label {
  font-size: 0.85em;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Newsletter Section */
.newsletter-section {
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 1s both;
}

.newsletter-section > p {
  font-size: 0.95em;
  color: #333;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.newsletter-form input {
  padding: 12px 20px;
  font-size: 1em;
  border: 2px solid #ddd;
  border-radius: 8px;
  min-width: 250px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.newsletter-form button {
  padding: 12px 30px;
  font-size: 1em;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(102, 126, 234, 0.4);
}

.newsletter-form button:active {
  transform: translateY(0);
}

.form-message {
  font-size: 0.95em;
  color: #27ae60;
  min-height: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 1.2s both;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Footer */
footer {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  color: #999;
  font-size: 0.9em;
  animation: fadeIn 1s ease-out 1.4s both;
}

/* Website Links Section */
.website-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 1.6s both;
}

.website-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.website-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: white;
}

.btn-icon {
  font-size: 1.3em;
}

.btn-text {
  font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .construction-content {
    padding: 35px 20px;
  }

  h1 {
    font-size: 2em;
  }

  .subtitle {
    font-size: 0.95em;
  }

  .construction-message {
    font-size: 0.9em;
  }

  .countdown {
    gap: 12px;
  }

  .countdown-item {
    min-width: 65px;
    padding: 12px 15px;
  }

  .countdown-value {
    font-size: 1.4em;
  }

  .countdown-label {
    font-size: 0.8em;
  }

  .newsletter-form input {
    min-width: 100%;
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .newsletter-form button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  footer {
    font-size: 0.85em;
  }

  .website-links {
    margin-top: 40px;
    margin-bottom: 30px;
    gap: 15px;
  }

  .website-btn {
    padding: 12px 24px;
    font-size: 0.95em;
  }

  .btn-icon {
    font-size: 1.1em;
  }
}

@media (max-width: 600px) {
  .construction-content {
    padding: 30px 15px;
    border-radius: 12px;
  }

  h1 {
    font-size: 1.7em;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 0.9em;
    margin-bottom: 20px;
  }

  .construction-message {
    font-size: 0.85em;
    margin-bottom: 30px;
  }

  .animated-construction {
    height: 50px;
    gap: 8px;
    margin-bottom: 30px;
  }

  .cone {
    width: 25px;
    height: 50px;
  }

  .cone::before {
    width: 15px;
    height: 12px;
  }

  .countdown {
    gap: 8px;
    margin-bottom: 35px;
  }

  .countdown-item {
    min-width: 55px;
    padding: 10px 12px;
  }

  .countdown-value {
    font-size: 1.2em;
  }

  .countdown-label {
    font-size: 0.7em;
  }

  .newsletter-section {
    margin-bottom: 30px;
  }

  .newsletter-section > p {
    font-size: 0.9em;
    margin-bottom: 12px;
  }

  .newsletter-form input {
    padding: 9px 12px;
    font-size: 0.85em;
  }

  .newsletter-form button {
    padding: 9px 20px;
    font-size: 0.85em;
  }

  .social-links {
    gap: 12px;
    margin-bottom: 25px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .website-links {
    margin-top: 35px;
    margin-bottom: 25px;
    gap: 12px;
  }

  .website-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .btn-icon {
    font-size: 1em;
  }

  .btn-text {
    font-size: 0.9em;
  }
}

@media (max-width: 400px) {
  .construction-content {
    padding: 25px 12px;
  }

  h1 {
    font-size: 1.5em;
    margin-bottom: 6px;
  }

  .subtitle {
    font-size: 0.85em;
    margin-bottom: 18px;
  }

  .construction-message {
    font-size: 0.8em;
    margin-bottom: 25px;
  }

  .animated-construction {
    height: 40px;
    gap: 5px;
    margin-bottom: 25px;
  }

  .cone {
    width: 20px;
    height: 40px;
  }

  .cone::before {
    width: 12px;
    height: 10px;
  }

  .countdown {
    gap: 5px;
    margin-bottom: 30px;
  }

  .countdown-item {
    min-width: 48px;
    padding: 8px 10px;
  }

  .countdown-value {
    font-size: 1em;
  }

  .countdown-label {
    font-size: 0.65em;
  }

  .newsletter-section {
    margin-bottom: 25px;
  }

  .newsletter-section > p {
    font-size: 0.85em;
    margin-bottom: 10px;
  }

  .newsletter-form input {
    padding: 8px 10px;
    font-size: 0.8em;
  }

  .newsletter-form button {
    padding: 8px 18px;
    font-size: 0.8em;
  }

  .social-links {
    gap: 10px;
    margin-bottom: 20px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }

  footer {
    font-size: 0.8em;
  }

  .website-links {
    margin-top: 30px;
    margin-bottom: 20px;
    gap: 10px;
  }

  .website-btn {
    padding: 8px 16px;
    font-size: 0.85em;
  }

  .btn-icon {
    font-size: 0.9em;
  }

  .btn-text {
    font-size: 0.85em;
  }
}
