/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #888888);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #cccccc;
}

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

.nav-button {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #888888);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #cccccc;
}

.hero-description {
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #cccccc);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #888888);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Code Blocks */
.code-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.code-block.large {
    margin: 3rem 0;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-lang {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #888888;
    font-weight: 500;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.code-content {
    padding: 1.5rem;
    overflow-x: auto;
}

.code-content code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

.code-content pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.install-alternatives {
    margin-top: 3rem;
}

.install-alternatives h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.example-output {
    margin-top: 2rem;
}

.example-output h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

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

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

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

/* About Section */
.about-content {
    text-align: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-avatar {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-emoji {
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 50%;
    display: inline-block;
}

.about-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.about-info p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #888888;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links, .footer-social {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a, .footer-social a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-social a:hover {
    color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        overflow: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        height: calc(100vh - 100px);
        top: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links, .footer-social {
        justify-content: center;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-stats {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-icon {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .code-content {
        padding: 1rem;
    }
    
    .code-content code {
        font-size: 0.9rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Selection Styling */
::selection {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo {
    height: 28px; /* perfect size for navbar */
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}
.hero-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}
/* === Why PyTure section === */
.why-pyture {
  animation: fadeInUp 0.8s ease-out both;
}

.glass-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.08);
}

.pain-points {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 2rem 0;
}

.pain-points li {
  margin: 0.75rem 0;
  font-size: 1.1rem;
  color: #cccccc;
  transition: transform 0.2s ease;
}

.pain-points li:hover {
  transform: translateX(8px);
  color: #00ffaa;
}

.solution-highlight {
  font-size: 1.1rem;
  font-weight: 500;
  color: #00ffaa;
  margin-top: 1rem;
}

.bonus-line {
  font-style: italic;
  opacity: 0.9;
  color: #aaa;
  margin-top: 0.5rem;
}

/* Fade animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .glass-box {
    padding: 1.25rem;
    margin-top: 1.5rem;
  }

  .pain-points li {
    font-size: 1rem;
  }

  .solution-highlight,
  .bonus-line,
  .section-description {
    text-align: center;
  }
}

/* === What is PyTure section === */
.what-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out both;
}

.what-text {
  flex: 1 1 400px;
}

.what-text .section-description {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.what-visual {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-float:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 255, 170, 0.15);
}

.neon-glow {
  color: #00ffaa;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.tiny-note {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 1rem;
}

.bonus-line {
  font-style: italic;
  color: #aaa;
  text-align: center;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .what-grid {
    flex-direction: column;
    text-align: center;
  }

  .what-text .section-description {
    font-size: 1rem;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .what-visual {
    margin-top: 1.5rem;
  }
}


/* === Example Section === */
.code-block.large {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  backdrop-filter: blur(12px);
  font-family: 'JetBrains Mono', monospace;
  color: #b5f4ec;
  font-size: 0.95rem;
  overflow-x: auto;
  box-shadow: 0 0 10px rgba(0, 255, 170, 0.08);
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.75rem;
  border-radius: 8px 8px 0 0;
  font-size: 0.8rem;
  color: #00ffaa;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.code-lang {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.copy-btn {
  background: transparent;
  border: 1px solid #00ffaa;
  color: #00ffaa;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: rgba(0, 255, 170, 0.1);
}

.copy-btn.tick-pop {
  transform: scale(1.08);
}


.copy-btn:hover {
  background: rgba(0, 255, 170, 0.1);
}

.example-output {
  margin-top: 2rem;
}

.example-output h3 {
  color: #00ffaa;
  margin-bottom: 0.5rem;
}

.code-content {
  white-space: pre;
  color: #b5f4ec;
}
.example-output h3 {
  color: #00ffaa; /* Neon green matching the rest of your theme */
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.code-block .code-content {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid #00ffaa;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
}

