.pcr-countdown-widget {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
    width: 120px;
}

.widget-inner {
    background: linear-gradient(145deg, #3B1F5D 0%, #502F7B 50%, #6A3780 100%);
    border-radius: 24px;
    padding: 25px 18px;
    box-shadow: 0 25px 50px rgba(59, 31, 93, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    text-align: center;
}

.widget-header h3 {
    color: #FFD35A;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.event-date {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.countdown-display {
    margin-top: 15px;
}

.countdown-item {
    display: block;
    margin-bottom: 5px;
}

#days {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #FFD35A;
    line-height: 1;
    text-shadow: 0 3px 12px rgba(255, 211, 90, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.label {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-top: 3px;
}


/* Inline counter styles */
.info-box .details {
    font-weight: 600;
    color: #FFD35A;
}

#days-inline, #registrations-count {
    font-size: 20px;
    font-weight: 800;
    color: #FFD35A;
    text-shadow: 0 2px 8px rgba(255, 211, 90, 0.3);
}

.days-label, .reg-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

/* Mobile: Slide in on hover */
@media (max-width: 768px) {
    .pcr-countdown-widget {
        right: -140px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .pcr-countdown-widget:hover {
        right: 15px;
    }
    
    #days {
        font-size: 28px;
    }
}
