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

body {
  font-family: "Georgia", "Garamond", serif;
  background: #1a1612;
  color: #f5f0e8;
  overflow-x: hidden;
}

.coming-soon-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 30%, rgba(139, 69, 69, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(101, 67, 33, 0.12) 0%, transparent 50%);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

/* Emblem Styles */
.emblem {
  margin: 0 auto 3rem;
  width: 140px;
  height: 140px;
  animation: fadeInDown 1s ease-out;
}

.emblem-outer {
  width: 100%;
  height: 100%;
  border: 2px solid #c9a961;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 0 30px rgba(201, 169, 97, 0.2);
}

.emblem-middle {
  width: 100%;
  height: 100%;
  border: 1px solid #8b6f47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.emblem-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2420 0%, #1a1612 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #654321;
}

.emblem-letter {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Times New Roman", serif;
  color: #c9a961;
  font-style: italic;
}

/* Typography */
.main-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #f5f0e8;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
  font-size: 1.25rem;
  color: #c9a961;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(42, 36, 32, 0.6);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 8px;
  min-width: 120px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  border-color: #c9a961;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.2);
  transform: translateY(-5px);
}

.countdown-number {
  font-size: 3.5rem;
  font-weight: 300;
  color: #c9a961;
  line-height: 1;
  font-family: "Times New Roman", serif;
}

.countdown-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8b7355;
  margin-top: 0.5rem;
}

.countdown-separator {
  font-size: 2.5rem;
  color: #654321;
  font-weight: 300;
}

.countdown-ended {
  font-size: 2.5rem;
  color: #c9a961;
  letter-spacing: 0.1em;
}

/* Notify Section */
.notify-section {
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.notify-text {
  font-size: 1.125rem;
  color: #d4c5b0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.notify-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.email-input {
  padding: 1rem 1.5rem;
  background: rgba(42, 36, 32, 0.6);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 4px;
  color: #f5f0e8;
  font-size: 1rem;
  min-width: 300px;
  font-family: "Georgia", serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-input:focus {
  outline: none;
  border-color: #c9a961;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.email-input::placeholder {
  color: #8b7355;
}

.notify-button {
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #c9a961 0%, #b8935a 100%);
  border: none;
  border-radius: 4px;
  color: #1a1612;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Georgia", serif;
}

.notify-button:hover {
  background: linear-gradient(135deg, #d4b870 0%, #c9a961 100%);
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
  transform: translateY(-2px);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.social-link {
  color: #8b7355;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #c9a961;
}

.social-separator {
  color: #654321;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .countdown {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .countdown-item {
    padding: 1rem 1.5rem;
    min-width: 90px;
  }

  .countdown-number {
    font-size: 2.5rem;
  }

  .countdown-separator {
    font-size: 2rem;
    display: none;
  }

  .email-input {
    min-width: 100%;
  }

  .notify-button {
    width: 100%;
  }

  .emblem {
    width: 100px;
    height: 100px;
  }

  .emblem-letter {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }

  .countdown-item {
    padding: 0.75rem 1rem;
    min-width: 70px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.75rem;
  }
}
