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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0D0D15;
    color: white;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* Overlay - NO BLUR! */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

#overlay.active {
    opacity: 1;
}

/* Tooltip - Arrow Style */
.tooltip {
    position: fixed;
    background: #2D2D3D;
    border: 2px solid #5E60F4;
    border-radius: 10px;
    padding: 0;
    max-width: 300px;
    min-width: 250px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    animation: tooltipSlide 0.3s ease;
}

/* Tooltip Arrow - Always pointing to highlighted element */
.tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    border-color: #2D2D3D transparent transparent transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes tooltipSlide {
    0% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.tooltip.show {
    display: block;
}

.tooltip-header {
    background: rgba(94, 96, 244, 0.2);
    padding: 8px 12px;
    border-bottom: 1px solid rgba(94, 96, 244, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.step-counter {
    font-weight: bold;
    font-size: 12px;
}

.skip-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 11px;
    transition: background 0.2s;
}

.skip-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tooltip-content {
    padding: 12px 15px;
}

.tooltip-content h3 {
    font-size: 14px;
    margin-bottom: 6px;
    color: #FFFFFF;
    font-weight: 600;
}

.tooltip-content p {
    color: #CCC;
    line-height: 1.4;
    font-size: 12px;
}

.tooltip-footer {
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: 0 0 8px 8px;
}

.nav-btn {
    background: #3A3A5A;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-btn:hover:not(:disabled) {
    background: #4A4A6A;
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tooltip-action {
    flex: 1;
    text-align: center;
    color: #FFD700;
    font-weight: bold;
    font-size: 12px;
    animation: pulse 1.5s infinite;
}

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

/* Highlight Effect - Clear and Bright */
.highlight {
    position: relative !important;
    z-index: 1002 !important;
    outline: 3px solid #FFD700 !important;
    outline-offset: 2px;
    box-shadow:
        0 0 0 5px rgba(94, 96, 244, 0.4),
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 50px rgba(94, 96, 244, 0.6) !important;
    animation: highlightPulse 2s infinite;
    pointer-events: auto !important;
    filter: brightness(1.2) contrast(1.15) !important;
    transition: all 0.3s ease;
}

@keyframes highlightPulse {
    0%, 100% {
        outline-color: #FFD700;
        box-shadow:
            0 0 0 5px rgba(94, 96, 244, 0.4),
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 50px rgba(94, 96, 244, 0.6);
    }
    50% {
        outline-color: #FFA500;
        box-shadow:
            0 0 0 5px rgba(157, 78, 221, 0.5),
            0 0 40px rgba(255, 165, 0, 1),
            0 0 70px rgba(157, 78, 221, 0.8);
    }
}

/* Game Simulator */
.game-simulator {
    width: 800px;
    height: 900px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    border: 2px solid #0f3460;
}

.game-screen {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #2a4a3a 0%, #1a2a2a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-hud {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 20px;
    align-items: center;
}

.hud-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #DDD;
}

.hud-icon {
    font-size: 20px;
}

.game-minimap {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    overflow: hidden;
}

.minimap-content {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 10px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 10px);
    position: relative;
}

.player-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FFD700;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #FFD700;
    animation: playerPulse 2s infinite;
}

@keyframes playerPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

.fishing-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2196F3;
    border-radius: 50%;
    box-shadow: 0 0 8px #2196F3;
}

.game-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(94, 96, 244, 0.95);
    padding: 30px 40px;
    border-radius: 15px;
    border: 2px solid #FFD700;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 100;
}

.game-notification.show {
    display: block;
    animation: notificationPop 0.3s ease;
}

@keyframes notificationPop {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.game-notification h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFD700;
}

.game-notification p {
    font-size: 16px;
    color: white;
}

.fishing-animation {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0;
}

.fishing-animation.active {
    animation: fishingBob 2s ease-in-out infinite;
}

@keyframes fishingBob {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) translateY(0); }
    50% { opacity: 1; transform: translate(-50%, -50%) translateY(-10px); }
}

/* App Container */
.app-container {
    width: 600px;
    height: 900px;
    background: #1E1E2E;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1000;
}

/* Title Bar */
.title-bar {
    background: #2D2D30;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-radius: 15px 15px 0 0;
}

.title-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.app-title {
    font-weight: bold;
    font-size: 16px;
}

.title-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.title-right select {
    padding: 6px 10px;
    background: rgba(94, 96, 244, 0.3);
    border: 1px solid #5E60F4;
    border-radius: 6px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
}

.window-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.window-btn:hover {
    background: #3E3E42;
}

