* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #0f0f1a;
    color: #e0e0e0;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
}

/* Status Panel */
.status-panel {
    width: 320px;
    background-color: #1a1a2e;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    border-right: 1px solid #2a2a4e;
    position: relative;
}

.status-panel.collapsed {
    width: 50px;
    padding: 20px 10px;
    overflow: hidden;
}

.status-panel.collapsed > *:not(.panel-toggle) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.panel-toggle {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 30px;
    height: 60px;
    background-color: #1a1a2e;
    border: 1px solid #2a2a4e;
    border-left: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c7cff;
    font-size: 16px;
    z-index: 200;
    transition: background-color 0.2s;
}

.panel-toggle:hover {
    background-color: #2a2a4e;
}

.status-panel.collapsed .panel-toggle .toggle-icon {
    transform: rotate(180deg);
}

.status-panel h1 {
    font-size: 1.4rem;
    color: #7c7cff;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a4e;
}

.status-panel h2 {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.status-panel section {
    background-color: #16162a;
    padding: 15px;
    border-radius: 8px;
}

/* Connection Section */
.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #1a1a2e;
    border-radius: 4px;
    margin-bottom: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #666;
}

.connection-status.connected .status-dot {
    background-color: #4caf50;
}

.connection-status.connecting .status-dot {
    background-color: #ff9800;
    animation: pulse 1s infinite;
}

