
html, body {
    background: #00132d;
    color: #fff;
    scroll-behavior: smooth;
}

.three-container {
    position: relative;
    overflow: hidden;
}

canvas.three-bg {
    width: 100%;
    height: 100%;
    display: block;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .three-container {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .three-container {
        height: 240px;
    }
}


.content {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
}

.content h1 {
    display: block;
    width: 100%;
    font-size: 2.8rem;
    font-weight: 700; 
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);

}

.btn {
    background: #7623bf;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px #7623bf;
}

.btn:hover {
    box-shadow: 0 6px 20px #7623bf;
}

  .logo-text {
        font-family: 'Righteous', sans-serif;
        font-size: 2rem;
        font-weight: bold;
        color: white;
      }

      
/* Responsive tweaks */
@media (max-width: 768px) {
    .content {
        max-width: 90%;
        padding: 25px 15px;
    }
    .content h1 {
        font-size: 2.2rem;
    }
    .content p {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        max-width: 95%;
        padding: 20px 12px;
    }
    .content h1 {
        font-size: 1.8rem;
    }
    .content p {
        font-size: 0.9rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
.text-gradient {
  background: linear-gradient(to right, #ffd700, #b872ff, #7623bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradient-flow 6s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}