/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

/* Starry Background */
.stars, .stars2, .stars3 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 1;
}

.stars {
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.7;
    animation: twinkle 3s infinite alternate;
}

.stars2 {
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.5;
    animation: twinkle 5s infinite alternate;
}

/* Twinkling Effect */
@keyframes twinkle {
    0% { opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* Welcome Container */
.welcome-container {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Welcome Text */
.welcome-text h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4, #9333ea);
    -webkit-background-clip: text;
    color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Explore Button */
button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #06b6d4;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(6, 182, 212, 0.3);
    transition: 0.3s;
}

button:hover {
    background-color: #0891b2;
}
