* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.container {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

/* Main interface style */
.main-interface {
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding-bottom: calc(60px + 1rem);
}

.main-interface.hidden {
  display: none;
}

.main-interface .background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.main-interface .gradient-orb {
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.4;
  transition: all 0.5s ease;
}

.main-interface .gradient-orb.primary {
  background: #4639ff;
  top: 0;
  left: 0;
  animation: floatPrimary 20s ease-in-out infinite;
}

.main-interface .gradient-orb.secondary {
  background: #00efa9;
  bottom: 0;
  right: 0;
  animation: floatSecondary 20s ease-in-out infinite;
}

/* Top Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Announcement Banner */
.announcement-banner {
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #00efa9;
  color: white;
  border-radius: 0px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9;
  box-shadow: 0 2px 10px rgba(0, 239, 169, 0.3);
  width: 100%;

}

.announcement-banner:hover {
  background: rgba(0, 239, 169, 0.8);
  transform: translateX(-50%) translateY(-2px);
}

.announcement-banner i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .announcement-banner {
    top: 74px;
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4639ff, #00efa9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(70, 57, 255, 0.5);
}

.nav-logo {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-item:hover, .nav-item.active {
  color: #fff;
  background: rgba(70, 57, 255, 0.1);
}

.nav-item.active {
    color: #fff;
    background:linear-gradient(135deg, #4639ff, #00efa9);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(to right, #4639ff, #00efa9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.05em;
    text-transform: none;  
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #4639ff, #00efa9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: none; 
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  min-height: 45vh;
  padding: 60px 5% 0;
  align-items: center;
  justify-content: center;
  margin-top: 18vh;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #4639ff, #00efa9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 2rem auto;
  margin-top: -1rem;
}

/* Features Section */
.features-section {
    padding: 80px 5%;
    text-align: center;
    margin-top: 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #4639ff, #00efa9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 57, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #4639ff, #00efa9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Bottom Navigation */
.bottom-nav {
  display: none;
}

/* Footer */
.footer {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

/* Animations */
@keyframes floatPrimary {
  0% { transform: translate(0, 0); }
  20% { transform: translate(35%, 25%); }
  40% { transform: translate(-25%, 45%); }
  60% { transform: translate(45%, -35%); }
  80% { transform: translate(-35%, 35%); }
  100% { transform: translate(0, 0); }
}

@keyframes floatSecondary {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-35%, -25%); }
  40% { transform: translate(25%, -45%); }
  60% { transform: translate(-45%, 35%); }
  80% { transform: translate(35%, -35%); }
  100% { transform: translate(0, 0); }
}

@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: breathe 3s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero-section {
      flex-direction: column;
      /* padding-top: 100px; */
      text-align: center;
  }

  .hero-title {
      font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  
  .footer {
      display: none;
  }
  
  .bottom-nav {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(10, 10, 10, 0.7);
      backdrop-filter: blur(10px);
      padding: 1rem;
      justify-content: space-around;
      z-index: 10;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

  .main-interface {
      padding-bottom: 80px;
  }
}

@media (max-width: 600px) {
  .hero-title {
      font-size: 2.8rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
  }
}

.hero-buttons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 57, 255, 0.3);
    background: rgba(70, 57, 255, 0.1);
    color: #fff;
}

.hero-button.primary {
    background: linear-gradient(135deg, #4639ff, #00efa9);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(70, 57, 255, 0.3);
}

.hero-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(70, 57, 255, 0.4);
}

.hero-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(70, 57, 255, 0.5);
}

.ca-box {
    background: rgba(70, 57, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #4639ff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    min-width: 200px;
    justify-content: center;
}

.ca-box:hover {
    background: rgba(70, 57, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(70, 57, 255, 0.2);
}

.ca-box i {
    color: #4639ff;
}

.ca-box span {
    font-size: 14px;
}

.x-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hero-logo {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    position: relative;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-logo {
        width: 300px;
        height: 300px;
    }

    .hero-buttons-row {
        flex-wrap: wrap;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-button, .ca-box {
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 300px;
        height: 300px;
    }
}


.wallet-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    /* background-color: #00efa9; */
}

.wallet-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wallet-button i {
    font-size: 16px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .wallet-button {
        margin-left: auto;
        white-space: nowrap;
        padding: 6px 12px;
    }

    .nav-links {
        margin-right: auto;
    }

    .top-nav {
        justify-content: space-between;
        padding: 1rem 2rem;
    }
}


/* Models Section Styles */
.models-title {
    margin-top: 60px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.model-card {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 57, 255, 0.1);
    backdrop-filter: blur(10px);
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: rgba(70, 57, 255, 0.3);
}

.model-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.model-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}

.model-card.coming-soon {
    color: rgba(255, 255, 255, 0.5);
}

.model-card.coming-soon i {
    font-size: 2.5rem;
    margin: 8px 0;
}