:root {
    --bg-color: #05010a;
    --text-primary: #ffffff;
    --text-secondary: #a89fbb;
    --neon-purple: #b700ff;
    --neon-purple-light: #df66ff;
    --neon-purple-dark: #6a00a3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Glows */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 50vw;
    height: 50vw;
    min-width: 400px;
    min-height: 400px;
    background: radial-gradient(circle, var(--neon-purple-dark) 0%, rgba(5, 1, 10, 0) 70%);
    top: -20%;
    left: -10%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 12s infinite alternate ease-in-out;
}

.orb-2 {
    top: auto;
    bottom: -20%;
    left: auto;
    right: -10%;
    background: radial-gradient(circle, var(--neon-purple) 0%, rgba(5, 1, 10, 0) 60%);
    animation-delay: -6s;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px var(--neon-purple);
    border: 2px solid var(--neon-purple);
}

.logo span {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--neon-purple-light);
    text-shadow: 0 0 10px var(--neon-purple);
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -5rem;
}

.neon-text {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--neon-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(183, 0, 255, 0.4);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: rgba(183, 0, 255, 0.1);
    color: #fff;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 15px rgba(183, 0, 255, 0.5), inset 0 0 10px rgba(183, 0, 255, 0.3);
}

.btn-primary:hover {
    background: var(--neon-purple);
    box-shadow: 0 0 30px var(--neon-purple), inset 0 0 20px var(--neon-purple-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

footer {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-purple);
}

/* Responsive */
@media (max-width: 768px) {
    .neon-text {
        font-size: 3rem;
    }
    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    header {
        flex-direction: column;
        gap: 1.5rem;
    }
    nav a {
        margin: 0 1rem;
    }
    footer {
        flex-direction: column;
        gap: 1rem;
    }
}
