/* ========================================
   CHARACTERS OVERVIEW STYLES
   ======================================== */

.characters-main {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.title-icon {
    color: #c41e3a;
    animation: pulse 2s infinite;
}

.page-subtitle {
    color: #808080;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

/* Characters Grid */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.character-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #404040;
    padding: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.character-card:hover {
    transform: translateY(-5px);
    border-color: #c41e3a;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

/* Character Avatar */
.character-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
    border: 2px solid #404040;
    overflow: hidden;
    transition: all 0.3s;
}

.character-card:hover .character-avatar {
    border-color: #c41e3a;
}

.character-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d2d2d;
    font-size: 3rem;
    color: #404040;
}

/* Status Indicator */
.character-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
}

.character-status.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.character-status.offline {
    background: #808080;
}

/* Character Info */
.character-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.character-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.character-role {
    color: #c41e3a;
    font-size: 0.9rem;
}

.character-location {
    color: #606060;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Hover Effect */
.character-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.2), transparent);
    transition: left 0.6s;
}

.character-card:hover .character-hover-effect {
    left: 100%;
}