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

:root {
    --bg: #000;
    --bg2: #1c1917;
    --bg3: #1f1c19;
    --fg: #f5f0e8;
    --fg-muted: #8a8078;
    --fg-dim: #6b6560;
    --primary: #f5a623;
    --primary-dark: #d4900e;
    --border: #2a2520;
    --card: #000;
    --red: #e53e3e;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

main {
    flex: 1 0 auto;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--fg-dim);
    border-radius: 3px
}

.app_logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    object-fit: cover;
    flex-shrink: 0;
}

/* SPINNER LOADER */
.window-loader {
    background-color: rgba(17, 18, 18, 0.85);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    position: fixed;
    inset: 0;
}

.window-loader div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--fg);
}

.window-loader i {
    font-size: 4rem;
    color: var(--primary)
}

.window-loader span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 60px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.2rem
}

.nav-brand i {
    color: var(--primary);
    font-size: 1.4rem
}

.nav-links,
.mobile-nav-links {
    display: flex;
    gap: 24px;
    list-style: none
}

.mobile-nav-links {
    flex-direction: column;
    padding-top: 25px;
    display: none;
}

.nav-links a,
.mobile-nav-links a {
    font-size: .85rem;
    font-weight: 500;
    color: var(--fg-muted);
    transition: color .2s
}

.nav-links a:hover,
.nav-links a.active,
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary)
}

.nav-links a.active,
.mobile-nav-links a.active {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px
}


.nav-right .icon-btn {
    background: none;
    border: none;
    color: var(--fg-muted);
    cursor: pointer;
    font-size: 18px;
    position: relative;
}

.nav-right .icon-btn .badge-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nav-right .login {
    font-size: .85rem;
    color: var(--fg-muted)
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .8rem;
    transition: opacity .2s
}

.btn-primary:hover {
    opacity: .85
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--fg-muted);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 500;
    transition: all .2s
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    cursor: pointer;
}

.btn-cart {
    display: flex;
    gap: 5px;
    align-items: center;
    position: relative;
}

.btn-cart i {
    font-size: 1rem;
}

.cart-badge {
    position: absolute;
    background: red;
    color: white;
    padding: 2px;
    border-radius: 50%;
    font-size: 10px;
    width: 13px;
    height: 15px;
    justify-content: center;
    align-items: center;
    top: 5px;
    right: 10px;
    display: none;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 1.3rem;
    color: var(--fg-muted)
}

.text-primary {
    color: var(--primary) !important;
}

