/**
 * Spot Selection Page Styles
 * Styles for spot/ground selection, filters, and GHOST modal
 */

/* ============================================
   Header with Custom Spot Button
   ============================================ */
.spot-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-custom-spot {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(255, 107, 107, 0.15));
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-custom-spot:hover {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.25), rgba(255, 107, 107, 0.25));
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.3);
}

.custom-spot-icon {
    font-size: 1.2rem;
}

/* ============================================
   Filters Section
   ============================================ */
.filters {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 230, 109, 0.1);
}

.filter-group {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
}

.filter-group label {
    color: var(--accent);
    margin-right: var(--spacing-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    min-width: 80px;
}

/* ============================================
   Spots Grid
   ============================================ */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

/* ============================================
   Mode Selection Modal
   ============================================ */
#modeModal.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    /* Override global.css transform that causes off-center positioning */
    transform: none;
}

#modeModal.modal.active {
    display: flex;
    /* Ensure transform stays none when active */
    transform: none;
}

#modeModal .modal-content {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    /* Reset any inherited transforms */
    position: relative;
    transform: none;
    z-index: 1001;
    pointer-events: auto;
}

#modeModal .mode-card,
#modeModal .btn {
    pointer-events: auto;
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
}

.close-modal:hover {
    color: var(--light);
}

/* ============================================
   Mode Cards
   ============================================ */
.mode-grid {
    display: grid;
    gap: var(--spacing-md);
}

.mode-card {
    background: var(--darker);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.3s, border 0.3s;
    border: 2px solid transparent;
}

.mode-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.mode-card.selected {
    border-color: var(--primary);
}

.mode-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   Spot Requirements
   ============================================ */
.spot-requirements {
    background: var(--darker);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.spot-requirements p {
    margin: var(--spacing-xs) 0;
}

.requirement-met {
    color: var(--success);
}

.requirement-unmet {
    color: var(--danger);
}

/* ============================================
   Shop Banner (Raze Punchline)
   ============================================ */
.shop-banner {
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.1), rgba(108, 92, 231, 0.1));
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.shop-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 230, 109, 0.2);
}

.shop-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.shop-info {
    flex: 1;
}

.shop-info h3 {
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--accent);
    font-size: 1.5rem;
}

.shop-info p {
    margin: 0;
    color: var(--gray);
}

/* ============================================
   Battle Mode Banner
   ============================================ */
.battle-mode-banner {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 71, 87, 0.2));
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.battle-mode-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.battle-mode-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.battle-mode-icon {
    font-size: 3rem;
}

.battle-mode-info {
    flex: 1;
}

.battle-mode-info h3 {
    margin: 0 0 var(--spacing-xs);
    color: var(--primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.battle-mode-info h3 .badge {
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.battle-mode-info p {
    margin: 0;
    color: var(--gray);
}

.battle-mode-theme {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.battle-mode-word {
    display: inline-block;
    background: rgba(255, 152, 0, 0.3);
    color: #ffcc80;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-weight: bold;
    margin-top: var(--spacing-xs);
}

.battle-mode-timer {
    text-align: right;
}

.battle-mode-timer .time-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
}

.battle-mode-timer .time-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

.btn-cancel-battle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.85rem;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.btn-cancel-battle:hover {
    background: rgba(255, 100, 100, 0.2);
    color: var(--primary);
}

/* ============================================
   GHOST Appearance Modal
   ============================================ */
.ghost-modal {
    /* Full-screen centered modal - no inheritance from .modal class */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem 1rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show modal when active */
.ghost-modal.active {
    opacity: 1;
    visibility: visible;
}

.ghost-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.98) 100%);
    animation: ghostBackdropIn 1s ease-out;
}

@keyframes ghostBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ghost-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    padding-bottom: 4rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    animation: ghostContentIn 1.5s ease-out 0.5s both;
}

@keyframes ghostContentIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    50% {
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.ghost-avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.ghost-glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg,
        rgba(0, 255, 255, 0.1) 0%,
        rgba(255, 0, 255, 0.1) 50%,
        rgba(0, 255, 255, 0.1) 100%);
    animation: ghostGlitch 3s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes ghostGlitch {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: scale(1.1) rotate(5deg) translateX(5px);
        opacity: 0.8;
    }
    50% {
        transform: scale(0.95) rotate(-3deg) translateX(-5px);
        opacity: 0.3;
    }
    75% {
        transform: scale(1.05) rotate(2deg);
        opacity: 0.7;
    }
}

.ghost-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 255, 0.5);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.3),
        0 0 60px rgba(255, 0, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    animation: ghostAvatarPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes ghostAvatarPulse {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0, 255, 255, 0.3),
            0 0 60px rgba(255, 0, 255, 0.2);
        filter: brightness(1) saturate(1);
    }
    50% {
        box-shadow:
            0 0 50px rgba(0, 255, 255, 0.5),
            0 0 80px rgba(255, 0, 255, 0.3);
        filter: brightness(1.1) saturate(1.2);
    }
}

.ghost-name-tag {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 20px;
    padding: 5px 20px;
    animation: ghostNameReveal 2s ease-out 2s both;
}

@keyframes ghostNameReveal {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        filter: blur(0);
    }
}

.ghost-alias {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    color: #0ff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    letter-spacing: 3px;
    animation: ghostAliasGlitch 5s ease-in-out infinite 3s;
}

