/* SPACE COMMAND - Main Stylesheet */

:root {
    --lcars-orange: #f90;
    --lcars-gold: #fc9;
    --lcars-blue: #99f;
    --lcars-purple: #c9f;
    --lcars-red: #f66;
    --lcars-green: #9f9;
    --lcars-bg: #000;
    --lcars-panel: #1a1a2e;
    
    --primary: var(--lcars-orange);
    --primary-hover: var(--lcars-gold);
    --secondary: var(--lcars-blue);
    --accent: var(--lcars-purple);
    --danger: var(--lcars-red);
    --success: var(--lcars-green);
    
    --star-white: #ffffff;
    --void-black: #000000;
    --panel-dark: var(--lcars-panel);
    --glow-orange: 0 0 20px var(--lcars-orange);
}
/* latin */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/orbitron/v35/yMJRMIlzdpvBhQQL_Qq7dy0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/orbitron/v35/yMJRMIlzdpvBhQQL_Qq7dy0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/orbitron/v35/yMJRMIlzdpvBhQQL_Qq7dy0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/orbitron/v35/yMJRMIlzdpvBhQQL_Qq7dy0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

#trackingShipList {
    max-height: 60vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 10px;
    display: block !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Ensure the scrollbar is visible and styled to match the theme */
#trackingShipList::-webkit-scrollbar {
    width: 8px;
}
#trackingShipList::-webkit-scrollbar-track {
    background: var(--lcars-panel);
    border-radius: 4px;
}
#trackingShipList::-webkit-scrollbar-thumb {
    background: var(--lcars-blue);
    border-radius: 4px;
}
#trackingShipList::-webkit-scrollbar-thumb:hover {
    background: var(--lcars-gold);
}

/* LCARS Styles */
.campaign-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
    align-items: center;
}

.campaign-entry {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 1000px;
}

.admin-panel-container {
    max-width: 1400px;
}

.campaign-card {
    background: var(--lcars-panel);
    border: 2px solid var(--lcars-orange);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: default;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.campaign-card:hover {
}

.campaign-footer {
    background: var(--lcars-panel);
    border: 2px solid var(--lcars-orange);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    gap: 10px;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
}

.campaign-header {
    background: var(--lcars-orange);
    color: #000;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campaign-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 200px;
}

.campaign-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: 1;
}

.campaign-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.campaign-info h3 {
    color: var(--lcars-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #000;
}

.campaign-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 0 0 5px #000;
    max-width: 600px;
}

.campaign-icon {
    width: 300px;
    height: 150px;
    border: 2px solid var(--lcars-orange);
    border-radius: 10px;
    object-fit: cover;
    background: #000;
}

.footer-btns {
    display: flex;
    gap: 10px;
}

.btn-launch, .btn-briefing {
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.2s;
    font-size: 11px;
}

.btn-launch {
    background: var(--lcars-orange);
    color: #000;
}

.btn-launch:hover {
    background: var(--lcars-gold);
    color: #000;
}

.btn-briefing {
    background: var(--lcars-blue);
    color: #000;
}

.btn-briefing:hover {
    background: #aaf;
    color: #000;
}

.req-zeta {
    color: var(--lcars-blue);
    font-weight: 600;
}

.mission-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-back-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--lcars-blue);
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    width: fit-content;
    margin-bottom: 20px;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-card {
    background: var(--lcars-panel);
    border: 2px solid var(--lcars-blue);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
}