@media(max-width: 600px) {
    .cart-amount {
        display: none;
    }

    .login-label {
        display: none;
    }

    .cart-badge {
        display: flex;
    }

    .nav-brand-name {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.hero.container {
    max-width: 9000px;
}


/* Waveform bars */
.waveform {
    flex: 1;
    height: 30px;
    min-height: 30px;
    display: flex;
    align-items: end;
    gap: 2px;
    overflow: hidden
}

.waveform .bar {
    width: 3px;
    border-radius: 2px;
    background: var(--fg-muted);
    transition: background .3s
}

.waveform.playing .bar {
    background: var(--primary);
    animation: bounce .6s ease-in-out infinite alternate
}

@keyframes bounce {
    0% {
        height: 4px
    }

    100% {
        height: var(--h)
    }
}

.waveform .bar:nth-child(1) {
    --h: 18px;
    animation-delay: 0s
}

.waveform .bar:nth-child(2) {
    --h: 24px;
    animation-delay: .05s
}

.waveform .bar:nth-child(3) {
    --h: 12px;
    animation-delay: .1s
}

.waveform .bar:nth-child(4) {
    --h: 28px;
    animation-delay: .15s
}

.waveform .bar:nth-child(5) {
    --h: 16px;
    animation-delay: .08s
}

.waveform .bar:nth-child(6) {
    --h: 22px;
    animation-delay: .12s
}

.waveform .bar:nth-child(7) {
    --h: 10px;
    animation-delay: .18s
}

.waveform .bar:nth-child(8) {
    --h: 26px;
    animation-delay: .03s
}

.waveform .bar:nth-child(9) {
    --h: 14px;
    animation-delay: .14s
}

.waveform .bar:nth-child(10) {
    --h: 20px;
    animation-delay: .07s
}

.waveform .bar:nth-child(11) {
    --h: 8px;
    animation-delay: .2s
}

.waveform .bar:nth-child(12) {
    --h: 24px;
    animation-delay: .02s
}

.waveform .bar:nth-child(13) {
    --h: 18px;
    animation-delay: .16s
}

.waveform .bar:nth-child(14) {
    --h: 12px;
    animation-delay: .09s
}

.waveform .bar:nth-child(15) {
    --h: 26px;
    animation-delay: .06s
}

.waveform .bar:nth-child(16) {
    --h: 10px;
    animation-delay: .13s
}

.waveform .bar:nth-child(17) {
    --h: 22px;
    animation-delay: .04s
}

.waveform .bar:nth-child(18) {
    --h: 16px;
    animation-delay: .11s
}

.waveform .bar:nth-child(19) {
    --h: 28px;
    animation-delay: .01s
}

.waveform .bar:nth-child(20) {
    --h: 14px;
    animation-delay: .17s
}

.waveform .bar:nth-child(21) {
    --h: 20px;
    animation-delay: .07s
}

.waveform .bar:nth-child(22) {
    --h: 8px;
    animation-delay: .19s
}

.waveform .bar:nth-child(23) {
    --h: 24px;
    animation-delay: .1s
}

.waveform .bar:nth-child(24) {
    --h: 18px;
    animation-delay: .05s
}

.waveform .bar:nth-child(25) {
    --h: 12px;
    animation-delay: .15s
}

.waveform .bar:nth-child(26) {
    --h: 22px;
    animation-delay: .08s
}

.waveform .bar:nth-child(27) {
    --h: 16px;
    animation-delay: .12s
}

.waveform .bar:nth-child(28) {
    --h: 26px;
    animation-delay: .03s
}

.waveform .bar:nth-child(29) {
    --h: 10px;
    animation-delay: .18s
}

.waveform .bar:nth-child(30) {
    --h: 20px;
    animation-delay: .06s
}

.waveform .bar:nth-child(31) {
    --h: 18px;
    animation-delay: 0s
}

.waveform .bar:nth-child(32) {
    --h: 24px;
    animation-delay: .05s
}

.waveform .bar:nth-child(33) {
    --h: 12px;
    animation-delay: .1s
}

.waveform .bar:nth-child(34) {
    --h: 28px;
    animation-delay: .15s
}

.waveform .bar:nth-child(35) {
    --h: 16px;
    animation-delay: .08s
}

.waveform .bar:nth-child(36) {
    --h: 22px;
    animation-delay: .12s
}

.waveform .bar:nth-child(37) {
    --h: 10px;
    animation-delay: .18s
}

.waveform .bar:nth-child(38) {
    --h: 26px;
    animation-delay: .03s
}

.waveform .bar:nth-child(39) {
    --h: 14px;
    animation-delay: .14s
}

.waveform .bar:nth-child(40) {
    --h: 20px;
    animation-delay: .07s
}

.waveform .bar:nth-child(41) {
    --h: 8px;
    animation-delay: .2s
}

.waveform .bar:nth-child(42) {
    --h: 24px;
    animation-delay: .02s
}

.waveform .bar:nth-child(43) {
    --h: 18px;
    animation-delay: .16s
}

.waveform .bar:nth-child(44) {
    --h: 12px;
    animation-delay: .09s
}

.waveform .bar:nth-child(45) {
    --h: 26px;
    animation-delay: .06s
}

.waveform .bar:nth-child(46) {
    --h: 10px;
    animation-delay: .13s
}

.waveform .bar:nth-child(47) {
    --h: 22px;
    animation-delay: .04s
}

.waveform .bar:nth-child(48) {
    --h: 16px;
    animation-delay: .11s
}

.waveform .bar:nth-child(49) {
    --h: 28px;
    animation-delay: .01s
}

.waveform .bar:nth-child(50) {
    --h: 14px;
    animation-delay: .17s
}

.waveform .bar:nth-child(51) {
    --h: 20px;
    animation-delay: .07s
}

.waveform .bar:nth-child(52) {
    --h: 8px;
    animation-delay: .19s
}

.waveform .bar:nth-child(53) {
    --h: 24px;
    animation-delay: .1s
}

.waveform .bar:nth-child(54) {
    --h: 18px;
    animation-delay: .05s
}

.waveform .bar:nth-child(55) {
    --h: 12px;
    animation-delay: .15s
}

.waveform .bar:nth-child(56) {
    --h: 22px;
    animation-delay: .08s
}

.waveform .bar:nth-child(57) {
    --h: 16px;
    animation-delay: .12s
}

.waveform .bar:nth-child(58) {
    --h: 26px;
    animation-delay: .03s
}

.waveform .bar:nth-child(59) {
    --h: 10px;
    animation-delay: .18s
}

.waveform .bar:nth-child(60) {
    --h: 20px;
    animation-delay: .06s
}

.waveform .bar:nth-child(61) {
    --h: 18px;
    animation-delay: 0s
}

.waveform .bar:nth-child(62) {
    --h: 24px;
    animation-delay: .05s
}

.waveform .bar:nth-child(63) {
    --h: 12px;
    animation-delay: .1s
}

.waveform .bar:nth-child(64) {
    --h: 28px;
    animation-delay: .15s
}

.waveform .bar:nth-child(65) {
    --h: 16px;
    animation-delay: .08s
}

.waveform .bar:nth-child(66) {
    --h: 22px;
    animation-delay: .12s
}

.waveform .bar:nth-child(67) {
    --h: 10px;
    animation-delay: .18s
}

.waveform .bar:nth-child(68) {
    --h: 26px;
    animation-delay: .03s
}

.waveform .bar:nth-child(69) {
    --h: 14px;
    animation-delay: .14s
}

.waveform .bar:nth-child(70) {
    --h: 20px;
    animation-delay: .07s
}

.waveform .bar:nth-child(71) {
    --h: 8px;
    animation-delay: .2s
}

.waveform .bar:nth-child(72) {
    --h: 24px;
    animation-delay: .02s
}

.waveform .bar:nth-child(73) {
    --h: 18px;
    animation-delay: .16s
}

.waveform .bar:nth-child(74) {
    --h: 12px;
    animation-delay: .09s
}

.waveform .bar:nth-child(75) {
    --h: 26px;
    animation-delay: .06s
}

.waveform .bar:nth-child(76) {
    --h: 10px;
    animation-delay: .13s
}

.waveform .bar:nth-child(77) {
    --h: 22px;
    animation-delay: .04s
}

.waveform .bar:nth-child(78) {
    --h: 16px;
    animation-delay: .11s
}

.waveform .bar:nth-child(79) {
    --h: 28px;
    animation-delay: .01s
}

.waveform .bar:nth-child(80) {
    --h: 14px;
    animation-delay: .17s
}

.waveform .bar:nth-child(81) {
    --h: 20px;
    animation-delay: .07s
}

.waveform .bar:nth-child(82) {
    --h: 8px;
    animation-delay: .19s
}

.waveform .bar:nth-child(83) {
    --h: 24px;
    animation-delay: .1s
}

.waveform .bar:nth-child(84) {
    --h: 18px;
    animation-delay: .05s
}

.waveform .bar:nth-child(85) {
    --h: 12px;
    animation-delay: .15s
}

.waveform .bar:nth-child(86) {
    --h: 22px;
    animation-delay: .08s
}

.waveform .bar:nth-child(87) {
    --h: 16px;
    animation-delay: .12s
}

.waveform .bar:nth-child(88) {
    --h: 26px;
    animation-delay: .03s
}

.waveform .bar:nth-child(89) {
    --h: 10px;
    animation-delay: .18s
}

.waveform .bar:nth-child(90) {
    --h: 20px;
    animation-delay: .06s
}

.waveform .bar:nth-child(91) {
    --h: 18px;
    animation-delay: 0s
}

.waveform .bar:nth-child(92) {
    --h: 24px;
    animation-delay: .05s
}

.waveform .bar:nth-child(93) {
    --h: 12px;
    animation-delay: .1s
}

.waveform .bar:nth-child(94) {
    --h: 28px;
    animation-delay: .15s
}

.waveform .bar:nth-child(95) {
    --h: 16px;
    animation-delay: .08s
}

.waveform .bar:nth-child(96) {
    --h: 22px;
    animation-delay: .12s
}

.waveform .bar:nth-child(97) {
    --h: 10px;
    animation-delay: .18s
}

.waveform .bar:nth-child(98) {
    --h: 26px;
    animation-delay: .03s
}

.waveform .bar:nth-child(99) {
    --h: 14px;
    animation-delay: .14s
}

.waveform .bar:nth-child(100) {
    --h: 20px;
    animation-delay: .07s
}

.waveform .bar:nth-child(101) {
    --h: 8px;
    animation-delay: .2s
}

.waveform .bar:nth-child(102) {
    --h: 24px;
    animation-delay: .02s
}

.waveform .bar:nth-child(103) {
    --h: 18px;
    animation-delay: .16s
}

.waveform .bar:nth-child(104) {
    --h: 12px;
    animation-delay: .09s
}

.waveform .bar:nth-child(105) {
    --h: 26px;
    animation-delay: .06s
}

.waveform .bar:nth-child(106) {
    --h: 10px;
    animation-delay: .13s
}

.waveform .bar:nth-child(107) {
    --h: 22px;
    animation-delay: .04s
}

.waveform .bar:nth-child(108) {
    --h: 16px;
    animation-delay: .11s
}

.waveform .bar:nth-child(109) {
    --h: 28px;
    animation-delay: .01s
}

.waveform .bar:nth-child(110) {
    --h: 14px;
    animation-delay: .17s
}

.waveform .bar:nth-child(111) {
    --h: 20px;
    animation-delay: .07s
}

.waveform .bar:nth-child(112) {
    --h: 8px;
    animation-delay: .19s
}

.waveform .bar:nth-child(113) {
    --h: 24px;
    animation-delay: .1s
}

.waveform .bar:nth-child(114) {
    --h: 18px;
    animation-delay: .05s
}

.waveform .bar:nth-child(115) {
    --h: 12px;
    animation-delay: .15s
}

.waveform .bar:nth-child(116) {
    --h: 22px;
    animation-delay: .08s
}

.waveform .bar:nth-child(117) {
    --h: 16px;
    animation-delay: .12s
}

.waveform .bar:nth-child(118) {
    --h: 26px;
    animation-delay: .03s
}

.waveform .bar:nth-child(119) {
    --h: 10px;
    animation-delay: .18s
}

.waveform .bar:nth-child(120) {
    --h: 20px;
    animation-delay: .06s
}

/* Static state: random heights */
.waveform:not(.playing) .bar:nth-child(1) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(2) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(3) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(4) {
    height: 22px
}

.waveform:not(.playing) .bar:nth-child(5) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(6) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(7) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(8) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(9) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(10) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(11) {
    height: 5px
}

.waveform:not(.playing) .bar:nth-child(12) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(13) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(14) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(15) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(16) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(17) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(18) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(19) {
    height: 22px
}

.waveform:not(.playing) .bar:nth-child(20) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(21) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(22) {
    height: 5px
}

.waveform:not(.playing) .bar:nth-child(23) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(24) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(25) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(26) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(27) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(28) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(29) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(30) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(31) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(32) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(33) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(34) {
    height: 22px
}

.waveform:not(.playing) .bar:nth-child(35) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(36) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(37) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(38) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(39) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(40) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(41) {
    height: 5px
}

.waveform:not(.playing) .bar:nth-child(42) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(43) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(44) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(45) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(46) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(47) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(48) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(49) {
    height: 22px
}

.waveform:not(.playing) .bar:nth-child(50) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(51) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(52) {
    height: 5px
}

.waveform:not(.playing) .bar:nth-child(53) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(54) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(55) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(56) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(57) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(58) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(59) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(60) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(61) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(62) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(63) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(64) {
    height: 22px
}

.waveform:not(.playing) .bar:nth-child(65) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(66) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(67) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(68) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(69) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(70) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(71) {
    height: 5px
}

.waveform:not(.playing) .bar:nth-child(72) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(73) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(74) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(75) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(76) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(77) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(78) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(79) {
    height: 22px
}

.waveform:not(.playing) .bar:nth-child(80) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(81) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(82) {
    height: 5px
}

.waveform:not(.playing) .bar:nth-child(83) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(84) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(85) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(86) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(87) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(88) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(89) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(90) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(91) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(92) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(93) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(94) {
    height: 22px
}

.waveform:not(.playing) .bar:nth-child(95) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(96) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(97) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(98) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(99) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(100) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(101) {
    height: 5px
}

.waveform:not(.playing) .bar:nth-child(102) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(103) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(104) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(105) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(106) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(107) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(108) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(109) {
    height: 22px
}

.waveform:not(.playing) .bar:nth-child(110) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(111) {
    height: 14px
}

.waveform:not(.playing) .bar:nth-child(112) {
    height: 5px
}

.waveform:not(.playing) .bar:nth-child(113) {
    height: 18px
}

.waveform:not(.playing) .bar:nth-child(114) {
    height: 12px
}

.waveform:not(.playing) .bar:nth-child(115) {
    height: 8px
}

.waveform:not(.playing) .bar:nth-child(116) {
    height: 16px
}

.waveform:not(.playing) .bar:nth-child(117) {
    height: 10px
}

.waveform:not(.playing) .bar:nth-child(118) {
    height: 20px
}

.waveform:not(.playing) .bar:nth-child(119) {
    height: 6px
}

.waveform:not(.playing) .bar:nth-child(120) {
    height: 14px
}

/* Footer */
footer {
    background: var(--bg);
    flex: 1;
    margin-top: auto;
}

@media (min-width: 1160px) {
    footer {
        max-height: 320px;
    }
}

.footer-btn {
    display: flex !important;
    width: 100% !important;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-btn i {
    font-size: 1rem;
    color: white;
}

.footer-top {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;

    &>div {
        width: 100%;
    }
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px auto;
    padding: 10px;
    border-top: .5px var(--fg-muted) solid;
}

.footer-bottom span {
    color: var(--fg-muted);
    font-size: .75rem;
}

.footer-brand {
    font-size: 1.5rem !important;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    color: var(--primary);
    font-size: 1.8rem;
}

.footer-text {
    color: var(--fg-muted);
    font-size: 1rem;
    margin-top: 8px;
}

.footer-nav {
    list-style: none;
    gap: 8px;
}

.footer-title {
    font-size: .9rem;
}

.footer-link {
    color: var(--fg-muted);
    font-size: 0.8rem;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-social a {
    color: var(--primary);
    transition: all .2s ease;
    font-size: 1.5rem;
}

.footer-social a:hover {
    color: var(--primary);
}

/* BOTTOM PLAYER */
.bottom-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--bg);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    display: none
}

.bottom-player.active {
    display: block
}

.player-progress {
    width: 100%;
    height: 4px;
    background: var(--border);
    cursor: pointer
}

.player-progress .fill {
    height: 100%;
    background: var(--primary);
    transition: width .3s
}

.player-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 8px 20px
}

.player-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 50%;
    min-width: 0
}

