*{
    
    margin: 0;
    padding: 0;
    font-family: Inter,"Inter Fallback",system-ui,sans-serif;

}

*, *:before, *:after {
    box-sizing: inherit;
}

body{
    background: #000000;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* stops sideways scrolling */
  box-sizing: border-box;
}


.navbar{
    background: #0a0b0d;
    display: flex;
    justify-content: center;
    height: 60px;
    color: white;
}

.navbar {
    width: 100vw;
    min-width: 100%;
}


.navwrapper {
    width: 100%;
    min-width: 0; /* Allow flex items to shrink */
}

/* 4. Prevent text wrapping and element shrinking */
nav li {
    white-space: nowrap;
}

.logo {
    flex-shrink: 0;
}

.auth-buttons {
    flex-shrink: 0;
}

.auth-buttons a {
    white-space: nowrap;
}

/* 5. Use responsive font sizes instead of fixed px */
.hero-title, h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.hero-subtitle, .section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.section-title, h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* 6. Fix stats and cards grid for zoom */
.metrics-grid, .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.products-grid, .accounts-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* 7. Prevent images from overflowing */
img {
    max-width: 100%;
    height: auto;
}

/* 8. Container max-width adjustments */
.container, .container2 {
    max-width: 100%;
    padding-left: clamp(15px, 3vw, 20px);
    padding-right: clamp(15px, 3vw, 20px);
}

/* 9. Better mobile breakpoints for zoom scenarios */
@media (max-width: 480px), (max-height: 600px) and (orientation: landscape) {
    .navbar {
        height: 60px;
    }
    
    .navwrapper {
        height: 60px;
    }
    
    .logo img {
        width: clamp(60px, 15vw, 100px);
    }
    
    .mobile-nav {
        top: 60px;
    }
    
    body {
        padding-top: 60px;
    }
}

/* 10. Fix for very small screens or high zoom */
@media (max-width: 320px) {
    .logo img {
        width: 70px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .deposit-grid, .accounts-grid {
        grid-template-columns: 1fr;
    }
}

/* 11. Landscape orientation fixes */
@media (orientation: landscape) and (max-height: 500px) {
    .navbar {
        height: 50px;
    }
    
    .navwrapper {
        height: 50px;
    }
    
    body {
        padding-top: 50px;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 80px 0 40px;
    }
}

.navwrapper{
    width: 95%;
}

.container{
    width: 1200px;
}

.flex{
    display: flex;
}

.space-between{
    display: flex;
    justify-content: space-between;
}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    width: 150px;
}

nav{
    display: flex;
    align-items: center;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.navbar li {
  position: relative;
  cursor: pointer;
  padding: 8px 0;
}

/* Blue underline when active */
.navbar li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #2563eb; /* blue */
  border-radius: 2px;
}

/* Optional: underline on hover */
.navbar li:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #3b82f6; /* lighter blue on hover */
  border-radius: 2px;
}


nav ul{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
    font-size: 14px;
    height: 100%;
}

.logo-nav{
    display: flex;
    gap: 50px;
}

 .auth-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  font-size: 14px;
}

.auth-buttons .login {
  color: white;
  text-decoration: none;
}

.auth-buttons .login:hover {
  text-decoration: underline;
}

.auth-buttons .signup {
  background-color: #2563eb; /* blue button */
  color: white;
  padding: 8px 16px;
  border-radius: 9999px; /* fully rounded */
  text-decoration: none;
  transition: background 0.2s ease;
}

.auth-buttons .signup:hover {
  background-color: #1d4ed8; /* darker blue on hover */
}


/* Banner */

.banner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.banner .container img{
    width: 100%;
}

.circle {
      position: absolute;
      z-index: -1;
    }

.top {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }

.banner-content{
  width: 700px;
  text-align: center;
  font-size: 25px;
  line-height: 1.5;
  color: #b9b9b9;
}

/* Stats */

