/* Navigation Bar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(20, 22, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 209, 0.1);
  z-index: 1000;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #c7c7d9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #00FFD1;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-connect-btn {
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  color: #18181b;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-connect-btn:hover {
  background: linear-gradient(90deg, #884fff 0%, #00FFD1 100%);
  color: #fff;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #00FFD1;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

body {
  background: #18181b;
  color: #fff;
  min-height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding-top: 80px; /* Account for fixed navbar */
}

.animated-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: linear-gradient(120deg, #1a1a2e 0%, #23272f 50%, #2d2e36 100%);
  animation: bgMove 8s ease-in-out infinite alternate;
}

@keyframes bgMove {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(30deg) brightness(1.1); }
}

.container {
  position: relative;
  z-index: 1;
  width: 100vw;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: rgba(30, 32, 36, 0.92);
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  max-width: 1100px;
  width: 95%;
  margin: 4vh 0 4vh 0;
  animation: fadeIn 1.2s cubic-bezier(.39,.575,.56,1.000);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.hero-text {
  flex: 1 1 0;
  min-width: 260px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-weight: 700;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #b3b3ff;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #c7c7d9;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

#connectBtn {
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  color: #18181b;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 255, 209, 0.15);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
  position: relative;
  overflow: hidden;
}

#connectBtn:hover, #connectBtn:focus {
  background: linear-gradient(90deg, #884fff 0%, #00FFD1 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(136, 79, 255, 0.25);
}

.hero-image {
  flex: 1 1 0;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3.5s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-18px); }
}

.hero-image svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 0 32px #00FFD1aa);
  transition: filter 0.4s;
}

.hero-image svg:hover {
  filter: drop-shadow(0 0 48px #884fffcc);
}

/* About Section Styles */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 0 0;
  width: 100vw;
}

.about-content {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 2rem 2.5rem 2rem;
  max-width: 820px;
  width: 90vw;
  color: #e6e6fa;
  margin: 0 1rem;
  animation: fadeIn 1.2s cubic-bezier(.39,.575,.56,1.000);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro {
  font-size: 1.08rem;
  color: #c7c7d9;
  margin-bottom: 1.7rem;
  line-height: 1.7;
}

.about-focus h3 {
  color: #b3b3ff;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.about-focus ul {
  list-style: disc inside;
  padding-left: 0.5rem;
  color: #e6e6fa;
}

.about-focus li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  width: 100%;
}

.features-content h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(35, 39, 47, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 255, 209, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 209, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #b3b3ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: #c7c7d9;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 4rem 2rem;
  background: rgba(35, 39, 47, 0.3);
  width: 100%;
}

.stats-content {
  max-width: 1000px;
  margin: 0 auto;
}

.stats-content h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00FFD1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b3b3ff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Roadmap Section */
.roadmap-section {
  padding: 4rem 2rem;
  max-width: 800px;
  width: 100%;
}

.roadmap-content h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roadmap-timeline {
  position: relative;
  padding-left: 2rem;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00FFD1 0%, #884fff 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #00FFD1;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 209, 0.5);
}

