/* =========================
   RESET + BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --acid-green: #7cff00;
    --toxic-pink: #ff00ff;
    --neon-cyan: #00e5ff;
    --glitch-yellow: #fff700;
    --dark-bg: #0b0f1a;
    --card-bg: rgba(20, 25, 45, 0.92);
}

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 20%, #7cff00 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, #ff00ff 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, #00e5ff 0%, transparent 50%),
        var(--dark-bg);
    color: #f5f7ff;
}

/* =========================
   MENU
========================= */
.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    background: rgba(15, 20, 40, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    margin: 20px;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--acid-green);
    text-shadow: 0 0 12px rgba(124,255,0,0.7);
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 28px;
}

.menu-list a {
    text-decoration: none;
    color: #f5f7ff;
    font-weight: 600;
    position: relative;
    transition: color .2s ease;
}

.menu-list a:hover {
    color: var(--neon-cyan);
}

.menu-btn {
    padding: 12px 22px;
    background: linear-gradient(45deg, var(--acid-green), var(--neon-cyan));
    color: black;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--acid-green);
}

/* =========================
   PRODUCTS
========================= */
.products {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.card {
    width: 260px;
    background: var(--card-bg);
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 18px 50px rgba(0,0,0,0.7);
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: scale(1.04) rotate(-0.4deg);
    box-shadow:
        0 0 0 1px rgba(124,255,0,0.4),
        0 0 35px rgba(124,255,0,0.5);
}

.card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 14px;
}

.card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.price {
    font-size: 18px;
    font-weight: 800;
    color: var(--glitch-yellow);
    margin-bottom: 14px;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(45deg, var(--toxic-pink), var(--neon-cyan));
    color: black;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 30px var(--toxic-pink);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 14px;
    }

    .menu-list {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 20px;
    }

    .card {
        width: 100%;
        padding: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
