* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, #0b0c10, #1f2833, #020b14, #0d1a26);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #ffffff;
}

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

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Center Content */
.content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    perspective: 1000px;
}

/* Main Title Styling & Animation */
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    /* Gradient Text */
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Floating Animation */
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.4));
    margin-bottom: 10px;
}

@keyframes float {
    0% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(10deg); }
    100% { transform: translateY(0px) rotateX(0deg); }
}

/* Line Separator */
.separator {
    width: 0;
    height: 3px;
    background: #00f2fe;
    margin: 20px auto;
    border-radius: 5px;
    box-shadow: 0 0 10px #00f2fe;
    animation: expand 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards 0.5s;
}

@keyframes expand {
    0% { width: 0; opacity: 0; }
    100% { width: 120px; opacity: 1; }
}

/* Subtitle */
.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 2s ease forwards 1s;
}

/* Description Text */
.description {
    font-size: 1rem;
    color: #a0aab2;
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeIn 2s ease forwards 1.5s;
    line-height: 1.6;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(20px); }
}

/* Pulsing Loader Animation */
.loader {
    display: flex;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 2s ease forwards 2s;
}

.loader span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #00f2fe;
    animation: bounce 1.5s infinite ease-in-out both;
}

.loader span:nth-child(1) { animation-delay: -0.32s; }
.loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); box-shadow: 0 0 15px #00f2fe; }
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .logo-text { font-size: 3rem; letter-spacing: 2px; }
    .subtitle { font-size: 1.2rem; letter-spacing: 5px; }
    .description { font-size: 0.9rem; }
}
