:root {
  --bg-dark: #000000;
  --text-main: #b6e3f4;
  --text-white: #ffffff;
  --text-muted: #888888;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.background-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.blob-1 {
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(182, 227, 244, 0.4) 0%, rgba(0,0,0,0) 70%);
}

.blob-2 {
  bottom: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(192, 174, 222, 0.3) 0%, rgba(0,0,0,0) 70%);
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5%, 5%) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

.container {
  width: 100%;
  max-width: 500px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Branding */
.brand {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 20px;
}

.brand h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.brand .dot {
  color: var(--text-white);
}

/* Content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fade-in {
  animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
}

.locations-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 16px 20px;
  border-radius: 16px;
  width: fit-content;
}

.locations-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-main);
}

.locations-cities {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--text-main);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--text-main);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
  100% { opacity: 1; transform: scale(1); }
}

/* Form */
.form-container {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.4;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

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

button {
  width: 100%;
  padding: 16px;
  background: var(--text-main);
  color: black;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

button:active {
  transform: scale(0.98);
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#status-message {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
  min-height: 20px;
}

.success-msg { color: #86efac; }
.error-msg { color: #fca5a5; }

.footer {
  text-align: center;
  padding: 30px 0 10px;
  font-size: 0.8rem;
  color: #555;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.social-icon svg {
  margin-top: -1px; /* Optik asimetriyi düzeltir */
}

.social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  color: var(--text-main);
}

@media (min-width: 600px) {
  .input-group {
    flex-direction: row;
  }
  input[type="email"] {
    margin-bottom: 0;
  }
  button {
    width: auto;
    padding: 0 24px;
  }
}
