/* Overhaul Theme - Modern Design System */
:root {
    /* Core Colors */
    --primary: #FF69B4;
    --primary-dark: #FF1493;
    --primary-light: #FFB6C1;
    --secondary: #FFFFFF;
    --accent: #FFC0CB;
    
    /* Background Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-light: #000000;
    --bg-lighter: #000000;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    
    /* UI Colors */
    --border-color: rgba(255, 105, 180, 0.3);
    --card-bg: rgba(10, 10, 10, 0.7);
    --hover-bg: rgba(255, 105, 180, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(255, 105, 180, 0.6);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Particle styles */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-100px) translateX(100px);
    }
    50% {
        transform: translateY(-200px) translateX(0);
    }
    75% {
        transform: translateY(-100px) translateX(-100px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Ripple effect */
.ripple {
    position: absolute;
    border: 2px solid var(--primary);
    width: 0;
    height: 0;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
        margin-left: -100px;
        margin-top: -100px;
    }
}

/* Search bar fixes */
.overhaul-theme .search-container {
    display: flex;
    align-items: center;
    background: var(--bg-darker);
    border-radius: 25px;
    padding: 8px 16px;
    margin: 0 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    max-width: 400px;
    width: 100%;
}

.overhaul-theme .search-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.overhaul-theme .search-container i {
    color: var(--text-muted);
    margin-right: 10px;
}

.overhaul-theme #search-input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.overhaul-theme #search-input::placeholder {
    color: var(--text-muted);
}

/* Navigation container fixes */
.overhaul-theme #nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.overhaul-theme #brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.overhaul-theme #brand-highlight {
    color: #FF69B4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8),
                 0 0 20px rgba(255, 105, 180, 0.6),
                 0 0 30px rgba(255, 105, 180, 0.4);
    transition: text-shadow 0.3s ease;
}

.overhaul-theme #brand-highlight:hover {
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.9),
                 0 0 25px rgba(255, 105, 180, 0.7),
                 0 0 35px rgba(255, 105, 180, 0.5);
}

.overhaul-theme #nav-items {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Breathing glow animation */
@keyframes breathing-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 105, 180, 0.2),
                    0 0 10px rgba(255, 105, 180, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 105, 180, 0.3),
                    0 0 15px rgba(255, 105, 180, 0.2);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 105, 180, 0.2),
                    0 0 10px rgba(255, 105, 180, 0.1);
    }
}

/* Card styles with breathing glow */
.overhaul-theme .card {
    animation: breathing-glow 4s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.overhaul-theme .card:hover {
    animation: none;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4),
                0 0 20px rgba(255, 105, 180, 0.2);
}

/* ... existing code ... */