.connection-status.disconnected .status-dot,
.connection-status.error .status-dot {
    background-color: #f44336;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Join Form */
.join-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.join-form input {
    padding: 10px 12px;
    border: 1px solid #2a2a4e;
    border-radius: 4px;
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-size: 14px;
}

.join-form input:focus {
    outline: none;
    border-color: #7c7cff;
}

.join-form input:disabled {
    opacity: 0.5;
}

.joined-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-leave {
    padding: 6px 12px;
    font-size: 12px;
    background-color: transparent;
    border: 1px solid #f44336;
    color: #f44336;
}

.btn-leave:hover {
    background-color: #f44336;
    color: white;
}

button {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-start {
    background-color: #4caf50;
    color: white;
}

.btn-start:hover:not(:disabled) {
    background-color: #45a049;
}

.btn-pause {
    background-color: #ff9800;
    color: white;
}

.btn-pause:hover:not(:disabled) {
    background-color: #f57c00;
}

.btn-resume {
    background-color: #2196f3;
    color: white;
}

.btn-resume:hover:not(:disabled) {
    background-color: #1976d2;
}

.btn-stop {
    background-color: #f44336;
    color: white;
}

.btn-stop:hover:not(:disabled) {
    background-color: #d32f2f;
}

/* Players List */
.players-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.players-list li {
    padding: 8px 12px;
    background-color: #1a1a2e;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.players-list li.current-player {
    border-left: 3px solid #7c7cff;
}

.you-badge {
    font-size: 11px;
    color: #7c7cff;
}

.no-players, .no-events {
    color: #666;
    font-size: 13px;
    text-align: center;
    padding: 10px;
}

/* Events Log */
.events-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.events-log {
    flex: 1;
    overflow-y: auto;
    background-color: #1a1a2e;
    border-radius: 4px;
    padding: 10px;
    max-height: 300px;
}

.event-item {
    font-size: 12px;
    color: #aaa;
    padding: 4px 0;
    border-bottom: 1px solid #2a2a4e;
    font-family: 'Monaco', 'Menlo', monospace;
}

.event-item:last-child {
    border-bottom: none;
}

/* Canvas Area */
.canvas-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
    height: 100%;
    background-color: #1a1a2e;
}

/* Let Fabric.js control canvas dimensions - don't override with CSS */
.canvas-area .canvas-container {
    background-color: #1a1a2e;
}

/* Zoom Controls */
.zoom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 300;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

.zoom-btn:hover {
    background-color: #2a2a4e;
    transform: scale(1.05);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.zoom-reset {
    font-size: 16px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #3a3a5e;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a4a6e;
}

/* Player Stats Section (left panel) */
.player-stats-section {
    background-color: #16162a;
    padding: 15px;
    border-radius: 8px;
}

.level-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.level-control label {
    color: #888;
    font-size: 13px;
}

.level-select {
    padding: 6px 10px;
    border: 1px solid #2a2a4e;
    border-radius: 4px;
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-size: 13px;
    cursor: pointer;
    flex: 1;
}

.level-select:focus {
    outline: none;
    border-color: #7c7cff;
}

.vote-message-area {
    background-color: rgba(124, 124, 255, 0.1);
    border: 1px solid #3a3a5e;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #c0c0ff;
    line-height: 1.4;
}

.vote-placeholder {
    color: #666;
    font-style: italic;
}

.vote-control {
    display: flex;
    gap: 10px;
}

.btn-approve,
.btn-reject {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-approve {
    background-color: #4caf50;
    color: white;
}

.btn-approve:hover:not(:disabled) {
    background-color: #45a049;
}

.btn-reject {
    background-color: #f44336;
    color: white;
}

.btn-reject:hover:not(:disabled) {
    background-color: #d32f2f;
}

.btn-approve:disabled,
.btn-reject:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Turn Indicator */
.turn-indicator {
    background: linear-gradient(135deg, rgba(124, 124, 255, 0.2), rgba(124, 124, 255, 0.1));
    border: 1px solid #3a3a5e;
    border-radius: 6px;
    padding: 10px 12px;
    margin-bottom: 10px;
    text-align: center;
}

.your-turn {
    color: #4caf50;
    font-weight: 600;
    font-size: 14px;
}

.other-turn {
    color: #c0c0ff;
    font-size: 13px;
}

/* Turn arrow in player list */
.turn-arrow {
    color: #4caf50;
    font-weight: bold;
    margin-right: 4px;
}

/* Player level badge */
.player-level {
    font-size: 11px;
    color: #888;
    margin-left: 6px;
    background: rgba(124, 124, 255, 0.15);
    padding: 1px 5px;
    border-radius: 3px;
}

/* Active turn highlight in player list */
.players-list li.active-turn {
    background-color: rgba(76, 175, 80, 0.15);
    border-left: 3px solid #4caf50;
    padding-left: 9px;
}

/* Voting area container */
.voting-area {
    margin-top: 10px;
}

/* End Turn button */
.btn-end-turn {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    background-color: #7c7cff;
    color: white;
    transition: all 0.2s;
}

.btn-end-turn:hover {
    background-color: #6b6bef;
}

/* Already approved indicator */
.already-approved {
    color: #4caf50;
    font-size: 13px;
    font-style: italic;
    padding: 8px 0;
    display: block;
    text-align: center;
}

/* Game Toggle Button (full width - legacy) */
.btn-toggle-game {
    width: 100%;
    padding: 12px 16px;
    margin-top: 10px;
}

.admin-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 8px;
}

/* Compact Game Toggle Row */
.game-toggle-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a4e;
}

.game-label {
    font-size: 14px;
    color: #888;
}

.btn-toggle-game-compact {
    padding: 6px 14px;
    font-size: 13px;
    flex-shrink: 0;
}

.admin-note-inline {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

/* Host Badge */
.host-badge {
    font-size: 10px;
    color: #7c7cff;
    background-color: rgba(124, 124, 255, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 4px;
}

/* Connection Dot (in player list) */
.player-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.connection-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666;
    flex-shrink: 0;
}

.connection-dot.connected {
    background-color: #4caf50;
}

.connection-dot.connecting {
    background-color: #ff9800;
    animation: pulse 1s infinite;
}

.connection-dot.disconnected,
.connection-dot.error {
    background-color: #f44336;
}

/* Card Zoom Modal */
.card-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.card-zoom-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.card-zoom-image {
    width: 240px;
    height: 336px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Nickname Modal Overlay */
.nickname-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.nickname-modal {
    background-color: #1a1a2e;
    border: 1px solid #2a2a4e;
    border-radius: 12px;
    padding: 40px;
    width: 360px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nickname-modal h2 {
    color: #7c7cff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.nickname-modal .session-info {
    color: #666;
    font-size: 12px;
    margin-bottom: 24px;
}

.nickname-modal code {
    background-color: #16162a;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.nickname-modal form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nickname-modal input {
    padding: 14px 16px;
    border: 1px solid #2a2a4e;
    border-radius: 6px;
    background-color: #16162a;
    color: #e0e0e0;
    font-size: 16px;
    text-align: center;
}

.nickname-modal input:focus {
    outline: none;
    border-color: #7c7cff;
}

.nickname-modal input:disabled {
    opacity: 0.5;
}

.nickname-modal button {
    padding: 14px 16px;
    background-color: #7c7cff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.nickname-modal button:hover:not(:disabled) {
    background-color: #6b6bff;
}

.nickname-modal button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nickname-modal .connection-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.nickname-modal .connection-indicator .status-dot {
    width: 8px;
    height: 8px;
}

.nickname-modal .connection-indicator.connected .status-dot {
    background-color: #4caf50;
}

.nickname-modal .connection-indicator.connecting .status-dot {
    background-color: #ff9800;
    animation: pulse 1s infinite;
}

.nickname-modal .connection-indicator.disconnected .status-dot,
.nickname-modal .connection-indicator.error .status-dot {
    background-color: #f44336;
}

/* Player info in connection section */
.player-info {
    padding: 8px 12px;
    background-color: #1a1a2e;
    border-radius: 4px;
    font-size: 14px;
}

.player-info strong {
    color: #7c7cff;
}

/* Confirmation Modal */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.confirm-modal {
    background-color: #1a1a2e;
    border: 1px solid #2a2a4e;
    border-radius: 8px;
    padding: 24px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.confirm-modal h3 {
    color: #e0e0e0;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.confirm-modal p {
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.confirm-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-cancel {
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid #444;
    color: #888;
    font-size: 13px;
}

.btn-cancel:hover {
    background-color: #2a2a4e;
    color: #e0e0e0;
}

.btn-confirm-stop {
    padding: 8px 16px;
    background-color: #f44336;
    color: white;
    font-size: 13px;
}

.btn-confirm-stop:hover {
    background-color: #d32f2f;
}

/* Alpine.js x-cloak to hide until initialized */
[x-cloak] {
    display: none !important;
}

/* Dice Roll Button */
.dice-control {
    margin-top: 12px;
}

.btn-dice {
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    background-color: #2a2a4e;
    color: #e0e0e0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-dice:hover {
    background-color: #3a3a5e;
}

.dice-icon {
    font-size: 18px;
}

/* Dice Roll Overlay */
.dice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.dice-modal {
    background-color: #1a1a2e;
    border: 1px solid #2a2a4e;
    border-radius: 12px;
    padding: 32px 48px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.dice-roller {
    font-size: 16px;
    color: #7c7cff;
    margin-bottom: 16px;
    font-weight: 600;
}

.dice-value {
    font-size: 72px;
    font-weight: bold;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 8px;
}

.dice-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.btn-dice-close {
    padding: 10px 32px;
    background-color: #7c7cff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-dice-close:hover {
    background-color: #6b6bff;
}

/* Context Menu */
.context-menu {
    background: #1a1a2e;
    border: 1px solid #2a2a4e;
    border-radius: 6px;
    padding: 4px 0;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.context-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}

.context-menu-item:hover:not(:disabled) {
    background-color: #2a2a4e;
}

.context-menu-item:disabled {
    color: #666;
    cursor: not-allowed;
}

.context-menu-item .menu-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Approval Modal */
.approval-modal-overlay {
    backdrop-filter: blur(4px);
}

.btn-reject {
    background-color: #d32f2f;
    border: 1px solid #d32f2f;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.btn-reject:hover {
    background-color: #b71c1c;
}

.btn-approve {
    background-color: #4caf50;
    border: 1px solid #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.btn-approve:hover {
    background-color: #388e3c;
}

/* Discard Browse Modal */
.discard-browse-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.discard-browse-modal {
    background-color: #1a1a2e;
    border: 1px solid #2a2a4e;
    border-radius: 12px;
    padding: 24px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.discard-browse-modal h3 {
    color: #7c7cff;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.discard-browse-hint {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
    margin-bottom: 16px;
}

.card-grid-item {
    width: 80px;
    height: 112px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 0.2s, transform 0.2s;
}

.card-grid-item:hover {
    border-color: #7c7cff;
    transform: scale(1.05);
}

.empty-discard {
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
    padding: 20px;
}

/* Player Picker Modal (for saved games) */
.player-picker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.player-picker-modal {
    background-color: #1a1a2e;
    border: 1px solid #2a2a4e;
    border-radius: 12px;
    padding: 40px;
    width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.player-picker-modal h2 {
    color: #7c7cff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.player-picker-modal .session-info {
    color: #666;
    font-size: 12px;
    margin-bottom: 12px;
}

.player-picker-modal .session-info code {
    background-color: #16162a;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.picker-hint {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.player-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.player-option {
    padding: 14px 20px;
    background-color: #16162a;
    border: 1px solid #2a2a4e;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-option:hover:not(:disabled) {
    background-color: #2a2a4e;
    border-color: #7c7cff;
}

.player-option:disabled,
.player-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.player-option .player-name {
    font-weight: 500;
}

.connected-badge {
    font-size: 12px;
    color: #4caf50;
    background-color: rgba(76, 175, 80, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
}

.player-picker-modal .connection-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.player-picker-modal .connection-indicator .status-dot {
    width: 8px;
    height: 8px;
}

.player-picker-modal .connection-indicator.connected .status-dot {
    background-color: #4caf50;
}

.player-picker-modal .connection-indicator.connecting .status-dot {
    background-color: #ff9800;
    animation: pulse 1s infinite;
}

.player-picker-modal .connection-indicator.disconnected .status-dot,
.player-picker-modal .connection-indicator.error .status-dot {
    background-color: #f44336;
}

/* Session Not Found Modal */
.session-not-found-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.session-not-found-modal {
    background-color: #1a1a2e;
    border: 1px solid #2a2a4e;
    border-radius: 12px;
    padding: 40px;
    width: 360px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.session-not-found-modal h2 {
    color: #f44336;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.session-not-found-modal p {
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-new-game {
    padding: 14px 24px;
    background-color: #7c7cff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-new-game:hover {
    background-color: #6b6bff;
}
