        body {
            font-family: 'Inter', sans-serif;
            background-color: #0d1117; /* Dark background fallback */
            color: #e6edf3; /* Light text */
        }
        .container {
            max-width: 1200px;
        }
        .panel {
            background-color: #161b22; /* Darker panel */
            border: 1px solid #30363d;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .btn {
            background-color: #238636; /* Green button */
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: background-color 0.2s;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #2ea043;
        }
        .btn-secondary {
            background-color: #30363d; /* Gray button */
            color: white; /* Ensure text is visible on gray */
        }
        .btn-secondary:hover {
            background-color: #444c56;
        }
        .btn-danger {
            background-color: #da3633; /* Red button */
            color: white; /* Ensure text is visible on red */
        }
        .btn-danger:hover {
            background-color: #f85149;
        }
        /* New style for disabled buttons */
        .btn:disabled,
        .btn-purchased { /* Apply to all disabled buttons for consistent grey background */
            background-color: #6b7280; /* Grey background for disabled buttons */
            color: #e6edf3; /* Light text for contrast */
            cursor: not-allowed;
            opacity: 0.7;
        }
        .btn:disabled:hover,
        .btn-purchased:hover {
            background-color: #6b7280; /* No hover effect for disabled */
        }
        .input-field {
            background-color: #0d1117;
            border: 1px solid #30363d;
            color: #e6edf3;
            border-radius: 0.25rem;
            padding: 0.5rem 0.75rem;
        }
        .message-log {
            max-height: 200px;
            overflow-y: auto;
            background-color: #0d1117;
            border: 1px solid #30363d;
            border-radius: 0.5rem;
            padding: 1rem;
            font-size: 0.9rem;
        }
        .price-indicator { /* Reusing profit-indicator styles for price comparison */
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            display: inline-block;
            margin-left: 0.5rem;
            vertical-align: middle;
        }
        .price-indicator.green { background-color: #238636; } /* Green for cheaper */
        .price-indicator.red { background-color: #da3633; } /* Red for more expensive */
        .price-indicator.yellow { background-color: #e3b341; } /* Yellow for average/neutral */

        /* Custom Tooltip Styles */
        #genericTooltip { /* Renamed from planetTooltip */
            position: absolute;
            background-color: #1a202c; /* Darker background for tooltip */
            color: #e6edf3;
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
            z-index: 100; /* Ensure it's on top */
            max-width: 300px;
            border: 1px solid #30363d;
            font-size: 0.875rem; /* text-sm */
            line-height: 1.5;
            display: none; /* Hidden by default */
            opacity: 0;
            transition: opacity 0.1s ease-in-out; /* Faster transition for mouse follow */
            pointer-events: none; /* Allows clicks to pass through when hidden */
        }
        #genericTooltip.show {
            display: block;
            opacity: 1;
            pointer-events: auto; /* Re-enable pointer events when shown */
        }
        #genericTooltip p {
            margin-bottom: 0.5rem;
        }
        #genericTooltip p:last-child {
            margin-bottom: 0;
        }
        #genericTooltip strong {
            color: #9fe2bf; /* Lighter green for labels */
        }
        /* Hidden class for police scan image */
        .hidden {
            display: none;
        }

        /* Styles for scrollable mission lists */
        /* #mainActiveMissionsList, #completedMissionsList { */
		#completedMissionsList {
            max-height: 150px; /* Adjust as needed to show one mission plus a hint of the next */
            overflow-y: auto;
            border: 1px solid #30363d; /* Add border for visual separation */
            border-radius: 0.25rem;
            padding: 0.5rem;
        }

        /* Ensure individual mission items have a consistent height */
        .mission-item-panel {
            min-height: 140px; /* Approximate height for one mission item */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        /* Styles for trade market tiles */
        .trade-good-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background-color: #1a202c; /* Darker background for tiles */
            border: 1px solid #30363d;
            border-radius: 0.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .trade-good-tile.contraband {
            background-color: rgba(139, 0, 0, 0.4); /* Dark red with transparency for contraband */
            border-color: #da3633; /* Red border */
        }
        .trade-good-tile .btn {
            width: 100%; /* Make button full width of the tile */
            margin-top: 0.75rem;
        }
        /* Style for good images */
        .trade-good-tile img {
            width: 80%; /* Smaller size for good images */
            height: 80%;
            object-fit: contain; /* Ensure the image fits within dimensions without cropping */
            margin-bottom: 0.5rem; /* Space between image and text */
        }

        /* NEW: Style for the special Xenomorph mission panel */
        .special-xenomorph-mission-panel {
			background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), /* Graue Überlagerung (50% transparent) */
			url('assets/images/missions/sp-mission_xenomorph.jpg'); /* Dein Hintergrundbild */
			background-repeat: no-repeat;
			background-position: center;
			background-size: cover;
			position: relative; /* Wichtig für die Positionierung des Overlays */
            border-color: #8A2BE2; /* Blue-violet border */
        }
		
		/* NEW: Style for eventSection background */
        #eventSection {
            background: linear-gradient(to bottom, rgba(139, 0, 0, 0.7), rgba(102, 0, 153, 0.7)); /* Von Dunkelrot zu Tomatenrot, beide 70% transparent */
        }

        /* Custom Modal Styles */
        #confirmModal {
            background-color: rgba(0, 0, 0, 0.75);
            transition: opacity 0.2s ease-in-out;
        }
        #confirmModal > div {
            transform: translateY(-20px);
            transition: transform 0.2s ease-in-out;
        }
        #confirmModal.hidden > div {
            transform: translateY(0);
        }
		
		/* Hintergrundbilder Top */
		#travelSection {
			background-image: linear-gradient(to bottom, transparent 0%, rgba(22, 27, 34, 1) 25%), url('assets/images/header/hdr_reise.jpg');
			background-repeat: no-repeat;
			background-position: top center;
			background-size: contain; /* Optional: Stellt sicher, dass das Bild den gesamten Bereich abdeckt */
		}
		
		#tradeSection {
			background-image: linear-gradient(to bottom, transparent 0%, rgba(22, 27, 34, 1) 25%), url('assets/images/header/hdr_handel.jpg');
			background-repeat: no-repeat;
			background-position: top center;
			background-size: contain; /* Optional: Stellt sicher, dass das Bild den gesamten Bereich abdeckt */
		}

		#shipyardSection {
			background-image: linear-gradient(to bottom, transparent 0%, rgba(22, 27, 34, 1) 20%), url('assets/images/header/hdr_werft.jpg');
			background-repeat: no-repeat;
			background-position: top center;
			background-size: contain; /* Optional: Stellt sicher, dass das Bild den gesamten Bereich abdeckt */
		}

		#cantinaSection {
			background-image: linear-gradient(to bottom, transparent 0%, rgba(22, 27, 34, 1) 25%), url('assets/images/header/hdr_cantina.jpg');
			background-repeat: no-repeat;
			background-position: top center;
			background-size: contain; /* Optional: Stellt sicher, dass das Bild den gesamten Bereich abdeckt */
		}
		
		#kompendiumSection {
			background-image: linear-gradient(to bottom, transparent 0%, rgba(22, 27, 34, 1) 25%), url('assets/images/header/hdr_kompendium.jpg');
			background-repeat: no-repeat;
			background-position: top center;
			background-size: contain; /* Optional: Stellt sicher, dass das Bild den gesamten Bereich abdeckt */
		}
		
		.container {
			background-image: linear-gradient(to bottom, transparent 0%, rgba(22, 27, 34, 1) 40%), url('assets/images/header/hdr_main.jpg');
			background-repeat: no-repeat;
			background-position: top center;
			background-size: contain; /* Optional: Stellt sicher, dass das Bild den gesamten Bereich abdeckt */
		}
		
		#travelSection h2,
		#shipyardSection h2,
		#cantinaSection h2,
		#kompendiumSection h2 {
			margin-bottom: 2rem;
		}
		/* Splash Screen Styles */
        #splashScreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #0d1117; /* Dark background from body */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999; /* Ensure it's on top of everything */
            transition: opacity 1s ease-out; /* Smooth fade out */
        }
        #splashScreen.hidden {
            opacity: 0;
            pointer-events: none; /* Make it unclickable when hidden */
        }
        #splashScreen img {
            width: 1000px;
            height: 1000px;
            object-fit: contain; /* Ensure the image fits within dimensions without cropping */
        }
		#integratedContrabandInfo {
			border: 1px solid #da3633;
	    }
