* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --primary: #783554;
  --secondary-beige: #ece5df;
  --secondary-sage: #b5b8a7;
  --secondary-rose: #bc9582;
  
  /* Typography */
  --font-primary: 'Times New Roman', 'Times', 'Times-Roman', Georgia, 'Droid Serif', 'DejaVu Serif', 'Liberation Serif', serif;
  --font-secondary: 'Belleza', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-secondary);
  background: 
    linear-gradient(135deg, 
      var(--primary) 0%, 
      rgba(120, 53, 84, 0.95) 30%,
      rgba(120, 53, 84, 0.85) 50%,
      rgba(120, 53, 84, 0.9) 70%,
      var(--primary) 100%);
  background-attachment: fixed;
  color: #ece5df;
    display: flex;
    align-items: center;
    justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(236, 229, 223, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(188, 149, 130, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(181, 184, 167, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, 
      rgba(120, 53, 84, 0.9) 0%, 
      transparent 20%,
      transparent 80%,
      rgba(120, 53, 84, 0.95) 100%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.coming-soon {
  width: 100%;
  height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  text-align: center;
  padding: 20px 10px;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
    display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: center;
  text-align: center;
  padding: 0;
}

.main-message {
  margin-bottom: 60px;
  text-align: center;
  width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message-line {
  font-family: 'Times New Roman', 'Times', 'Times-Roman', Georgia, 'Droid Serif', 'DejaVu Serif', 'Liberation Serif', serif !important;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400 !important;
  line-height: 1.2;
  color: #ece5df;
  margin: 0 auto;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: block;
  width: 100%;
  font-style: normal !important;
  font-variant: normal !important;
}

.message-line:first-of-type {
  white-space: nowrap;
  text-align: center;
}

.message-second {
  font-size: clamp(36px, 5.5vw, 64px);
  margin-top: 12px;
}

.notify-section {
  margin-top: 30px;
}

.notify-form {
    display: flex !important;
    flex-direction: column !important;
  gap: 16px;
  max-width: 500px !important;
  margin: 0 auto !important;
  width: 500px !important;
  min-width: 500px !important;
  flex: 1;
}

.email-input {
  font-family: var(--font-secondary);
  font-size: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(236, 229, 223, 0.3);
  background: rgba(236, 229, 223, 0.15);
  backdrop-filter: blur(10px);
  color: #ece5df;
  border-radius: 0;
  outline: none;
  transition: all 0.3s ease;
  text-align: center;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box;
  flex: 1 1 100%;
  flex-shrink: 0;
}

.email-input::placeholder {
  color: rgba(236, 229, 223, 0.5);
}

.email-input:focus {
  border-color: rgba(236, 229, 223, 0.6);
  background: rgba(236, 229, 223, 0.25);
  outline: 1px solid rgba(236, 229, 223, 0.3);
  outline-offset: 2px;
}

.notify-btn {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 16px 32px;
  background: transparent;
  color: #ece5df;
  border: 1px solid rgba(236, 229, 223, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box;
  flex: 1 1 100%;
  flex-shrink: 0;
}

.notify-btn::before {
    content: '';
    position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(236, 229, 223, 0.1);
  transition: left 0.4s ease;
}

.notify-btn:hover {
  border-color: rgba(236, 229, 223, 0.7);
  background: rgba(236, 229, 223, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #ece5df;
}

.notify-btn:hover::before {
  left: 100%;
}

.notify-btn:active {
  transform: translateY(0);
}

.notify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.notify-btn:disabled:hover {
  transform: none;
  border-color: rgba(236, 229, 223, 0.4);
  background: transparent;
}

.form-message {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: rgba(236, 229, 223, 0.8);
  margin-top: 16px;
  min-height: 20px;
  opacity: 0.9;
}

.form-message.success {
  color: rgba(181, 184, 167, 0.9);
}

.form-message.error {
  color: rgba(236, 229, 223, 0.9);
}

/* Android Chrome specific fixes */
@supports (-webkit-appearance: none) {
  .message-line {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Times New Roman', 'Times', 'Times-Roman', Georgia, 'Droid Serif', 'DejaVu Serif', 'Liberation Serif', serif !important;
  }
  
  .message-line:first-of-type {
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    font-family: 'Times New Roman', 'Times', 'Times-Roman', Georgia, 'Droid Serif', 'DejaVu Serif', 'Liberation Serif', serif !important;
  }
}

/* Android Chrome user agent detection */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @supports (not (-ms-ime-align: auto)) {
    .message-line {
      font-family: 'Times New Roman', 'Times', 'Times-Roman', Georgia, serif !important;
      -webkit-font-feature-settings: normal !important;
      font-feature-settings: normal !important;
    }
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .message-line {
    font-size: clamp(24px, 7vw, 36px);
    text-align: center !important;
  }
  
  .message-line:first-of-type {
    white-space: nowrap;
    font-size: clamp(20px, 6vw, 30px);
    letter-spacing: 0.3px;
    text-align: center !important;
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  
  .message-second {
    font-size: clamp(28px, 8vw, 48px);
    text-align: center !important;
    margin-top: 16px;
  }
  
  .main-message {
    margin-bottom: 32px;
    text-align: center !important;
  }
  
  .notify-section {
    margin-top: 20px;
  }
  
  .notify-form {
    max-width: 90% !important;
    width: 90% !important;
    min-width: 90% !important;
    gap: 14px;
  }
  
  .notify-form {
    align-items: center !important;
    justify-content: center !important;
  }
  
  .notify-form .email-input,
  #emailInput.email-input {
    width: 60% !important;
    max-width: 60% !important;
    min-width: 60% !important;
    flex: 0 0 60% !important;
    margin: 0 auto !important;
  }
  
  .notify-form .notify-btn,
  button.notify-btn {
    width: 60% !important;
    max-width: 60% !important;
    min-width: 60% !important;
    flex: 0 0 60% !important;
    margin: 0 auto !important;
  }
}

/* Android portrait mode fixes */
@media (max-width: 480px) and (orientation: portrait) {
  .container {
    padding: 0 20px;
    width: 100%;
  }
  
  .message-line {
    font-size: clamp(20px, 5.5vw, 30px) !important;
    text-align: center !important;
    width: 100%;
    margin: 0 auto;
    font-family: 'Times New Roman', 'Times', 'Times-Roman', Georgia, serif !important;
  }
  
  .message-line:first-of-type {
    font-size: clamp(16px, 4.5vw, 24px) !important;
    letter-spacing: 0.2px;
    white-space: nowrap;
    text-align: center !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    overflow: hidden;
    font-family: 'Times New Roman', 'Times', 'Times-Roman', Georgia, serif !important;
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }
  
  .message-second {
    font-size: clamp(24px, 7vw, 40px) !important;
    text-align: center !important;
    margin-top: 18px !important;
    font-family: 'Times New Roman', 'Times', 'Times-Roman', Georgia, serif !important;
  }
  
  .main-message {
    margin-bottom: 24px;
    text-align: center !important;
    width: 100%;
    align-items: center;
  }
  
  .coming-soon {
    padding: 20px 15px;
  }
  
  .notify-section {
    margin-top: 16px;
  }
  
  .notify-form {
    max-width: 88% !important;
    width: 88% !important;
    min-width: 88% !important;
    gap: 12px;
  }
  
  .notify-form {
    align-items: center !important;
    justify-content: center !important;
  }
  
  .notify-form .email-input,
  #emailInput.email-input {
    width: 60% !important;
    max-width: 60% !important;
    min-width: 60% !important;
    flex: 0 0 60% !important;
    margin: 0 auto !important;
  }
  
  .notify-form .notify-btn,
  button.notify-btn {
    width: 60% !important;
    max-width: 60% !important;
    min-width: 60% !important;
    flex: 0 0 60% !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
    width: 100%;
  }
  
  .message-line {
    font-size: clamp(20px, 5.5vw, 30px);
  }
  
  .message-line:first-of-type {
    font-size: clamp(16px, 4.5vw, 24px);
    letter-spacing: 0.2px;
  }
  
  .message-second {
    font-size: clamp(24px, 7vw, 40px);
    margin-top: 18px;
  }
  
  .main-message {
    margin-bottom: 24px;
  }
  
  .notify-section {
    margin-top: 16px;
  }
  
  .notify-form {
    max-width: 88% !important;
    width: 88% !important;
    min-width: 88% !important;
    gap: 12px;
  }
  
  .notify-form {
    align-items: center !important;
    justify-content: center !important;
  }
  
  .notify-form .email-input,
  #emailInput.email-input {
    width: 60% !important;
    max-width: 60% !important;
    min-width: 60% !important;
    flex: 0 0 60% !important;
    margin: 0 auto !important;
  }
  
  .notify-form .notify-btn,
  button.notify-btn {
    width: 60% !important;
    max-width: 60% !important;
    min-width: 60% !important;
    flex: 0 0 60% !important;
    margin: 0 auto !important;
  }
}
  
  