.mission-details h4 {
    color: var(--lcars-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.mission-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.mission-stats {
    display: flex;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    margin-top: 8px;
}

.stat-item {
    color: var(--lcars-gold);
}

.mission-launch-btn {
    background: var(--lcars-blue);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s;
}

.mission-launch-btn:hover {
    background: var(--lcars-gold);
    box-shadow: 0 0 15px var(--lcars-gold);
}

.mission-card.locked {
    position: relative;
    filter: grayscale(1);
    opacity: 0.6;
    pointer-events: none;
}

.mission-card.locked .mission-details {
    filter: blur(5px);
    opacity: 0.5;
}

.mission-card.locked::after {
    content: 'CLASSIFIED';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--lcars-red);
    border: 4px solid var(--lcars-red);
    padding: 5px 15px;
    z-index: 10;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.campaign-detail-container {
    background: var(--lcars-panel);
    border: 3px solid var(--lcars-orange);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.2);
    margin: 20px auto;
    max-width: 1000px;
}


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

body {
    font-family: 'Orbitron', 'Courier New', monospace;
    background: var(--void-black);
    color: var(--lcars-gold);
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    min-height: 100vh;
    animation: stars 200s linear infinite;
}

@keyframes stars {
    from { background-position: 0% 0%; }
    to { background-position: 100% 100%; }
}

/* Global Link Styles */
a {
    color: var(--lcars-orange);
    text-decoration: none;
}

a:hover {
    color: var(--lcars-gold);
}

/* Navigation */
nav {
    background: linear-gradient(135deg, var(--lcars-panel) 0%, var(--lcars-bg) 100%);
    border-bottom: 3px solid var(--lcars-orange);
    box-shadow: var(--glow-orange), inset 0 -1px 0 var(--lcars-orange);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--lcars-orange);
    text-shadow: var(--glow-orange);
    letter-spacing: 3px;
    padding: 15px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--lcars-orange);
    text-decoration: none;
    padding: 20px 25px;
    display: block;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--lcars-orange);
    box-shadow: var(--glow-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--star-white);
    text-shadow: var(--glow-orange);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a.active {
    background: rgba(255, 153, 0, 0.1);
    color: var(--star-white);
}

/* User Stats in Nav */
.nav-user-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-badge {
    background: rgba(255, 153, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--lcars-orange);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-badge::before {
    font-size: 16px;
}

.zeta-badge::before {
    content: '⚛';
}

.xp-badge::before {
    content: '✦';
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent 0%, var(--lcars-panel) 100%);
    border-bottom: 2px solid var(--lcars-orange);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--lcars-purple) 0%, transparent 70%);
    opacity: 0.15;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    color: var(--lcars-orange);
    text-shadow: var(--glow-orange), 0 0 40px var(--lcars-purple);
    margin-bottom: 20px;
    letter-spacing: 8px;
    position: relative;
}

.hero .tagline {
    font-size: 24px;
    color: var(--star-white);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero .description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', monospace;
}

.btn-primary {
    background: var(--lcars-orange);
    color: var(--void-black);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--lcars-orange);
    color: var(--void-black);
}

.btn-secondary {
    background: transparent;
    color: var(--lcars-orange);
    border: 2px solid var(--lcars-orange);
}

.btn-secondary:hover {
    background: var(--lcars-orange);
    color: var(--void-black);
    box-shadow: var(--glow-orange);
}

/* Cards */
.card {
    background: linear-gradient(135deg, var(--lcars-panel) 0%, rgba(26, 26, 46, 0.5) 100%);
    border: 2px solid var(--lcars-orange);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--lcars-orange), var(--lcars-purple), var(--lcars-orange));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
}

.card:hover::before {
}

.card h2 {
    color: var(--lcars-orange);
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: var(--glow-orange);
}

.card h3 {
    color: var(--star-white);
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--lcars-orange);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(26, 26, 46, 0.5);
    border: 2px solid var(--lcars-orange);
    border-radius: 5px;
    color: var(--star-white);
    font-size: 16px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    box-shadow: var(--glow-orange);
    background: rgba(26, 26, 46, 0.8);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 4px solid;
    font-weight: 600;
}

.alert-success {
    background: rgba(159, 255, 159, 0.1);
    border-color: var(--lcars-green);
    color: var(--lcars-green);
}

.alert-error {
    background: rgba(255, 102, 102, 0.1);
    border-color: var(--lcars-red);
    color: var(--lcars-red);
}

.alert-info {
    background: rgba(255, 153, 0, 0.1);
    border-color: var(--lcars-orange);
    color: var(--lcars-orange);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--lcars-bg) 0%, var(--lcars-panel) 100%);
    border-top: 3px solid var(--lcars-orange);
    box-shadow: var(--glow-orange);
    padding: 40px 20px;
    margin-top: 80px;
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

footer a {
    color: var(--lcars-orange);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-shadow: var(--glow-orange);
}

