.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(var(--app-bg), var(--panel-raised), var(--app-bg));
  padding: 0 20px;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  max-width: 1024px;
  text-align: center;
  margin-top: 40px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0;
  color: var(--text-primary);
}

h2 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: var(--text-primary);
}

.text-content {
  margin-bottom: 40px;
}

.logo-container {
  margin-top: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  padding: 7%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 340px;
  height: 340px;
}

.logo {
  width: 240px;
  height: 240px;
}
.bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--panel-raised);
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(125, 125, 125, .1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.bottom-bar p {
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
}
.bottom-bar form {
  display: flex;
  gap: 10px;
}
.bottom-bar input[type="email"] {
  padding: 8px 12px;
  border: 1px solid var(--text-muted);
  border-radius: 6px;
  font-size: 1rem;
  color: var(--app-bg);
  background-color: var(--text-primary);
}
.bottom-bar input[type="email"]::placeholder {
  color: var(--text-muted);
}
.notify-button {
  padding: 8px 16px;
  background-color: var(--accent-soft);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.notify-button:hover {
  background-color: var(--accent-muted);
}
#thankYouModal {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;

}
#thankYouModal .modal-content {
  background: var(--panel-raised);
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
#thankYouModal h2 {
  font-size: 2.5rem;
  margin-top: 0;
  color: var(--text-primary);
}
#thankYouModal p {
  font-size: 1.2rem;
  color: var(--text-primary);
}
#closeModalBtn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: var(--text-primary);
  cursor: pointer;
}

@media (max-width: 690px) {
  .text-content {
    max-width: 330px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  p {
    font-size: 0.9rem;
  }
  
  .logo-container {
    width: 180px;
    height: 180px;
    padding: 5%;
  }
  
  .logo {
    width: 140px;
    height: 140px;
  }

  .bottom-bar {
    flex-direction: column;
    gap: 10px;
  }

}