@keyframes ghostAliasGlitch {
    0%, 90%, 100% {
        opacity: 1;
        transform: translateX(0);
    }
    92% {
        opacity: 0.5;
        transform: translateX(-2px);
        color: #f0f;
    }
    94% {
        opacity: 0.8;
        transform: translateX(2px);
        color: #0ff;
    }
    96% {
        opacity: 0.3;
        transform: translateX(-1px);
    }
    98% {
        opacity: 1;
        transform: translateX(1px);
    }
}

.ghost-dialogue-container {
    background: linear-gradient(135deg, rgba(10, 20, 30, 0.9), rgba(20, 10, 30, 0.9));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    max-width: 400px;
    position: relative;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 255, 255, 0.05);
}

.ghost-dialogue-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: rgba(0, 255, 255, 0.3);
}

.ghost-dialogue-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    min-height: 80px;
}

.ghost-typing-indicator {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
}

.ghost-typing-indicator span {
    width: 8px;
    height: 8px;
    background: rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    animation: ghostTyping 1.4s ease-in-out infinite;
}

.ghost-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.ghost-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes ghostTyping {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.ghost-typing-indicator.hidden {
    display: none;
}

.ghost-dismiss-btn {
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: rgba(0, 255, 255, 0.7);
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    animation: ghostBtnReveal 1s ease-out 4s both;
}

@keyframes ghostBtnReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ghost-dismiss-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.6);
    color: #0ff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Scanline effect overlay */
.ghost-modal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    from { transform: translateY(0); }
    to { transform: translateY(4px); }
}

/* ============================================
   Locked Spots
   ============================================ */
.spot-card.spot-locked {
    position: relative;
    opacity: 0.7;
}

.spot-card.spot-locked .spot-image {
    position: relative;
}

.spot-card.spot-locked .spot-image picture,
.spot-card.spot-locked .spot-image img {
    filter: blur(3px) grayscale(40%);
    transition: filter 0.3s ease;
}

.spot-card.spot-locked:hover .spot-image picture,
.spot-card.spot-locked:hover .spot-image img {
    filter: blur(2px) grayscale(20%);
}

.spot-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.lock-icon {
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.spot-card.spot-locked .spot-info {
    opacity: 0.8;
}

.spot-card.spot-locked .select-spot-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.spot-card.spot-locked .spot-requirement.requirement-unmet {
    color: var(--danger);
    font-weight: 600;
}

/* ============================================
   Mode Indicator Banner
   ============================================ */
.mode-indicator-banner {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(255, 230, 109, 0.15));
    border: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.mode-indicator-banner.timed-mode {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 152, 0, 0.15));
    border-color: var(--primary);
}

.mode-indicator-banner.training-mode {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(108, 92, 231, 0.15));
    border-color: var(--secondary);
}

.mode-indicator-banner.choose-mode {
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.2), rgba(108, 92, 231, 0.15));
    border-color: var(--accent);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: var(--accent); }
    50% { border-color: var(--secondary); }
}

.choose-mode .mode-indicator-text strong {
    color: var(--accent);
}

.mode-indicator-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.mode-indicator-icon {
    font-size: 1.5rem;
}

.mode-indicator-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mode-indicator-text strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.timed-mode .mode-indicator-text strong {
    color: var(--primary);
}

.training-mode .mode-indicator-text strong {
    color: var(--secondary);
}

.mode-indicator-text span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   User Stats Bar
   ============================================ */
.user-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 230, 109, 0.2);
}

.user-xp-display {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.xp-icon {
    background: linear-gradient(135deg, var(--accent), #ff9500);
    color: var(--dark);
    font-weight: bold;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.xp-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent);
}

.xp-division {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gray);
}

.user-stats-right {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-favorites-filter {
    background: transparent;
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--gray);
    transition: all 0.3s ease;
}

.btn-favorites-filter:hover,
.btn-favorites-filter.active {
    background: rgba(255, 107, 107, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   Sort Select
   ============================================ */
.sort-select {
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    min-width: 180px;
}

.sort-select:hover {
    border-color: var(--accent);
}

.sort-select:focus {
    outline: none;
    border-color: var(--secondary);
}

.sort-select option {
    background: var(--darker);
    color: var(--text-light);
}

/* ============================================
   Favorite Button on Spot Cards
   ============================================ */
.spot-favorite-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: var(--gray);
}

.spot-favorite-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.spot-favorite-btn.favorited {
    color: var(--primary);
}

.spot-favorite-btn.favorited::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: favoritePulse 0.5s ease-out;
}

@keyframes favoritePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   XP Progress on Locked Spots
   ============================================ */
.xp-progress-text {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 4px;
}

.xp-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.xp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ==================== TABLET RESPONSIVE (iPad) ==================== */
/* 768px - 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .spot-selection-page {
        padding: 1.5rem;
        padding-top: 80px;
    }

    .spots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .spot-card {
        border-radius: 12px;
    }

    .spot-image-container {
        height: 160px;
    }

    .spot-info {
        padding: 14px;
    }

    .spot-name {
        font-size: 1.1rem;
    }

    .spot-meta {
        font-size: 0.85rem;
    }

    /* Filters */
    .filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding: 8px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
        min-height: 44px;
        flex-shrink: 0;
    }
}

/* ==================== TABLET LANDSCAPE (iPad Pro) ==================== */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .spots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .spot-image-container {
        height: 180px;
    }
}

/* ============================================
   IPAD/TABLET OVERRIDE - Hide character elements
   iPad Pro 12.9" landscape = 1366px
   ============================================ */
@media (max-width: 1400px) {
    .character-presence,
    .character-toast,
    .mentor-hint,
    .character-presence-bubble {
        display: none !important;
        visibility: hidden !important;
    }
}
