@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at center, #0d2a16, #000);
  color: #fff;
  font-family: 'Inter', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  animation: fadeIn 1.2s ease;
}

h1 {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 10px;
    margin-left: -10vh;
    text-align: center;
    white-space: nowrap; 
  }
  
h1 span {
  color: #7BA872;
}

p {
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.soon-btn {
  background-color: #7BA872;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  color: white;
  font-size: 1em;
  font-weight: 600;
  cursor: not-allowed;
  box-shadow: 0 0 15px rgba(24, 205, 93, 0.6);
  transition: background 0.3s ease;
}

.logo {
    width: 450px;
    margin-top: 10px;
    filter: drop-shadow(0 0 10px rgba(24, 205, 84, 0.5));
    animation: rotateLogo 10s linear infinite; 
    transform-style: preserve-3d;
  }
  

  @keyframes rotateLogo {
    from {
      transform: rotateY(0deg);
    }
    to {
      transform: rotateY(360deg);
    }
  }
  


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-bar {
    width: 100%;
    background-color: rgba(13, 42, 20, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
  }
  
  .top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-text {
    height: 60px;
    width: auto;
    color: #7BA872;
  }
  
  .btn {
    background-color: transparent;
    border: 2px solid #7BA872;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: #7BA872;
    color: #fff;
    box-shadow: 0 0 10px rgba(24, 205, 93, 0.5);
  }
  
  body {
    padding-top: 70px; 
  }

  #ora {
    font-size: 20px;
    color: #a1a1a1;
    margin-top: 2px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  