body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #0a0a0a, #1c2526) !important;
    background-color: #0a0a0a !important;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    animation: backgroundShift 10s ease infinite;
}

@keyframes backgroundShift {
    0% { background: linear-gradient(45deg, #0a0a0a, #1c2526); }
    50% { background: linear-gradient(45deg, #1c2526, #0a0a0a); }
    100% { background: linear-gradient(45deg, #0a0a0a, #1c2526); }
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #0a0a0a;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(26, 26, 26, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1E90FF;
    text-shadow: 0 0 5px rgba(30, 144, 255, 0.5);
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
}

.nav-link:hover {
    color: #1E90FF;
    text-shadow: 0 0 5px rgba(30, 144, 255, 0.5);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #1E90FF, #00BFFF);
    opacity: 0.5;
    animation: pulse 6s ease-in-out infinite;
}

.top-circle {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.bottom-circle {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

h1 {
    font-size: 64px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.subtitle {
    font-size: 20px;
    margin: 20px 0;
    color: #b0b0b0;
    text-shadow: 0 0 5px rgba(30, 144, 255, 0.3);
}

.launch-btn {
    background-color: #1E90FF;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.launch-btn:hover {
    background-color: #00BFFF;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.8);
}

.features {
    padding: 100px 50px;
    background-color: rgba(26, 26, 26, 0.9);
    text-align: center;
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.description {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 0 5px rgba(30, 144, 255, 0.5);
    margin: 0 auto 40px;
    max-width: 800px;
}

.docs-btn {
    background-color: transparent;
    color: #1E90FF;
    border: 2px solid #1E90FF;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.docs-btn:hover {
    background-color: #1E90FF;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.8);
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature-item {
    background-color: rgba(42, 42, 42, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.icon {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.feature-item p {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}

.waitlist-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: rgba(42, 42, 42, 0.9);
    padding: 30px;
    border-radius: 10px;
    z-index: 1001;
    width: 90%;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.waitlist-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.waitlist-panel h3 {
    font-size: 24px;
    margin: 0 0 10px;
}

.waitlist-panel p {
    font-size: 16px;
    color: #b0b0b0;
    margin: 0 0 20px;
}

.waitlist-panel form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.waitlist-panel input {
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #3a3a3a;
    color: #ffffff;
    font-size: 16px;
}

.waitlist-panel button {
    background-color: #1E90FF;
    color: #ffffff;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

.waitlist-panel button:hover {
    background-color: #00BFFF;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.8);
}

.success-message {
    display: none;
    font-size: 16px;
    color: #1E90FF;
    margin-top: 10px;
}

footer {
    padding: 20px;
    background-color: rgba(26, 26, 26, 0.9);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.social-icon:hover {
    color: #1E90FF;
    text-shadow: 0 0 5px rgba(30, 144, 255, 0.5);
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease forwards;
}

.animate-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease forwards 0.2s;
}

.animate-card {
    opacity: 0;
    transform: translateY(20px);
}

.animate-card.visible {
    animation: fadeInUp 0.3s ease forwards;
}

.animate-icon {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.9);
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        backdrop-filter: blur(5px);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: 18px;
        padding: 10px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .menu-toggle {
        display: block;
    }

    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .features {
        padding: 50px 20px;
    }

    .features-header {
        gap: 10px;
    }

    .description {
        font-size: 18px;
        max-width: 100%;
        text-align: center;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .feature-item {
        width: 100%;
        max-width: 350px;
    }
}