/* Reset styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background for better contrast */
    overflow: hidden; /* Prevents scroll bars from appearing */
}

/* Full-screen container */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background with particles */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Particle styles for tiny dots */
.particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background-color: #FFD700; /* Golden color */
    border-radius: 50%;
    animation: float 2s infinite ease-in-out, move 4s infinite ease-in-out; /* Faster float and move animations */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Soft golden glow */
}

/* Multiple particles with different animations */
.particle:nth-child(1) { top: 10%; left: 20%; }
.particle:nth-child(2) { top: 40%; left: 50%; }
.particle:nth-child(3) { top: 60%; left: 30%; }
.particle:nth-child(4) { top: 80%; left: 70%; }
.particle:nth-child(5) { top: 50%; left: 80%; }
.particle:nth-child(6) { top: 70%; left: 40%; }
.particle:nth-child(7) { top: 30%; left: 90%; }
.particle:nth-child(8) { top: 20%; left: 60%; }
.particle:nth-child(9) { top: 10%; left: 90%; }
.particle:nth-child(10) { top: 90%; left: 20%; }

/* Faster floating and moving animations */
@keyframes float {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}

@keyframes move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(20px);
    }
}

/* Title and description styles */
.title-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.title {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700; /* Gold color */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Glow effect */
}

.description {
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
}

/* Button container */
.button-container {
    margin-top: 40px;
}

/* Buttons */
.get-knowledge-button, .explore-button {
    background-color: #fff;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover */
}

/* Button hover effects */
.get-knowledge-button:hover {
    background-color: #FF69B4; /* Pink on hover */
    color: #fff; /* White text on hover */
}

.explore-button:hover {
    background-color: #33CC33; /* Green on hover */
    color: #fff; /* White text on hover */
}
