/**
 * CHARACTER HERO STYLES (EMU Japan)
 */

.fs-7 {
    font-size: 0.875rem;
}

.fs-8 {
    font-size: 0.75rem;
}


/* 1. Segmented Control Switcher */

.character-segmented-control .control-item {
    color: #6c757d;
    border: none !important;
    transition: all 0.2s ease-in-out;
}

.character-segmented-control .control-item:hover {
    color: #212529;
}

.character-segmented-control .control-item.active {
    background-color: #dc3545 !important;
    /* EMU Red */
    color: #ffffff !important;
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.25);
}

.character-segmented-control .control-item.active .jp-sub {
    color: rgba(255, 255, 255, 0.85) !important;
}


/* 2. Reset Box Styling */

.btn-reset-box {
    border-color: #dee2e6 !important;
    transition: all 0.2s ease-in-out;
}

.btn-reset-box:hover,
.hover-danger-box:hover {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.04) !important;
    color: #dc3545 !important;
    transform: translateY(-1px);
}

.shadow-2sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}


/* 3. Hero Watermark Background */

.hero-card-watermark {
    position: absolute;
    right: 3%;
    bottom: -15px;
    font-size: 7.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
}


/* Transition Animations */

.transition-all {
    transition: all 0.35s ease-in-out;
}

.tab-animating {
    opacity: 0.3;
    transform: translateY(3px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}