.window-btn.close:hover {
    background: #E81123;
}

/* Navigation Menu */
.nav-menu {
    background: #27273A;
    padding: 10px 5px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.nav-item {
    background: transparent;
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

a.nav-item {
    text-decoration: none;
    color: white;
}

.nav-item:hover {
    background: #3F3F5F;
}

.nav-item.active {
    background: linear-gradient(135deg, #5E60F4 0%, #9D4EDD 100%);
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 2px;
}

.nav-label {
    font-size: 10px;
    color: white;
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    background: #1E1E2E;
    padding: 15px;
}

.content-scroll {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.stat-card {
    background: linear-gradient(135deg, #2A2A3A 0%, #252535 100%);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    border: 2px solid transparent;
}

.stat-card.green { border-color: #4CAF50; }
.stat-card.orange { border-color: #FF9800; }
.stat-card.blue { border-color: #2196F3; }
.stat-card.purple { border-color: #9C27B0; }
.stat-card.red { border-color: #F44336; }

.stat-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 9px;
    color: #AAA;
    margin-top: 3px;
}

/* Card */
.card {
    background: linear-gradient(135deg, #2A2A3A 0%, #252535 100%);
    border: 1px solid #3A3A5A;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 14px;
    margin-bottom: 12px;
    color: #DDD;
}

.action-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.action-row:last-child {
    margin-bottom: 0;
}

.route-select {
    flex: 1;
    background: #2D2D3D;
    border: 1px solid #3A3A5A;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
}

.btn-primary {
    flex: 1;
    background: linear-gradient(135deg, #5E60F4 0%, #9D4EDD 100%);
    border: none;
    color: white;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 96, 244, 0.4);
}

.btn-modern {
    flex: 1;
    background: linear-gradient(135deg, #3A3A4A 0%, #2D2D3D 100%);
    border: none;
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #4A4A5A 0%, #3D3D4D 100%);
}

/* Expander */
.expander {
    margin-bottom: 10px;
}

.expander-header {
    background: linear-gradient(90deg, #2A2A3A 0%, #1E1E2E 100%);
    border: 1px solid #3A3A5A;
    border-radius: 10px;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    position: relative;
}

.expander-header:hover {
    background: linear-gradient(90deg, #3A3A4A 0%, #2E2E3E 100%);
}

.expander.expanded .expander-header {
    background: linear-gradient(90deg, #3D3D5D 0%, #2D2D4D 100%);
    border-color: #5E60F4;
}

.expander-accent {
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px 0 0 10px;
}

.expander-accent.purple { background: #9D4EDD; }
.expander-accent.green { background: #4CAF50; }
.expander-accent.orange { background: #FF9800; }
.expander-accent.blue { background: #2196F3; }

.expander-title {
    flex: 1;
    font-size: 13px;
    font-weight: bold;
    margin-left: 8px;
}

.expander-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.expander.expanded .expander-arrow {
    transform: rotate(180deg);
}

.expander-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    background: #1A1A2A;
    border: 1px solid #3A3A5A;
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.expander.expanded .expander-content {
    max-height: 2000px;
    opacity: 1;
    padding: 15px;
    margin-top: -10px;
}

/* Settings */
.settings-section {
    margin-bottom: 15px;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 11px;
    color: #888;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 5px;
    padding-left: 5px;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #5E60F4;
}

.checkbox-text {
    flex: 1;
    font-size: 13px;
    color: #DDD;
}

.checkbox-info {
    font-size: 11px;
    color: #888;
}

.nested-option {
    margin-left: 30px;
    padding: 5px 0;
    border-left: 2px solid #3A3A5A;
    padding-left: 15px;
}

.input-group {
    margin-bottom: 12px;
}

.input-group label {
    display: block;
    font-size: 12px;
    color: #AAA;
    margin-bottom: 5px;
}

.number-input {
    width: 70px;
    background: #2D2D3D;
    border: 1px solid #3A3A5A;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
}

.custom-slider {
    width: 100%;
    height: 6px;
    background: #3A3A5A;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.slider-value {
    color: #5E60F4;
    font-weight: bold;
}

.warning-card {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #FF9800;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.warning-text {
    font-size: 12px;
    color: #FFB74D;
}

/* Log Box */
.log-box {
    background: #0D0D15;
    border: 1px solid #3A3A5A;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Consolas', monospace;
    font-size: 11px;
    max-height: 200px;
    overflow-y: auto;
}

.log-entry {
    color: #4CAF50;
    margin-bottom: 3px;
}

/* Status Panel */
.status-panel {
    background: #27273A;
    transition: all 0.3s;
    overflow: hidden;
    max-height: 400px;
}

.status-panel.collapsed {
    max-height: 50px;
}

.status-panel.collapsed .status-content {
    display: none;
}

.status-header {
    background: #D32F2F;
    color: white;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    user-select: none;
}

.status-header.connected {
    background: #4CAF50;
}

.status-header.disconnected {
    background: #D32F2F;
}

.status-content {
    padding: 15px;
    display: block;
}

.status-section {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.status-section h4 {
    color: #5E60F4;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
}

.status-section p {
    font-size: 11px;
    margin: 4px 0;
    color: #CCC;
}

/* Scrollbar */
.main-content::-webkit-scrollbar {
    width: 8px;
}

.main-content::-webkit-scrollbar-track {
    background: #1E1E2E;
}

.main-content::-webkit-scrollbar-thumb {
    background: #3A3A5A;
    border-radius: 4px;
}

.main-content::-webkit-scrollbar-thumb:hover {
    background: #4A4A6A;
}

/* Gather Bot Specific Styles */
.gather-header {
    text-align: center;
    margin-bottom: 15px;
}

.gather-header h2 {
    font-size: 20px;
    color: #74C71F;
    font-weight: bold;
}

.stats-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.status-text {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #AAA;
}

.status-value {
    color: #74C71F;
    font-weight: bold;
}

.gather-primary {
    background: linear-gradient(135deg, #74C71F 0%, #5AA818 100%) !important;
}

.gather-primary:hover {
    box-shadow: 0 5px 15px rgba(116, 199, 31, 0.4) !important;
}

/* Resource Cards */
.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3A3A5A;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
}

.resource-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.resource-name {
    font-size: 14px;
    font-weight: bold;
    color: #DDD;
}

.tier-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tier-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tier-group label {
    font-size: 11px;
    color: #AAA;
}

.tier-value {
    color: #FF9800;
    font-weight: bold;
}

.tier-slider {
    width: 100%;
    height: 4px;
    background: #3A3A5A;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.tier-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #FF9800;
    border-radius: 50%;
    cursor: pointer;
}

.quick-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-modern.small {
    font-size: 11px;
    padding: 6px 10px;
}

/* Canvas Simulation */
#gameCanvas {
    width: 500px;
    height: 700px;
    background: #000;
    border: 2px solid #333;
    border-radius: 5px;
    display: block;
    cursor: crosshair;
}

/* ===== TUTORIAL SYSTEM STYLES ===== */

/* Tutorial Tooltip */
.tutorial-tooltip {
    position: fixed;
    background: linear-gradient(135deg, #2D2D3D 0%, #1F1F2E 100%);
    border: 2px solid #5E60F4;
    border-radius: 12px;
    padding: 0;
    max-width: 400px;
    min-width: 300px;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(94, 96, 244, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.tutorial-tooltip.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.tooltip-content {
    padding: 0;
}

.tooltip-header {
    background: rgba(94, 96, 244, 0.15);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(94, 96, 244, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

#tooltip-title {
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
}

.tooltip-skip-btn {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #FF6B6B;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.tooltip-skip-btn:hover {
    background: rgba(244, 67, 54, 0.3);
    transform: scale(1.05);
}

#tooltip-text {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #D0D0D0;
}

.tooltip-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(94, 96, 244, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.tooltip-btn-next {
    background: linear-gradient(135deg, #5E60F4 0%, #4B4DD8 100%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(94, 96, 244, 0.3);
}

.tooltip-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(94, 96, 244, 0.4);
}

.tooltip-btn-next:active {
    transform: translateY(0);
}

/* Highlight Effect - NO OVERLAY BLOCKING */
.highlight {
    position: relative;
    z-index: 9999 !important;
    animation: highlightGlow 2s ease-in-out infinite;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4) !important;
    border-radius: 8px;
}

@keyframes highlightGlow {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

/* Status Panel specific highlight */
.status-panel.highlight {
    border: 2px solid #FFD700 !important;
}

/* Make sure highlight doesn't block clicks */
.highlight::before {
    content: none !important;
}

.highlight::after {
    content: none !important;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Tutorial tooltip - prevent overflow */
    .tutorial-info-tooltip {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-width: 90vw !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }

    /* Tutorial box - prevent overflow */
    .tutorial-spotlight {
        max-width: 90vw !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    .tutorial-info-tooltip {
        max-width: 95vw !important;
        padding: 15px 18px !important;
        font-size: 12px !important;
    }

    .tutorial-info-tooltip button {
        font-size: 14px !important;
        padding: 10px 18px !important;
    }
}
