@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700&display=swap');

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

/* Glass Panel Effect */
.glass-panel {
    background: rgba(5, 5, 10, 0.5);
    border: 1px solid rgba(0, 228, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 228, 255, 0.1), 
                0 0 40px rgba(255, 0, 255, 0.1);
    position: relative;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(0, 228, 255, 0.05) 0%, 
                rgba(255, 0, 255, 0.05) 100%);
    pointer-events: none;
}

/* Game Cards */
.game-card {
    flex: 0 0 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 228, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(2deg);
    position: relative;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 0 15px rgba(0, 228, 255, 0.5);
}

.game-card::before {
    content: 'GAME PREVIEW';
    color: white;
    font-size: 10px;
    opacity: 0.5;
    letter-spacing: 1px;
}

.game-card:nth-child(even) {
    transform: rotate(-2deg);
}

/* Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Neon Text Shadows */
.drop-shadow-neon-blue {
    text-shadow: 0 0 10px rgba(0, 228, 255, 0.7);
}

.drop-shadow-neon-magenta {
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

/* Carousel Navigation */
.carousel-nav {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Facebook Promo */
.facebook-promo {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-10px) translateX(5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Side Accents */
body::before, body::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(0, 228, 255, 0.5) 50%, 
                transparent 100%);
    z-index: 10;
}

body::before {
    left: 20px;
}

body::after {
    right: 20px;
}