* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
  body {
            background-color: #0a0a12;
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(28, 28, 51, 0.8) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(28, 28, 51, 0.8) 0%, transparent 20%);
        }

.cyberpunk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Navigation */
.cyberpunk-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 247, 255, 0.3);
    margin-bottom: 40px;
    position: relative;
}

.cyberpunk-nav::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00f7ff, #7700ff);
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.cyberpunk-menu {
    display: flex;
    list-style: none;
}

.cyberpunk-menu li {
    margin-left: 30px;
    position: relative;
}

.cyberpunk-menu a {
    color: #e0e0ff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cyberpunk-menu a:hover {
    color: #00f7ff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.7);
}

.cyberpunk-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f7ff, #7700ff);
    transition: width 0.3s ease;
    z-index: -1;
}

.cyberpunk-menu a:hover::before {
    width: 100%;
}

.login-btn {
    background: linear-gradient(45deg, #7700ff, #00f7ff);
    color: #0c0c1e !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(119, 0, 255, 0.5);
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(119, 0, 255, 0.7);
    color: #0c0c1e;
}

/* Hero Section */
.cyberpunk-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.cyberpunk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00f7ff, #e100ff);
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(225, 0, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: hwb(267 5% 19%);
    max-width: 800px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    color:  #c60ca1;
}

.join-btn {
    background: linear-gradient(45deg, #ff00aa, #7700ff);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 0, 170, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.join-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 170, 0.7);
}

.join-btn:hover::before {
    left: 100%;
}

/* Features Section */
.cyberpunk-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.feature-card {
    background: rgba(20, 20, 50, 0.5);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00f7ff, #3908c0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00f7ff, #7700ff);
    background-clip: text;
    color: transparent;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00f7ff;
}

.feature-description {
    color: #a0a0ff;
    line-height: 1.6;
}

/* Footer */
.cyberpunk-footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 247, 255, 0.3);
    position: relative;
}

.cyberpunk-footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f7ff, transparent);
}

.footer-text {
    color: #a0a0ff;
    font-size: 1rem;
}

/* Cyberpunk decorative elements */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 247, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

.cyber-circle {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(119, 0, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.circle-1 {
    top: -250px;
    right: -250px;
}

.circle-2 {
    bottom: -250px;
    left: -250px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
}

/* Animation */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.glitch-effect {
    animation: glitch 0.5s infinite;
    color: #ff00aa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cyberpunk-nav {
        flex-direction: column;
    }
    
    .cyberpunk-menu {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cyberpunk-menu li {
        margin: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .cyberpunk-features {
        grid-template-columns: 1fr;
    }
}