* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo-placeholder {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 4px;
}

.logo-image {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1); /* This will make the black logo white */
  object-fit: contain;
}

.listings-text {
  color: #00d95e;
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(45deg, #00d95e, #00b84d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 8px;
  letter-spacing: 0.5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-transform: none;
}

.contact-btn {
  background: linear-gradient(45deg, #00d95e, #00b84d);
  color: black;
  padding: 0.6rem 1.5rem;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 217, 94, 0.3);
}

.hero-animation {
  position: relative;
  height: 400px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.circle-text {
  position: absolute;
  width: 200px;
  text-align: center;
  color: #ffffff;
}

.circle-text.left {
  left: -220px;
  top: 50%;
  transform: translateY(-50%);
}

.circle-text.right {
  right: -220px;
  top: 50%;
  transform: translateY(-50%);
}

.main-tagline {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(10, 10, 10, 0.8);
  padding: 1rem 2rem;
  border-radius: 10px;
  max-width: 800px;
  color: #00d95e;
  font-size: 1.1rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 217, 94, 0.2);
}

.roadmap-button-container {
  text-align: center;
  margin-top: 10px;
}

.roadmap-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(45deg, #00d95e, #00b84d);
  color: black;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.roadmap-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 217, 94, 0.3);
}

.button-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.builder-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.builder-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  color: white;
  text-decoration: none;
}

.circle-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: auto;
  z-index: 2;
  filter: brightness(0) invert(1);
}

.rotating-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 217, 94, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  background: radial-gradient(
    circle at center,
    rgba(0, 217, 94, 0.1) 0%,
    rgba(0, 217, 94, 0.05) 50%,
    transparent 70%
  );
}

.rotating-circle::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00d95e;
  border-radius: 50%;
  top: -5px;
  left: 50%;
  box-shadow: 0 0 20px #00d95e;
  animation: glowPulse 2s infinite;
}

.rotating-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(0, 217, 94, 0.2) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

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

.section-box {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(0, 217, 94, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.section-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 217, 94, 0.1);
  border-color: rgba(0, 217, 94, 0.3);
}

.section-box h2 {
  color: #00d95e;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.roadmap-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.roadmap-box {
  cursor: pointer;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #1a1a1a, #252525);
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 94, 0.2);
  transition: all 0.3s ease;
  width: fit-content;
}

.roadmap-box h3 {
  margin: 0;
  font-size: 1rem;
  color: #00d95e;
}

.roadmap-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 217, 94, 0.1);
  border-color: rgba(0, 217, 94, 0.4);
}

.faq {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 217, 94, 0.1);
}

.faq h2 {
  color: #00d95e;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 217, 94, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(45deg, #1a1a1a, #252525);
  transition: all 0.3s ease;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-arrow::before,
.faq-arrow::after {
  content: "";
  position: absolute;
  background: #00d95e;
  transition: all 0.3s ease;
}

.faq-arrow::before {
  width: 2px;
  height: 20px;
  left: 9px;
  top: 0;
}

.faq-arrow::after {
  width: 20px;
  height: 2px;
  left: 0;
  top: 9px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
  background: #1a1a1a;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1.5rem;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.roadmap-page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  z-index: 1001;
}

.roadmap-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.roadmap-header {
  margin-bottom: 3rem;
  text-align: center;
}

.ico-text {
  font-size: 2rem;
  color: #00d95e;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 217, 94, 0.5);
}

.roadmap-title {
  font-size: 3rem;
  color: white;
  margin: 0;
  font-weight: 600;
}

.timeline-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 3rem 0;
  height: 200px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #00d95e;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(0, 217, 94, 0.3);
}

.timeline-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-item:nth-child(2) {
  left: 10%;
}

.timeline-item:nth-child(3) {
  left: 30%;
}

.timeline-item:nth-child(4) {
  left: 60%;
}

.timeline-item:nth-child(5) {
  left: 85%;
}

.timeline-node {
  width: 15px;
  height: 15px;
  background: #00d95e;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(0, 217, 94, 0.6);
  z-index: 2;
}

.timeline-content {
  position: absolute;
  width: 180px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content.above {
  bottom: 100%;
  margin-bottom: 1.5rem;
}

.timeline-content.below {
  top: 100%;
  margin-top: 1.5rem;
}

.timeline-content h3 {
  color: white;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.timeline-content p {
  color: #cccccc;
  margin: 0;
  font-size: 0.9rem;
}

.back-btn {
  background: linear-gradient(45deg, #00d95e, #00b84d);
  color: black;
  padding: 1rem 2rem;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 217, 94, 0.3);
}

@media (max-width: 768px) {
  .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .logo-placeholder {
    margin-bottom: 0.5rem;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero-animation {
    height: auto;
    margin-top: 160px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .circle-container {
    width: 200px;
    height: 200px;
    margin: 2rem 0;
  }

  .center-logo {
    width: 100px;
  }

  .circle-text.left,
  .circle-text.right {
    display: none;
  }

  .main-tagline {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 90%;
    margin: 1rem auto;
    padding: 1rem;
    font-size: 1rem;
  }

  .about-block {
    padding: 1.5rem;
  }

  .about-block h3 {
    font-size: 1.3rem;
  }

  .about-block p {
    font-size: 1rem;
  }

  .faq {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .button-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .roadmap-btn {
    width: 100%;
    margin-top: 0;
    padding: 0.8rem;
  }

  .builder-btn {
    width: 100%;
    padding: 0.8rem;
  }

  .roadmap-title {
    font-size: 2rem;
  }

  .timeline-container {
    max-width: 100%;
    padding: 0 1rem;
    height: 300px;
  }

  .timeline-item:nth-child(2) {
    left: 5%;
  }

  .timeline-item:nth-child(3) {
    left: 25%;
  }

  .timeline-item:nth-child(4) {
    left: 55%;
  }

  .timeline-item:nth-child(5) {
    left: 80%;
  }

  .timeline-content {
    width: 120px;
  }

  .timeline-content h3 {
    font-size: 0.9rem;
  }

  .timeline-content p {
    font-size: 0.7rem;
  }
}

@media (min-width: 769px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo-placeholder {
    margin-bottom: 0;
  }

  .contact-btn {
    width: auto;
  }

  .hero-animation {
    height: 400px;
  }

  .main-tagline {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-block {
  background: linear-gradient(45deg, #1a1a1a, #252525);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 217, 94, 0.2);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 800px;
  text-align: left;
}

.about-block h3 {
  color: #00d95e;
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
}

.about-block h3:first-child {
  margin-top: 0;
}

.about-block p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.footer {
  background: rgba(10, 10, 10, 0.95);
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-link {
  color: #00d95e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00b84d;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding: 0 1rem;
}
