:root {
    --primary-color: #6c00ff;
    --secondary-color: #4a00cc;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --hover-color: #8000ff;
    --gradient-primary: linear-gradient(45deg, #6c00ff, #4a00cc);
    --gradient-secondary: linear-gradient(135deg, #4a00cc, #6c00ff);
    --neon-shadow: 0 0 10px #6c00ff, 0 0 20px #6c00ff, 0 0 30px #6c00ff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--background-color), rgba(0, 0, 0, 0.9));
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: navbarGlow 2s ease-in-out infinite;
}

@keyframes navbarGlow {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 2px 15px rgba(108, 0, 255, 0.2);
    }
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(108, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar:hover::before {
    opacity: 1;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.logo a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.logo a:hover {
    color: var(--gradient-primary);
    transform: translateY(-1px);
}

.logo a:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links li a:hover {
    color: var(--gradient-primary);
    transform: translateY(-1px);
}

.nav-links li a:hover::before {
    transform: scaleX(1);
}

.nav-links li a.active {
    color: var(--gradient-primary);
}

.nav-links li a.active::before {
    transform: scaleX(1);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        text-align: center;
        width: 100%;
        padding: 1rem;
    }

    .nav-links li a.active {
        background: rgba(108, 0, 255, 0.2);
    }

    .menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .menu-btn:hover {
        color: var(--gradient-primary);
        transform: scale(1.1);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--neon-shadow);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.connect-button {
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: var(--neon-shadow);
}

.btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px #6c00ff, 0 0 30px #6c00ff, 0 0 40px #6c00ff;
}

.btn:hover {
    background-color: var(--hover-color);
}

.wl-info {
    background-color: rgba(108, 0, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 10px rgba(108, 0, 255, 0.2);
}

.product-image-placeholder i {
    font-size: 4rem;
    color: var(--gradient-primary);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-shadow: var(--neon-shadow);
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

/* Join Section */
.join {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
}

.join h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps {
    list-style: none;
    text-align: center;
    font-size: 1.2rem;
    line-height: 2;
}

/* Community Section */
.community {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: var(--neon-shadow);
}

.social-icon:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px #6c00ff, 0 0 30px #6c00ff, 0 0 40px #6c00ff;
}

.social-icon:hover {
    background-color: var(--hover-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--background-color), rgba(0, 0, 0, 0.9));
    color: white;
    padding: 3rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    animation: footerGlow 2s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% {
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) inset;
    }
    50% {
        box-shadow: 0 -2px 15px rgba(108, 0, 255, 0.2) inset;
    }
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(108, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

footer:hover::before {
    opacity: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--gradient-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        color: var(--gradient-primary);
    }
    50% {
        color: #8a00ff;
    }
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(108, 0, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}
