/* Monotone Dot-Matrix Background */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
  }
  
  /* Navbar */
  nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }
  nav h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .toggle {
    position: relative;
    width: 40px;
    height: 20px;
  }
  .toggle input { display: none; }
  .slider {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  .slider:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 2px;
    left: 2px;
    background: #000;
    border-radius: 50%;
    transition: 0.3s;
  }
  input:checked + .slider {
    background: #fff;
  }
  input:checked + .slider:before {
    transform: translateX(20px);
  }
  /* Hero */
  .hero {
    position: relative;
    text-align: center;
    padding: 4rem 1rem;
    z-index: 2;
  }
  .hero h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
  }
  .btn:hover {
    transform: scale(1.05);
  }
  /* Feature Cards */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    z-index: 2;
  }
  .feature-card {
    background: #111;
    border: 1px solid #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
  }
  .feature-card:hover {
    background: #222;
    transform: translateY(-5px);
  }
  .feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
  /* Social Buttons */
  .social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 2rem;
    z-index: 2;
  }
  .dot-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
  }
  .dot-btn:hover {
    background: #fff;
  }
  .dot-btn:hover svg {
    stroke: #000;
  }
  .dot-btn svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    transition: stroke 0.2s;
  }
/* Blurred Moving Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Place behind all content */
}

.blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    filter: blur(100px);
    border-radius: 50%;
    animation: moveBlobs 10s infinite ease-in-out;
}

.blob:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.blob:nth-child(2) {
    top: 50%;
    left: 70%;
    animation-delay: 2s;
}

.blob:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.blob:nth-child(4) {
    top: 30%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes moveBlobs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
    }
}