/* Grid Layout */
.grid {
    display: grid !important;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 153, 0, 0.2);
    border-top-color: var(--lcars-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
        letter-spacing: 4px;
    }
    
    .hero .tagline {
        font-size: 18px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Game Canvas Container */
.game-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(0, 0, 0, 0.9));
    border: 2px solid var(--lcars-orange);
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255, 153, 0, 0.2), inset 0 0 80px rgba(255, 153, 0, 0.05);
    margin: 20px auto;
    max-width: calc(1200px + 60px);
}

.game-container canvas {
    display: block;
}

/* Game Overlay Screens */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 8, 20, 0.92);
    border-radius: 10px;
    z-index: 30;
    animation: fadeIn 0.3s ease;
}

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

.game-overlay h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--lcars-orange);
}

.game-overlay.victory h2 {
    color: var(--lcars-green);
    text-shadow: 0 0 30px var(--lcars-green);
}

.game-overlay.defeat h2 {
    color: var(--lcars-red);
    text-shadow: 0 0 30px var(--lcars-red);
}

.game-overlay .score-display {
    font-size: 28px;
    color: var(--star-white);
    margin-bottom: 30px;
}

/* Game Menu Buttons */
.game-menu-btn {
    padding: 15px 50px;
    font-size: 18px;
    margin: 10px;
    background: linear-gradient(135deg, var(--lcars-orange), #ffaa33);
    color: var(--void-black);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.4);
}

.game-menu-btn:hover {
}

.game-menu-btn.secondary:hover {
}

.game-menu-btn.secondary {
    background: transparent;
    color: var(--lcars-orange);
    border: 2px solid var(--lcars-orange);
    box-shadow: none;
}

.game-menu-btn.secondary:hover {
    background: rgba(255, 153, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}

/* Tower Info Panel */
.tower-info-panel {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 200px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(0, 0, 0, 0.95));
    border: 2px solid var(--lcars-orange);
    border-radius: 8px;
    padding: 15px;
    color: var(--lcars-orange);
    z-index: 25;
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.2);
}

.tower-info-panel h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--star-white);
    border-bottom: 1px solid var(--lcars-orange);
    padding-bottom: 8px;
}

.tower-info-panel .stat {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    font-size: 12px;
}

.tower-info-panel .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.tower-info-panel .stat-value {
    color: var(--lcars-gold);
    font-weight: 600;
}

/* Wave Info Display */
.wave-info {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(201, 153, 255, 0.3), rgba(201, 153, 255, 0.1));
    border: 2px solid var(--lcars-purple);
    border-radius: 20px;
    padding: 10px 30px;
    color: var(--star-white);
    font-size: 14px;
    z-index: 25;
    box-shadow: 0 0 20px rgba(201, 153, 255, 0.3);
}

.wave-info .wave-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--lcars-purple);
}

/* Resource Display */
.resource-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 25;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid var(--lcars-orange);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

.resource-item.resources {
    color: var(--lcars-gold);
}

.resource-item.lives {
    color: var(--lcars-red);
}

.resource-item.score {
    color: var(--lcars-orange);
}

/* Game Help Tooltip */
.game-help {
    position: absolute;
    bottom: 100px;
    right: 20px;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid var(--lcars-orange);
    border-radius: 8px;
    padding: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 25;
    max-width: 200px;
}

.game-help h4 {
    color: var(--lcars-orange);
    margin-bottom: 10px;
    font-size: 12px;
}

.game-help p {
    margin: 5px 0;
    line-height: 1.4;
}

.game-help kbd {
    background: rgba(255, 153, 0, 0.2);
    border: 1px solid var(--lcars-orange);
    border-radius: 3px;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 10px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: var(--lcars-panel);
    border: 2px solid var(--lcars-orange);
    border-radius: 15px;
    padding: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 15px var(--lcars-orange);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.cookie-banner-content {
    color: var(--star-white);
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: var(--lcars-orange);
    text-decoration: underline;
}

.cookie-banner-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-cookie-accept {
    background: var(--lcars-orange);
    color: var(--void-black);
    padding: 8px 25px;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-cookie-accept:hover {
    background: var(--lcars-gold);
    box-shadow: 0 0 10px var(--lcars-gold);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--lcars-orange);
    padding: 8px 25px;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--lcars-orange);
    transition: all 0.2s;
}

.btn-cookie-decline:hover {
    background: rgba(255, 153, 0, 0.1);
}