body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #111;
  color: #f5f5f5;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 2rem 0;
  height: 100%;
}

header {
  background: #000;
  border-bottom: 1px solid #222;
  padding: 0 0;
}

.main_image {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}

.image {
  margin: 70px;
  display: flex;
  justify-content: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #aaa;
  margin-left: 1rem;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 0px;
}

.hero h2 {
  font-size: 2rem;
}

h1 {
  font-size: 3rem;
  text-align: center;
  margin: 2rem;
}

h2 {
  font-size: 2rem;
  margin: 5rem 0 0 0;
}

.download-buttons .btn {
  display: inline-block;
  background: #4a4d51;
  color: white;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.clock-section {
  text-align: center;
  padding: 2rem 0;
}

#clock {
  font-size: 2rem;
  background: #000;
  color: #4a4d51;
  padding: 1rem 2rem;
  border-radius: 12px;
  display: inline-block;
  font-family: monospace;
  letter-spacing: 0.1em;
}

.image-placeholder {
  background: #222;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 30%;
  min-width: 100px;
  color: #888;
}

.email-signup {
  text-align: center;
  padding: 3rem 0;
  background-color: #232323;
}

.email-signup input {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  margin-right: 1rem;
}

.email-signup button {
  padding: 0.75rem 1.5rem;
  background: #4a4d51;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
}

.faq details {
  background: #1a1a1a;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 0rem;
  color: #939393;
  font-size: 1rem;
  background-color: #000;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links { 
  margin-bottom: 0px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-links img {
  width: 22px;
  height: 22px;
  filter: grayscale(1) brightness(2);
  opacity: 0.8;
}



.social-links img:hover {
  opacity: 1;
}

* {
  box-sizing: border-box;
}


.countdown {
  margin: 70px auto;
  width: 80%;
  display: flex;
  justify-content: center;
  gap: 5%;
  font-family: sans-serif;
}

.time-section {
  text-align: center;
  font-size: 300%;
  width: 100%;
  height: 100%;
}
  
.time-group {
  display: flex;
  gap: 5%;
  width: 100%;
  height: 100%;

}

.time-segment {
  display: block;
  font-size: 100%;
  font-weight: 900;
  width: 100%;
}

.segment-display {
  position: relative;
  height: 100%;
}

.segment-display__top,
.segment-display__bottom {
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
  position: relative;
}

.segment-display__top {
  line-height: 1.5;
  color: #eee;
  background-color: #111;
}

.segment-display__bottom {
  line-height: 0;
  color: #fff;
  background-color: #333;
}

.segment-overlay {
  position: absolute;
  top: 0;
  perspective: 400px;
  height: 100%;
  width: 100%;
}

.segment-overlay__top,
.segment-overlay__bottom {
  position: absolute;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

.segment-overlay__top {
  top: 0;
  line-height: 1.5;
  color: #fff;
  background-color: #111;
  transform-origin: bottom;
}

.segment-overlay__bottom {
  bottom: 0;
  line-height: 0;
  color: #eee;
  background-color: #333;
  border-top: 2px solid black;
  transform-origin: top;
}

.segment-overlay.flip .segment-overlay__top {
  animation: flip-top 0.8s linear;
}

.segment-overlay.flip .segment-overlay__bottom {
  animation: flip-bottom 0.8s linear;
}

@keyframes flip-top {
  0% {
    transform: rotateX(0deg);
  }
  50%,
  100% {
    transform: rotateX(-90deg);
  }
}

@keyframes flip-bottom {
  0%,
  50% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

#first {
  background-color: #232323;
}

#first .container {
  padding: 0px;
}

#first .hero .container {
  padding:  0px 0px 60px 0px
}

p {
  font-size: 1.3rem;
  font-weight: 300;
}