/* Sticky Bottom Bar Styles */
#sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

#sticky-bottom-bar.hidden {
    transform: translateY(100%);
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sticky-bottom-bar .game-title {
    font-family: var(--font-primary-bold);
    font-size: 22px;
    color: #050505;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#sticky-bottom-bar .btn-primary {
    height: 48px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-primary-bold);
    color: rgba(0, 0, 0, 0.95);
    background: #ff7001;
    background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.7), rgba(255,255,255,0) 70%);
    box-shadow: 3.014px 6.027px 18.836px 0px rgba(20, 20, 20, 0.15), 
                inset 1.507px 1.507px 3.014px 0px #fd7f78;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

#sticky-bottom-bar .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 4px 8px 24px 0px rgba(20, 20, 20, 0.2), 
                inset 1.507px 1.507px 3.014px 0px #fd7f78;
}

/* Marketing elements */
.player-count-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
}

.player-count-icon {
    width: 12px;
    height: 12px;
    background-color: #00ff00;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.player-count-text {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    font-family: var(--font-primary-bold);
    letter-spacing: 0.3px;
}

.player-count-number {
    font-weight: 800;
    color: #ff7001;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(255, 112, 1, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sticky-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .player-count-container {
        margin-right: 0;
        order: -1;
    }
    
    #sticky-bottom-bar .game-title {
        font-size: 18px;
    }
}