.stats{
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.metrics-wrap{
      width:100%;
      
      border-radius:12px;
      padding:20px;
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      box-shadow: 0 12px 30px rgba(2,6,23,0.6);
      border:1px solid rgba(255,255,255,0.03);
      color: white;
    }

    .metrics-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:16px;
    }
    .metrics-header h2{ margin:0; font-size:28px; }

    .metrics-grid{
      display:grid;
      grid-template-columns: repeat(3,1fr);
      gap:100px;
    }

    .metric{
      background: var(--card);
      padding:16px;
      border-radius:10px;
      display:flex;
      gap:30px;
      align-items:center;
      border:1px solid var(--glass);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .metric:hover{ transform: translateY(-6px); box-shadow: 0 10px 26px rgba(2,8,30,0.6); }

    .icon{
      min-width:102px;
      min-height:102px;
      border-radius:10px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: linear-gradient(135deg, rgba(14,165,255,0.08), rgba(14,165,255,0.04));
      border:1px solid rgba(14,165,255,0.08);
    }
    .icon svg{ width:28px; height:28px; stroke: var(--accent); fill: none; stroke-width:1.6 }

    .body{ flex:1; min-width:0 }
    .label{ display:block; color:var(--muted); font-size:16px; margin-bottom:6px; }
    .value{ font-size:40px; font-weight:700; white-space:nowrap }
    .sub{ color:var(--muted); font-size:16px; margin-top:6px }

    @media (max-width:900px){
      .metrics-grid{ grid-template-columns: 1fr; }
    }



    /* Products Section */
        .products-section {
            padding: 80px 0;
            background: #0a0b0d;
            display: flex;
            justify-content: center;
        }

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

        .product-card {
            background: #000000;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #2a2d31;
            transition: border-color 0.3s ease;
        }

        .product-card:hover {
            border-color: #4A90E2;
        }

        .product-icon {
            width: 48px;
            height: 48px;
            background: rgba(74, 144, 226, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .product-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .product-description {
            color: #a0a5aa;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .product-features li {
            color: #a0a5aa;
            font-size: 0.85rem;
            padding: 0.3rem 0;
            position: relative;
            padding-left: 1rem;
        }

        .product-features li::before {
            content: "✓";
            color: #4A90E2;
            position: absolute;
            left: 0;
        }

        /* Account Types */
        .accounts-section {
            padding: 80px 0;
            display: flex;
            justify-content: center;
        }

        .section-title{
          font-size: 40px;
          color: white;
        }

        .accounts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .account-card {
            background: #1a1d21;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #2a2d31;
            position: relative;
            transition: all 0.3s ease;
        }

        .account-card:hover {
            border-color: #4A90E2;
            transform: translateY(-4px);
        }

        .account-card.featured {
            border-color: #4A90E2;
        }

        .account-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #4A90E2;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .account-type {
            font-size: 1.4rem;
            font-weight: 600;
            color: #4A90E2;
            margin-bottom: 0.5rem;
        }

        .account-subtitle {
            color: #a0a5aa;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }


   
/* Additional sections CSS */
.section {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 18px;
    color: #a0a5aa;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #0a0b0d;
    display: flex;
    justify-content: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4A90E2;
}

.about-text p {
    color: #a0a5aa;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tradeview-section{
    display: flex;
    justify-content: center;
    margin: 100px 0;
}

.trade-width{
    height: 500px;
}

.highlight-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #2a2d31;
    text-align: center;
}

.highlight-number {
    font-size: 32px;
    font-weight: 700;
    color: #4A90E2;
    display: block;
}

.highlight-label {
    color: #a0a5aa;
    font-size: 14px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #1a1d21;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2a2d31;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #4A90E2;
    transform: translateY(-4px);
}

.testimonial-content p {
    color: #a0a5aa;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 48px;
    color: #4A90E2;
    position: absolute;
    left: -20px;
    top: -10px;
    line-height: 1;
}

.testimonial-author strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #a0a5aa;
    font-size: 14px;
}

/* Education Section */
.education-section {
    padding: 80px 0;
    background: #0a0b0d;
    display: flex;
    justify-content: center;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.education-card {
    background: #000000;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2a2d31;
    transition: all 0.3s ease;
}

.education-card:hover {
    border-color: #4A90E2;
    transform: translateY(-4px);
}

.education-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.education-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #4A90E2;
    text-align: center;
}

.education-card p {
    color: #a0a5aa;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.education-list {
    list-style: none;
}

.education-list li {
    color: #a0a5aa;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.education-list li::before {
    content: "✓";
    color: #4A90E2;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Affiliate Section */
.affiliate-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.affiliate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.affiliate-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.affiliate-subtitle {
    color: #a0a5aa;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.affiliate-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    font-size: 24px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.benefit-item h4 {
    margin-bottom: 8px;
    color: #ffffff;
}

.benefit-item p {
    color: #a0a5aa;
    font-size: 14px;
    line-height: 1.5;
}

.affiliate-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-item {
    background: #1a1d21;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2a2d31;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 10px;
}

.stat-label {
    color: #a0a5aa;
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #0a0b0d;
    display: flex;
    justify-content: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #a0a5aa;
}

.contact-form {
    background: #1a1d21;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #2a2d31;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #2a2d31;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #000000;
    border-top: 1px solid #2a2d31;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #4A90E2;
}

.footer-section p,
.footer-section a {
    color: #a0a5aa;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #4A90E2;
}

.footer-bottom {
    border-top: 1px solid #2a2d31;
    padding-top: 30px;
    text-align: center;
    color: #a0a5aa;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content,
    .contact-content,
    .affiliate-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .navwrapper {
        padding: 0 15px;
    }

    nav ul {
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .banner-content {
        width: 90%;
        font-size: 20px;
    }
}

.fade-in {
    opacity: 1;
}

:root {
    --card: transparent;
    --glass: rgba(255,255,255,0.03);
    --accent: #4A90E2;
    --muted: #a0a5aa;
}


/* Deposit Section CSS */
        .deposit-section {
            padding: 80px 0;
            background: #0a0b0d;
            display: flex;
            justify-content: center;
            font-family: Inter, "Inter Fallback", system-ui, sans-serif;
        }

        .container {
            width: 1200px;
            padding: 0 20px;
        }

        .section-title {
            font-size: 40px;
            color: white;
            margin-bottom: 20px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 18px;
            color: #a0a5aa;
            text-align: center;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

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

        .deposit-card {
            background: #1a1d21;
            border-radius: 16px;
            padding: 30px;
            border: 1px solid #2a2d31;
            text-align: center;
            transition: all 0.3s ease;
        }

        .deposit-card:hover {
            border-color: #4A90E2;
            transform: translateY(-4px);
        }

        .deposit-card h3 {
            font-size: 24px;
            color: #4A90E2;
            margin-bottom: 20px;
        }

        .qr-code {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .deposit-info {
            text-align: left;
        }

        .deposit-label {
            color: #a0a5aa;
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
        }

        .deposit-address {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.05);
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #2a2d31;
            margin-bottom: 15px;
        }

        .deposit-address code {
            flex: 1;
            color: #ffffff;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            word-break: break-all;
        }

        .copy-btn {
            background: #4A90E2;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 14px;
        }

        .copy-btn:hover {
            background: #3a7bd5;
        }

        .network-note {
            color: #a0a5aa;
            font-size: 13px;
            font-style: italic;
        }

        .deposit-notice {
            margin-top: 50px;
            display: flex;
            justify-content: center;
        }

        .notice-card {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 12px;
            padding: 25px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            max-width: 600px;
        }

        .notice-icon {
            font-size: 24px;
            min-width: 30px;
        }

        .notice-content h4 {
            color: #ffc107;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .notice-content p {
            color: #a0a5aa;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .notice-content p:last-child {
            margin-bottom: 0;
        }

        .notice-content strong {
            color: #ffc107;
        }

        .fade-in {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                width: 95%;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .deposit-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }


        /* Navbar Styles */
        .navbar {
            background: #0a0b0d;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .navwrapper {
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
            height: 70px;
            position: relative;
        }

        .flex {
            display: flex;
        }

        .space-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo-nav {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            width: 150px;
            height: auto;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 30px;
            font-size: 14px;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        nav li {
            position: relative;
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        nav li:hover {
            color: #3b82f6;
        }

        /* Blue underline when active */
        nav li.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 100%;
            background-color: #2563eb;
            border-radius: 2px;
        }

        /* Optional: underline on hover */
        nav li:hover::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 100%;
            background-color: #3b82f6;
            border-radius: 2px;
        }

        .auth-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 14px;
        }

        .auth-buttons .login {
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .auth-buttons .login:hover {
            background: rgba(255,255,255,0.1);
        }

        .auth-buttons .signup {
            background-color: #2563eb;
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .auth-buttons .signup:hover {
            background-color: #1d4ed8;
            transform: translateY(-1px);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Mobile menu animation */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: #0a0b0d;
            border-top: 1px solid #2a2d31;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-nav ul {
            flex-direction: column;
            gap: 0;
            padding: 20px 0;
        }

        .mobile-nav li {
            width: 100%;
            text-align: center;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: background 0.3s ease;
        }

        .mobile-nav li:hover {
            background: rgba(255,255,255,0.1);
            color: #3b82f6;
        }

        .mobile-nav li:last-child {
            border-bottom: none;
        }

        .mobile-auth-buttons {
            display: none;
            flex-direction: column;
            gap: 15px;
            padding: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-auth-buttons a {
            text-align: center;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-auth-buttons .login {
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .mobile-auth-buttons .login:hover {
            background: rgba(255,255,255,0.1);
        }

        .mobile-auth-buttons .signup {
            background: #2563eb;
            color: white;
            font-weight: 500;
        }

        .mobile-auth-buttons .signup:hover {
            background: #1d4ed8;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .logo-nav {
                gap: 30px;
            }
            
            nav ul {
                gap: 20px;
            }

            .banner{
              margin-top: 100px;
            }
        }

        @media (max-width: 768px) {
            .logo img {
                width: 120px;
            }
            
            .logo-nav {
                gap: 20px;
            }
            
            nav ul {
                gap: 15px;
                font-size: 13px;
            }
            
            .auth-buttons {
                gap: 12px;
            }
            
            .auth-buttons .signup {
                padding: 8px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 640px) {
            /* Hide desktop navigation */
            nav,
            .auth-buttons {
                display: none;
            }
            
            /* Show mobile menu button */
            .mobile-menu-btn {
                display: flex;
            }
            
            /* Show mobile navigation when active */
            .mobile-nav {
                display: block;
            }
            
            .mobile-auth-buttons {
                display: flex;
            }
            
            .logo img {
                width: 100px;
            }
            
            .navwrapper {
                padding: 0 15px;
                width: calc(100% - 30px);
            }
        }

        @media (max-width: 480px) {
            .navbar {
                height: 60px;
            }
            
            .navwrapper {
                height: 60px;
            }
            
            .mobile-nav {
                top: 60px;
            }
            
            .logo img {
                width: 80px;
            }
            
            body {
                padding-top: 60px;
            }
        }

        /* Demo content for testing */
        .demo-content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            color: white;
        }

        .demo-content h1 {
            text-align: center;
            margin-bottom: 20px;
            color: #2563eb;
        }

        .demo-content p {
            text-align: center;
            color: #a0a5aa;
            line-height: 1.6;
        }
