:root {
    --accent: #8b5cf6; /* Roxo Galáctico */
    --bg: #000000;
}

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

body {
    background: var(--bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efeito de Grão (Vibe Astroworld/Peep) */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://media.giphy.com/media/oEI9uWUicGuS4/giphy.gif');
    opacity: 0.04;
    pointer-events: none;
    z-index: 999;
}

/* Navegação Estilo Travis Scott */
.cosmic-nav {
    position: fixed;
    top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 100;
}

.nav-item {
    background: none;
    border: none;
    color: #555;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    transition: 0.3s;
}

.nav-item:hover { color: var(--accent); text-shadow: 0 0 10px var(--accent); }

/* Palco Central */
#stage {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    transition: 0.5s ease;
}

/* Buraco Negro Estilizado */
.portal-core {
    width: 280px;
    height: 280px;
    background: #000;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.4);
    position: relative;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Títulos Brutalistas */
.big-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 10vw, 5rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
}

/* Vitrine de Produtos (Grid Potente) */
.drop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 100px 40px;
    max-height: 80vh;
    overflow-y: auto;
}

.item-card {
    border: 1px solid #111;
    padding: 20px;
    background: #050505;
    transition: 0.4s;
}

.item-card:hover { border-color: var(--accent); transform: scale(1.02); }

.item-card img { width: 100%; filter: grayscale(1); transition: 0.4s; }

.item-card:hover img { filter: grayscale(0); }

/* Scrollbar Escondida */
::-webkit-scrollbar { width: 0; }