/**
 * SOLO MODE SIMPLIFIED VIEW
 * Clean, focused interface for solo gameplay
 * Reduces cognitive load by showing only essential elements
 */

/* View Toggle Button */
.solo-view-toggle {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid rgba(91, 192, 222, 0.5);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);

.solo-view-toggle:hover {
    background: rgba(10, 14, 39, 1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 192, 222, 0.3);

.solo-view-toggle .toggle-icon {
    font-size: 1.2rem;

/* Simplified View - Hide non-essential sections */
body.solo-simple-view .character-info {
    display: none;

body.solo-simple-view .stat-block {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 600px;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid rgba(91, 192, 222, 0.5);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;

body.solo-simple-view .stat-item {
    padding: 0.75rem;
    min-width: 120px;

body.solo-simple-view .stat-header label {
    font-size: 0.9rem;

body.solo-simple-view .stat-controls {
    flex-direction: column;
    gap: 0.5rem;

body.solo-simple-view .roll-btn {
    width: 100%;
    min-width: auto;
    padding: 0.5rem;
    font-size: 0.8rem;

body.solo-simple-view .crew-btn {
    width: 100%;
    min-width: auto;

/* Hide sections in simple view */
body.solo-simple-view .position-effect-section,
body.solo-simple-view .financial-section,
body.solo-simple-view .crew-section,
body.solo-simple-view .inventory-section,
body.solo-simple-view .ship-info-section,
body.solo-simple-view .ship-maintenance-section,
body.solo-simple-view .ship-upgrades-section,
body.solo-simple-view .cargo-section,
body.solo-simple-view .job-board-section,
body.solo-simple-view .relationships-section,
body.solo-simple-view .downtime-section,
body.solo-simple-view .scars-section,
body.solo-simple-view .investigation-section,
body.solo-simple-view .galaxy-map-section,
body.solo-simple-view .dice-stats-section,
body.solo-simple-view .shared-inventory-section {
    display: none !important;

/* Main chat area - full width in simple view */
body.solo-simple-view .chat-container,
body.solo-simple-view #chat-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem;

body.solo-simple-view .chat-messages {
    max-height: calc(100vh - 300px);
    min-height: 400px;

/* Game log - compact in simple view */
body.solo-simple-view .game-log-section {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 300px;
    max-height: 200px;
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid rgba(91, 192, 222, 0.5);
    border-radius: var(--radius-sm);
    padding: 1rem;
    backdrop-filter: blur(10px);
    z-index: 998;
    display: block !important;

body.solo-simple-view .game-log-section h2 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;

body.solo-simple-view #game-log {
    max-height: 150px;
    font-size: 0.8rem;
    overflow-y: auto;

body.solo-simple-view .log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;

body.solo-simple-view .clear-log-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;

/* Status indicators - compact floating bar */
body.solo-simple-view .status-block {
    position: fixed;
    top: 80px;
    left: 20px;
    display: flex;
    gap: 1rem;
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid rgba(91, 192, 222, 0.5);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
    z-index: 998;

body.solo-simple-view .tracker {
    padding: 0.5rem 0.75rem;
    min-width: auto;

body.solo-simple-view .tracker h2 {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;

/* Quick actions - always visible */
body.solo-simple-view .quick-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;

body.solo-simple-view .quick-action-btn {
    padding: 0.75rem 1rem;
    min-width: 120px;
    font-size: 0.85rem;

/* Collapsible Sidebar */
.solo-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    border-left: 2px solid rgba(91, 192, 222, 0.5);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 1rem;
    backdrop-filter: blur(10px);

.solo-sidebar.open {
    right: 0;

.solo-sidebar-toggle {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: rgba(10, 14, 39, 0.95);
    border: 2px solid rgba(91, 192, 222, 0.5);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);

.solo-sidebar-toggle:hover {
    background: rgba(10, 14, 39, 1);
    border-color: var(--color-primary);
    transform: scale(1.1);

.solo-sidebar-toggle.open {
    right: 420px;

.sidebar-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(91, 192, 222, 0.3);
    border-radius: var(--radius-sm);

.sidebar-section h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

.sidebar-section h3 .toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;

.sidebar-section.collapsed h3 .toggle-icon {
    transform: rotate(-90deg);

.sidebar-section-content {
    max-height: 500px;
    overflow-y: auto;
    transition: max-height 0.3s ease;

.sidebar-section.collapsed .sidebar-section-content {
    max-height: 0;
    overflow: hidden;

/* Mobile optimizations */
@media (max-width: 768px) {
    .solo-view-toggle {
        top: 60px;
        right: 10px;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;

    .solo-sidebar {
        width: 100%;
        right: -100%;

    .solo-sidebar-toggle.open {
        right: 10px;

    body.solo-simple-view .stat-block {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        width: auto;
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0.75rem;

    body.solo-simple-view .stat-item {
        min-width: auto;
        padding: 0.5rem;

    body.solo-simple-view .game-log-section {
        bottom: 200px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: 100%;

    body.solo-simple-view .status-block {
        top: 60px;
        left: 10px;
        right: 10px;
        flex-wrap: wrap;
        padding: 0.5rem;

    body.solo-simple-view .quick-actions {
        bottom: 10px;
        right: 10px;
        left: 10px;
        flex-direction: row;
        flex-wrap: wrap;

    body.solo-simple-view .quick-action-btn {
        flex: 1;
        min-width: 100px;

/* Smooth transitions */
body.solo-simple-view section {
    transition: opacity 0.3s ease, transform 0.3s ease;

/* Focus mode - hide everything except chat and stats */
body.solo-focus-mode .game-log-section,
body.solo-focus-mode .status-block,
body.solo-focus-mode .quick-actions {
    opacity: 0.3;
    pointer-events: none;

body.solo-focus-mode .game-log-section:hover,
body.solo-focus-mode .status-block:hover,
body.solo-focus-mode .quick-actions:hover {
    opacity: 1;
    pointer-events: all;

}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}