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

body {
    background: #0a0a0a;
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    overflow: hidden;
}

/* Cursor Styles */
.cursor {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #0ff;
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease-in-out;
    box-shadow: 0 0 10px #0ff;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
}

/* Navigation Styles */
.nav-container {
    position: fixed;
    left: 5rem;
    top: 50%;
    transform: translateY(-50%);
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-item {
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    transition: all 0.3s ease;
    width: 300px;
}

.nav-number {
    color: #0ff;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.5;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.nav-text {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-hover-effect {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 120%;
    background: rgba(0, 255, 255, 0.05);
    filter: blur(5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-hover-effect {
    opacity: 1;
}

.nav-item:hover .nav-number {
    opacity: 1;
    transform: translateX(10px);
    text-shadow: 0 0 10px #0ff;
}

.nav-item:hover .nav-text {
    color: #0ff;
    transform: translateX(20px);
    text-shadow: 0 0 10px #0ff;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 0;
    background: #0ff;
    transition: height 0.3s ease;
}

.nav-item:hover::before {
    height: 100%;
    box-shadow: 0 0 10px #0ff;
}

/* Background effect */
.background-glow {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(
        circle at var(--x) var(--y),
        rgba(0, 255, 255, 0.15) 0%,
        transparent 30%  /* Changé de 60% à 30% */
    );
    pointer-events: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-container {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    nav ul {
        align-items: center;
    }

    .nav-item {
        width: 250px;
    }

    .nav-text {
        font-size: 1.2rem;
    }
}