body {
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #a1a1aa; 
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ffffff; 
}

.divider {
    width: 2px;
    height: 30px;
    background-color: #334155;
    margin: 0 10px;
}

.login-button {
    background-color: #1e293b;
    border: 1px solid #334155;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.login-button:hover {
    background-color: #334155;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
}

.hero-text {
    max-width: 50%;
}

.badge {
    background: rgba(147, 51, 234, 0.1);
    color: #c084fc;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.hero-text h1 {
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 25px;
    margin-top: 0;
}

.purple-text {
    background: linear-gradient(to right, #c084fc, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: #a1a1aa;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.6);
}

.hero-image-container {
    width: 40%;
    position: relative;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-mockup {
    background: #18181b;
    border: 1px solid #27272a;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(147, 51, 234, 0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-mockup i { 
    font-size: 60px; 
    color: #c084fc; 
    margin-bottom: 20px; 
}

.floating-mockup h3 { 
    color: #a1a1aa; 
    font-size: 16px; 
    font-weight: 500; 
    margin: 0; 
}

.floating-mockup h2 { 
    font-size: 40px; 
    margin-top: 5px; 
    color: #ffffff;
}

.features-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #18181b;
    border: 1px solid #27272a;
    padding: 40px 30px;
    border-radius: 20px;
    width: 30%;
    transition: all 0.4s ease;
    cursor: default;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #c084fc;
    margin-bottom: 20px;
}

.feature-card h3 { 
    margin-bottom: 10px; 
    font-size: 20px; 
    margin-top: 0; 
}

.feature-card p { 
    color: #a1a1aa; 
    line-height: 1.5; 
    font-size: 15px; 
    margin: 0; 
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #9333ea;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    .nav-right {
        gap: 10px;
    }
    .divider {
        margin: 0 5px;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 50px;
    }
    .hero-text h1 {
        font-size: 45px;
    }
    .hero-buttons {
        display: flex;
        justify-content: center;
    }
    .hero-image-container {
        width: 100%;
    }
    .features-section {
        flex-direction: column;
        padding: 20px;
    }
    .feature-card {
        width: 100%;
    }
}
