@charset "UTF-8";
:root {
  --color-dark: #0e0e22;
  --color-primary: rgba(48, 255, 189, 0.968627451);
  --font-family: 'Besley', serif;
}

.code-example pre[class*=language-] {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(48, 255, 141, 0.2);
  border-radius: 8px;
  padding: 24px;
  margin: 0;
  overflow-x: auto;
}

.code-example pre[class*=language-]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(48, 255, 189, 0.968627451), transparent);
  border-radius: 8px 8px 0 0;
}

.code-example code[class*=language-] {
  font-family: "Courier New", Consolas, Monaco, monospace;
  font-size: 0.9rem;
  line-height: 1.8;
}

:root {
  --underline-speed: 0.24s;
  --underline-offset: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Besley", serif;
  background: linear-gradient(135deg, #0e0e22 0%, #1a1a3a 100%);
  color: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  padding-top: 70px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(48, 255, 141, 0.1);
  border: 1px solid rgba(48, 255, 141, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(48, 255, 189, 0.968627451);
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(48, 255, 141, 0.6);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.section-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.demo-text {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 2.2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.demo-text-left {
  text-align: left;
}

.spacer {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
}

[data-draw-line] {
  color: rgba(48, 255, 189, 0.968627451);
  font-weight: 600;
  transition: color 0.3s ease;
}
[data-draw-line]:hover {
  color: #4dffa3;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(48, 255, 141, 0.3);
  transform: translateY(-5px);
}

.feature-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(48, 255, 189, 0.968627451);
}

.feature-card-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.code-example {
  margin: 20px 0;
  position: relative;
}
.code-example pre {
  padding-top: 50px !important;
}

.code-example-wrapper {
  position: relative;
}

.copy-button {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(48, 255, 141, 0.1);
  border: 1px solid rgba(48, 255, 141, 0.3);
  color: rgba(48, 255, 189, 0.968627451);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Besley", serif;
  font-weight: 600;
  z-index: 10;
}
.copy-button:hover {
  background: rgba(48, 255, 141, 0.2);
  border-color: rgba(48, 255, 141, 0.5);
  transform: translateY(-2px);
}
.copy-button.copied {
  background: rgba(48, 255, 141, 0.3);
  border-color: rgba(48, 255, 189, 0.968627451);
}
.copy-button.copied::after {
  content: " ✓ Copied!";
}

.example-demo {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.example-demo-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(48, 255, 141, 0.6);
  margin-bottom: 15px;
  font-weight: 600;
}

.footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14, 14, 34, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}
.nav-bar.scrolled {
  background: rgba(14, 14, 34, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(48, 255, 189, 0.968627451);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover {
  color: rgba(48, 255, 189, 0.968627451);
}
.nav-links a.active {
  color: rgba(48, 255, 189, 0.968627451);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .container-custom {
    padding: 0 20px;
  }
  .section {
    padding: 80px 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .nav-container {
    padding: 0 20px;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(14, 14, 34, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-toggle {
    display: block;
  }
}

/*# sourceMappingURL=demo.css.map */
