:root {
    --background: #09070e;
    --background-2: #0e0a16;
    --card: #120d1b;
    --border: #251936;
    --accent: #a659ff;
    --accent-light: #B575FF;
    --green: #40ff80;
    --text: #ffffff;
    --muted: #968ba3;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    color: inherit;
}

.favorite {
    color: #ffd84d;
    font-size: 13px;
    cursor: pointer;
    margin-left: 3px;
    user-select: none;
}

.intro {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 100px 25px 70px;
    isolation: isolate;
}

.intro::before {
    content: "";
    position: absolute;

    width: 140%;
    height: 420px;

    left: -20%;
    top: -100px;

    z-index: -2;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse 45% 55% at 20% 60%,
            rgba(166, 89, 255, 0.28),
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 45% at 70% 40%,
            rgba(105, 45, 220, 0.22),
            transparent 70%
        ),
        radial-gradient(
            ellipse 35% 60% at 50% 100%,
            rgba(166, 89, 255, 0.16),
            transparent 70%
        );

    filter: blur(35px);

    animation: liquidWave 12s ease-in-out infinite alternate;
}

.intro::after {
    content: "";
    position: absolute;

    width: 160%;
    height: 280px;

    left: -30%;
    bottom: -80px;

    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse 60% 35% at 20% 20%,
            rgba(166, 89, 255, 0.14),
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 30% at 80% 40%,
            rgba(117, 55, 230, 0.12),
            transparent 70%
        );

    filter: blur(20px);

    animation: waterFlow 9s ease-in-out infinite alternate-reverse;
}

@keyframes liquidWave {
    0% {
        transform:
            translate3d(-5%, 8px, 0)
            scale(1);
    }

    25% {
        transform:
            translate3d(3%, -12px, 0)
            scale(1.05);
    }

    50% {
        transform:
            translate3d(8%, 5px, 0)
            scale(1.02);
    }

    75% {
        transform:
            translate3d(-2%, -15px, 0)
            scale(1.07);
    }

    100% {
        transform:
            translate3d(-8%, 4px, 0)
            scale(1);
    }
}

@keyframes waterFlow {
    0% {
        transform:
            translateX(-6%)
            translateY(10px)
            scaleX(1);
    }

    50% {
        transform:
            translateX(5%)
            translateY(-8px)
            scaleX(1.08);
    }

    100% {
        transform:
            translateX(-3%)
            translateY(6px)
            scaleX(1.03);
    }
}

.intro h1 {
    font-size: 70px;
    letter-spacing: -3px;
}

.intro h1 span {
    color: var(--accent);
}

.intro p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 20px;
}

.category {
    max-width: 900px;

    margin: auto;

    padding: 30px 25px;
}

.category h2 {
    margin-bottom: 15px;

    color: white;

    font-weight: 7600;
    font-size: 25px;
}

.product {
    min-height: 70px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 5px;

    margin-bottom: 8px;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: 6px;
}

.product > div {
    flex: 1;
}

.product h3 {
    font-size: 16px;
}

.product p {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;
}

.product strong {
    color: var(--green);

    font-size: 13px;
}

.product a {
    width: 100px;
    padding: 7px 0;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    background: var(--accent);
    border-radius: 3px;

    color: white;
    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
}

.product a:hover {
    background: var(--accent-light);
}

footer {
    display: flex;
    justify-content: space-between;

    padding: 25px 7%;

    border-top: 1px solid var(--border);

    color: var(--muted);

    font-size: 11px;
}

footer > span {
    color: white;
    font-weight: 700;
}

footer > span span {
    color: var(--accent);
}

@media (max-width: 600px) {

    header {
        padding: 0 20px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 10px;
    }

    .intro {
        padding: 70px 20px 40px;
    }

    .intro h1 {
        font-size: 40px;
    }

    .category {
        padding: 25px 20px;
    }

    .product {
        gap: 10px;
    }

    .product strong {
        font-size: 11px;
    }

    .product a {
        padding: 6px 10px;
    }

    footer {
        padding: 20px;
    }
}