.player-track img {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover
}

.player-track .track-info {
    min-width: 0
}

.player-track .track-title {
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.player-track .track-artist {
    font-size: .7rem;
    color: var(--fg-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.player-controls,
.player-controls .controls {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    flex: 1
}

.player-controls .waveform {
    justify-content: center;
}

.player-controls button {
    color: var(--fg-muted);
    font-size: 1rem;
    transition: color .2s;
    background: none;
    border: none
}

.player-controls .controls button.disabled {
    color: var(--fg-muted);
    cursor: default;
}

.player-controls .controls button:not(.disabled):hover {
    color: var(--primary);
}

.player-controls .main-play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem
}

.player-controls .main-play:hover {
    opacity: .85;
    color: white !important;
}

.player-right {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 25%;
    justify-content: center
}

.player-right .time {
    font-size: .7rem;
    color: var(--fg-muted)
}

.player-right .close,
.close-mobile {
    display: flex;
    flex: 0.5;
    justify-content: flex-end;
}

.player-right button {
    color: var(--fg-muted);
    font-size: .9rem;
    transition: color .2s;
    background: none;
    border: none
}

.player-right button:hover {
    color: var(--fg)
}

.close-mobile {
    display: none;
}


/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 2.5rem;
}

.page-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.page-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-item.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(245, 166, 35, .1);
}

