*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-mode {
  background: #0f172a;
  color: #e2e8f0;
}

.dark-mode-toggle {
  position: fixed;
  top: 20px;
  right: 80px;
  background: #d946ef;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(217, 70, 239, 0.3);
  z-index: 1000;
  padding: 0;
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
}

body.dark-mode .dark-mode-toggle {
  background: #8b5cf6;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

body.dark-mode .dark-mode-toggle:hover {
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.toggle-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  display: none;
}

.moon-icon {
  display: block;
}

.dark-mode .moon-icon {
  display: none;
}

.dark-mode .sun-icon {
  display: block !important;
}

/* Coming Soon Badge */
.coming-soon-badge {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  animation: float 3s ease-in-out infinite;
  pointer-events: none;
}

.coming-soon-badge img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.coming-soon-badge:hover img {
  transform: scale(1.05);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-10px); }
}


.container {
  width: 100%;
  max-width: 800px;
  padding: 200px 24px 40px 24px;
  text-align: center;
}

.content {
  max-width: 600px;
  margin: 0 auto;
}

.logo {
  color: #d946ef;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 48px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

body.dark-mode .logo {
  color: #c084fc;
}

.headline {
  color: #111827;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

body.dark-mode .headline {
  color: #f1f5f9;
}

.subtext {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 56px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

body.dark-mode .subtext {
  color: #cbd5e1;
}

/* Subscribe section */
.subscribe-section {
  max-width: 480px;
  margin: 0 auto;
}

.subscribe-text {
  color: #d946ef;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

body.dark-mode .subscribe-text {
  color: #c084fc;
}

.form-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.email-input {
  flex: 1;
  min-width: 200px;
  width: 100%;
  max-width: 400px;
  padding: 14px 18px;
  border: 2px solid transparent;
  background: #f3f4f6;
  color: #111827;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

body.dark-mode .email-input {
  background: #1e293b;
  color: #e2e8f0;
  border: 2px solid #334155;
}

.email-input::placeholder {
  color: #9ca3af;
  transition: color 0.3s ease;
}

body.dark-mode .email-input::placeholder {
  color: #64748b;
}

.email-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #d946ef;
  box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

body.dark-mode .email-input:focus {
  background: #0f172a;
  border-color: #c084fc;
  box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.2);
}

.subscribe-btn {
  background: #d946ef;
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  white-space: nowrap;
  margin-top: 12px;
}

.subscribe-btn:hover:not(:disabled) {
  background: #c026d3;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 70, 239, 0.2);
}

body.dark-mode .subscribe-btn {
  background: #c084fc;
  color: #000000;
}

body.dark-mode .subscribe-btn:hover:not(:disabled) {
  background: #d8b4fe;
  box-shadow: 0 10px 25px rgba(192, 132, 252, 0.3);
}

.subscribe-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1.25em;
  transition: color 0.3s ease;
}

.form-message.success {
  color: #16a34a;
}

.form-message.error {
  color: #dc2626;
}

.form-message.info {
  color: #0284c7;
}

body.dark-mode .form-message.success {
  color: #4ade80;
}

body.dark-mode .form-message.error {
  color: #f87171;
}

body.dark-mode .form-message.info {
  color: #38bdf8;
}

/* Contact Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.3s ease;
}

body.dark-mode .modal-content {
  background: #1e293b;
  color: #e2e8f0;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s ease;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #111827;
}

body.dark-mode .modal-close {
  color: #94a3b8;
}

body.dark-mode .modal-close:hover {
  color: #e2e8f0;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111827;
}

body.dark-mode .modal-title {
  color: #f1f5f9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-input,
.modal-textarea {
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
  color: #111827;
  outline: none;
  transition: all 0.3s ease;
}

body.dark-mode .modal-input,
body.dark-mode .modal-textarea {
  background: #0f172a;
  border-color: #334155;
  color: #e2e8f0;
}

.modal-input::placeholder,
.modal-textarea::placeholder {
  color: #9ca3af;
}

body.dark-mode .modal-input::placeholder,
body.dark-mode .modal-textarea::placeholder {
  color: #64748b;
}

.modal-input:focus,
.modal-textarea:focus {
  border-color: #d946ef;
  box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

body.dark-mode .modal-input:focus,
body.dark-mode .modal-textarea:focus {
  border-color: #c084fc;
  box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.2);
}

.modal-submit-btn {
  background: #d946ef;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  margin-top: 8px;
}

.modal-submit-btn:hover:not(:disabled) {
  background: #c026d3;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 70, 239, 0.2);
}

body.dark-mode .modal-submit-btn {
  background: #c084fc;
  color: #000000;
}

body.dark-mode .modal-submit-btn:hover:not(:disabled) {
  background: #d8b4fe;
  box-shadow: 0 10px 25px rgba(192, 132, 252, 0.3);
}

.modal-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-message {
  margin-top: 16px;
  font-size: 0.9rem;
  min-height: 1.25em;
  text-align: center;
}

.modal-message.success {
  color: #16a34a;
}

.modal-message.error {
  color: #dc2626;
}

body.dark-mode .modal-message.success {
  color: #4ade80;
}

body.dark-mode .modal-message.error {
  color: #f87171;
}

/* Success Modal */
.success-modal {
  text-align: center;
  max-width: 400px;
}

.success-text {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

body.dark-mode .success-text {
  color: #cbd5e1;
}
  .email-input {
    min-width: 150px;
  }
}

