:root {
    --primary: #a34cff;
    --bg: #050505;
    --card: rgba(20, 20, 20, 0.8);
}

body {
    margin: 0;
    background-color: var(--bg);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.bg-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #050505 100%);
    z-index: -1;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.top-nav {
    position: absolute;
    top: 20px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
}

.glitch-logo {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 40px;
    position: relative;
}

.glitch-logo span { color: var(--primary); text-shadow: 0 0 20px var(--primary); }

.search-box {
    position: relative;
    width: 600px;
}

#main-search {
    width: 100%;
    padding: 20px 30px;
    background: var(--card);
    border: 1px solid #333;
    border-radius: 100px;
    color: white;
    font-size: 18px;
    outline: none;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

#main-search:focus {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(163, 76, 255, 0.2);
}

.chips {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.chips span {
    padding: 5px 15px;
    border: 1px solid #444;
    border-radius: 20px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
}

.chips span:hover { border-color: var(--primary); color: white; }