.page-item.disabled {
    opacity: 0.5;
    cursor: default;
}

.page-item.active {
    cursor: default;
}

.window-notice {
    background: rgba(33, 41, 52, .85);
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    display: none;
    position: fixed;
    z-index: 999;
}

.window-notice.active {
    display: flex;
}

.window-notice .content {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 60%;
    padding: 1rem;
    font-size: 1.3rem;
}

.window-notice .content .search-card {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 350px;
    overflow: hidden;
    border-radius: 17px;
    inset: 0;
}

.window-notice .content .search-card img {
    width: 100%;
    position: absolute;
    object-fit: cover;
    inset: 0;
    z-index: 0;
}

.window-notice .content .search-card .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(17, 18, 18, 0.85);
    position: absolute;
    inset: 0;
    z-index: 0;
}

.window-notice .content .search-card form {
    z-index: 1;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 20px;

    & #search-modal-toggle {
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 10;
        cursor: pointer;

        &:hover {
            color: var(--primary);
        }
    }
}

.window-notice .content .search-card form .search-hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;

    & h1 {
        text-align: center;
    }

    & p {
        color: var(--fg-muted);
    }

    & strong {
        color: var(--primary-dark);
    }

    & ul {
        list-style: none;

        & li {
            color: var(--fg-muted);
        }
    }
}

