@font-face {
    font-display: swap;
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/orbitron-v35-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/noto-sans-v42-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../../fonts/noto-sans-v42-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 900;
    src: url('../../fonts/noto-sans-v42-latin-900.woff2') format('woff2');
}

:root {
    --acid-pink: #ff00ff;
    --acid-green: #39ff14;
    --midnight: #0a0a0f;
    --panel-dark: rgba(13, 13, 19, 0.92);
    --panel-light: rgba(255, 255, 255, 0.96);
}

body {
    font-family: 'Noto Sans', sans-serif;
}

.header-font {
    font-family: 'Orbitron', sans-serif;
}

.lang-selector {
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background-color: var(--midnight);
    cursor: pointer;
}

.lang-selector:focus {
    box-shadow: 0 0 0 0.25rem rgba(57, 255, 20, 0.25);
    border-color: var(--acid-green);
}

.nav-brand-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 15px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-brand-link:hover {
    color: var(--acid-green);
}

.ai-icon-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
}

.ai-logo {
    height: 22px;
    width: auto;
    filter: drop-shadow(0 0 2px var(--acid-green)) brightness(1.2);
    transition: transform 0.3s ease, filter 0.3s;
}

.ai-logo:hover {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 0 8px #fff) brightness(1.5);
}

#player-container.is-playing ~ footer .ai-logo {
    animation: iconPulse 2s infinite alternate ease-in-out;
}

@keyframes iconPulse {
    from {
        opacity: 0.6;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px var(--acid-green));
    }
}

.ai-badge {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--acid-green);
    color: var(--acid-green);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    margin-right: 15px;
}

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

.modal-content {
    background-color: var(--midnight);
    color: #fff;
    border: 1px solid var(--acid-green);
}

.modal-header {
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.nav-tabs {
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.nav-tabs .nav-link:hover {
    border-color: rgba(57, 255, 20, 0.5);
    color: #fff;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    color: var(--acid-green);
    border-color: rgba(57, 255, 20, 0.2);
    border-bottom-color: var(--midnight);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--acid-pink);
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

@media (max-width: 575.98px) {
    .nav-brand-link {
        font-size: 0.8rem;
        margin-right: 8px;
    }

    .lang-selector {
        font-size: 0.75rem;
        padding: 0.2rem 1.2rem 0.2rem 0.4rem;
    }
}
