/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom right, #0d0d0d, #1a1a1a);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: #00ffcc;
  text-decoration: none;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffcc;
}

.nav a {
  margin-left: 1rem;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ff66cc;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  padding-top: 8rem;
}

.title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: #cccccc;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.time-box {
  background: #222;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}

/* Call to Action */
.cta {
  margin-top: 2rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 1rem auto;
}

.email-form input {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.email-form button {
  background: #00ffcc;
  color: #000;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.email-form button:hover {
  background: #00ccaa;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem;
  background-color: #111;
  font-size: 0.9rem;
  color: #888;
  margin-top: auto;
}

.social {
  margin-top: 1rem;
}

.social a {
  margin: 0 0.5rem;
  color: #00ffcc;
}

@media (max-width: 600px) {
  .countdown {
    flex-direction: column;
    gap: 1rem;
  }

  .title {
    font-size: 2.2rem;
  }
  
}
@media (max-width: 768px) {
  .logo {
    max-height: 40px;
  }
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  max-height: 50px;
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  border: 0;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}