.window-notice .content .search-card form .input-group {
    display: flex;
    width: 100%;
    gap: 0;
    margin-top: 20px;

    & button {
        border-radius: 0 12px 12px 0;
    }

    & input {
        border-radius: 12px 0 0 12px;
        background-color: transparent;
        border: 1px solid var(--primary);
        padding: 10px;
        color: white;
        width: 100%;
    }
}

.empty {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    & span,
    & h3 {
        width: 100;
    }

    &>span {
        font-size: 4rem;
    }
}

/* GOOGLE TRASLATOR */

body>.skiptranslate>iframe {
    bottom: 0;
    top: auto;
}

#google_translator>div {
    color: transparent !important;
    display: flex;
    font-size: 0;

    &>span {
        display: none !important;
    }

    & select {
        background: var(--bg) !important;
        color: var(--fg-muted) !important;
        border: 1px solid var(--border) !important;
        padding: 5px 10px !important;
        border-radius: 6px !important;
        font-size: 0.9rem !important;
        max-width: 150px;
    }
}

@media (max-width: 350px) {
    .bottom-player .player-controls {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    #google_translator select {
        max-width: 80px !important;
    }
}

@media (max-width: 700px) {
    .close-mobile {
        display: flex;
    }

    .player-right .close {
        display: none;
    }

    .player-inner {
        flex-direction: column;
    }

    .player-track {
        width: 100% !important;

    }

    .player-controls {
        width: 100%;
        justify-content: space-between;
    }

    .window-notice .content {
        width: 90%;

        & .search-card img {
            height: 100%;
        }
    }

    .window-notice .content .search-card form .search-hero {

        & h1 {
            font-size: 1.5rem;
        }

        & h3 {
            font-size: 1.2rem;
        }

        & p {
            font-size: 1rem;
        }

        & ul li {
            font-size: 0.8rem;
        }
    }

    #google_translator select {
        max-width: 100px;
    }

    .hero-btns{
        flex-direction: column;
        display: flex;
        gap: 10px;
    }

    .filter-dropdown{
        width: 100%;
    }
}

@media(max-width:900px) {
    .nav {
        align-items: flex-start;
        padding-top: 10px;
        height: 60px;
        overflow: hidden;
        justify-content: flex-start;
    }

    .mobile-nav-links {
        display: flex;
    }

    .nav.active {
        height: 420px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block !important;
    }

    .nav-right .login {
        display: none
    }

    .hero h1 {
        font-size: 2rem
    }
}