.timeline-content h3 {
  color: #b3b3ff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-content p {
  color: #c7c7d9;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 4rem 2rem;
  background: rgba(35, 39, 47, 0.5);
  text-align: center;
  width: 100%;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: #c7c7d9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  color: #18181b;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 255, 209, 0.25);
  transition: all 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(136, 79, 255, 0.35);
  background: linear-gradient(90deg, #884fff 0%, #00FFD1 100%);
  color: #fff;
}

/* Footer */
.footer {
  background: rgba(20, 22, 28, 0.95);
  padding: 3rem 2rem 1rem;
  width: 100%;
  border-top: 1px solid rgba(0, 255, 209, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  color: #00FFD1;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #c7c7d9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #00FFD1;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 209, 0.1);
  color: #888;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(20, 22, 28, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 1rem;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 95%;
    margin: 2vh 0 4vh 0;
  }
  .hero-image {
    min-width: 160px;
  }
  .about-content {
    padding: 1.5rem 0.7rem;
    border-radius: 1rem;
    max-width: 98vw;
  }
  .about-section {
    margin-top: 1.2rem;
  }
  .features-section, .roadmap-section {
    padding: 2rem 1rem;
  }
  
  .stats-section, .cta-section {
    padding: 2rem 1rem;
  }
  
  .features-content h2, .stats-content h2, .roadmap-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 70px;
  }
  
  .container {
    min-height: calc(100vh - 70px);
    padding-top: 1rem;
  }
  
  .hero {
    padding: 1.2rem 0.8rem;
    border-radius: 1rem;
    margin: 1vh 0 2vh 0;
    max-width: 98%;
  }
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text h2 {
    font-size: 1.1rem;
  }
  .hero-image svg {
    max-width: 180px;
  }
  #connectBtn {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .about-content {
    padding: 1rem 0.2rem;
    border-radius: 0.7rem;
  }
  .about-content h2 {
    font-size: 1.3rem;
  }
  .about-focus h3 {
    font-size: 1rem;
  }
  .about-focus li {
    font-size: 0.97rem;
  }
  .feature-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .roadmap-timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-marker {
    left: -1.5rem;
  }
  
  .footer {
    padding: 2rem 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0.7rem 0.5rem;
    border-radius: 0.7rem;
    margin: 0.5vh 0 2vh 0;
    gap: 1.2rem;
    max-width: 96%;
  }
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text h1 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .hero-text h2 {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .hero-image svg {
    max-width: 120px;
  }
  #connectBtn {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (max-width: 350px) {
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text h1 {
    font-size: 1.05rem;
  }
  .hero-text h2 {
    font-size: 0.8rem;
  }
  .hero-image svg {
    max-width: 80px;
  }
  #connectBtn {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
} 

/* Secure Iframe Section Styles */
.secure-iframe-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(20, 22, 28, 0.8) 0%, rgba(35, 39, 47, 0.8) 100%);
  border-top: 1px solid rgba(0, 255, 209, 0.1);
  border-bottom: 1px solid rgba(0, 255, 209, 0.1);
}

.secure-iframe-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.secure-iframe-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #00FFD1 0%, #884fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.secure-iframe-content > p {
  font-size: 1.1rem;
  color: #c7c7d9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.security-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 209, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 255, 209, 0.3);
  color: #00FFD1;
  font-weight: 500;
  transition: all 0.3s;
}

.security-item:hover {
  background: rgba(0, 255, 209, 0.2);
  border-color: rgba(0, 255, 209, 0.5);
  transform: translateY(-2px);
}

.security-icon {
  font-size: 1.2rem;
}

.iframe-container {
  background: rgba(20, 22, 28, 0.9);
  border: 2px solid rgba(0, 255, 209, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.iframe-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00FFD1, #884fff, #00FFD1);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.iframe-security-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 255, 209, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 209, 0.3);
}

.security-status {
  color: #00FFD1;
  font-weight: 600;
  font-size: 0.9rem;
}

.encryption-level {
  color: #884fff;
  font-weight: 500;
  font-size: 0.8rem;
}

.secure-iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.iframe-security-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(136, 79, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(136, 79, 255, 0.3);
}

.connection-status {
  color: #884fff;
  font-weight: 500;
  font-size: 0.9rem;
}

.security-level {
  color: #00FFD1;
  font-weight: 600;
  font-size: 0.8rem;
}

.security-notes {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(20, 22, 28, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 255, 209, 0.2);
}

.security-notes h4 {
  color: #00FFD1;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.security-notes ul {
  list-style: none;
  padding: 0;
}

.security-notes li {
  color: #c7c7d9;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.security-notes li::before {
  content: '🔒';
  position: absolute;
  left: 0;
  top: 0;
}

.security-notes strong {
  color: #00FFD1;
}

/* Responsive Design for Secure Iframe */
@media (max-width: 768px) {
  .security-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .iframe-security-banner,
  .iframe-security-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .secure-iframe {
    height: 400px;
  }
  
  .security-notes {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .secure-iframe-content h2 {
    font-size: 2rem;
  }
  
  .secure-iframe {
    height: 300px;
  }
  
  .iframe-container {
    padding: 1rem;
  }
} 