/* style.css - Premium Launch Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;800&family=Inter:wght@300;400&display=swap');

:root {
  --primary-color: #f39c12; /* Golden Finance Glow */
  --secondary-color: #2c3e50; /* Deep Midnight Blue */
  --text-color: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #1a2a6c, #b21f1f, #fdbb2d); /* Fallback gradient */
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--text-color);
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  animation: fadeIn 1.5s ease-out;
}

.logo-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.tagline {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.notify-form {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
}

input[type="email"] {
  flex-grow: 1;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s;
}

input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
}

button {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: var(--primary-color);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}

button:hover {
  transform: translateY(-2px);
  background-color: #e67e22;
}

.social-links {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0.7;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

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

@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  .notify-form { flex-direction: column; }
  button { width: 100%; }
}
