/**
 * Tenebris World - Character Search & Profile Styles
 */

/* Online/Offline Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-left: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
}

.status-badge.online {
    background: linear-gradient(135deg, rgba(46,125,50,0.2) 0%, rgba(46,125,50,0.1) 100%);
    border: 1px solid var(--poison-green);
    color: var(--poison-green);
    animation: pulse-online 2s infinite;
}

.status-badge.offline {
    background: linear-gradient(135deg, rgba(66,66,66,0.2) 0%, rgba(66,66,66,0.1) 100%);
    border: 1px solid var(--iron-gray);
    color: var(--ash-gray);
}

@keyframes pulse-online {
    0% {
        box-shadow: 0 0 0 0 rgba(46,125,50,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46,125,50,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46,125,50,0);
    }
}

/* Search Error Styling */
.search-error {
    text-align: center;
    padding: 40px;
    background: rgba(229,57,53,0.1);
    border: 2px solid rgba(229,57,53,0.3);
    border-radius: 8px;
}

.search-error i {
    font-size: 3rem;
    color: var(--gold-treasure);
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.search-error h3 {
    font-family: var(--font-fantasy);
    color: var(--gold-treasure);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-error p {
    color: var(--ash-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.search-error strong {
    color: var(--gold-shine);
}

.try-again-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--gold-treasure);
    color: var(--gold-treasure);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: var(--font-fantasy);
    font-weight: 600;
    text-transform: uppercase;
}

.try-again-btn:hover {
    background: var(--gold-treasure);
    color: var(--charcoal-void);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}