@font-face {
    font-family: 'GTA';
    src: url('https://fonts.cdnfonts.com/s/19801/pricedown bl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-gta {
    font-family: 'Pricedown', 'GTA', sans-serif;
}

.hover\:glow:hover {
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.bg-overlay > * {
    position: relative;
    z-index: 1;
}

.text-shadow {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.backdrop-blur {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.logo-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .font-gta {
        font-size: 2rem;
    }
} 