body {
    margin: 0;
    overflow: hidden;
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

/* Main HUD Container */
#hud-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: none; /* Hide HUD by default */
}

/* Score Display */
#score-display {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 40, 80, 0.4) 100%);
    padding: 10px 20px;
    border-radius: 5px;
    border-left: 3px solid rgba(0, 150, 255, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0 0 15px rgba(0, 100, 255, 0.3);
    transition: all 0.3s ease;
}

#score-display::before {
    content: "SCORE";
    font-size: 14px;
    margin-right: 10px;
    opacity: 0.7;
    letter-spacing: 1px;
}

#score {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: rgba(0, 200, 255, 1);
}

/* Time Display */
#time-display {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    background: linear-gradient(to bottom, rgba(0, 20, 40, 0.7) 0%, rgba(0, 40, 80, 0.4) 100%);
    padding: 5px 20px;
    border-radius: 30px;
    border-bottom: 2px solid rgba(0, 150, 255, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 100, 255, 0.3);
    letter-spacing: 2px;
    pointer-events: none;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { text-shadow: 0 0 10px rgba(0, 150, 255, 0.7); }
    100% { text-shadow: 0 0 20px rgba(0, 200, 255, 0.9); }
}

/* Crosshair */
#crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.1s ease;
    will-change: transform, opacity;
}

#crosshair-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#crosshair-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 150, 255, 0.7);
    transition: transform 0.1s ease;
    will-change: transform;
}

#crosshair-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 150, 255, 0.9);
    transition: transform 0.1s ease;
    will-change: transform;
}

#crosshair-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.crosshair-line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 5px rgba(0, 150, 255, 0.7);
}

.crosshair-line.horizontal {
    width: 8px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.crosshair-line.vertical {
    width: 2px;
    height: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.crosshair-line.left {
    left: -4px;
}

.crosshair-line.right {
    right: -4px;
}

.crosshair-line.top {
    top: -4px;
}

.crosshair-line.bottom {
    bottom: -4px;
}

/* Health and Stamina Bars */
#vitals-container {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vital-bar-container {
    position: relative;
    width: 100%;
    height: 30px;
    background: linear-gradient(to right, rgba(0, 20, 40, 0.7) 0%, rgba(0, 40, 80, 0.4) 100%);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vital-bar-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    z-index: 2;
    letter-spacing: 1px;
}

.vital-bar-value {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

#health-bar {
    position: relative;
    height: 100%;
    border: none;
    background: none;
}

#health-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 0, 0, 0.7) 0%, rgba(255, 50, 50, 0.9) 100%);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    transform-origin: left center;
    transform: scaleX(1);
    transition: transform 0.3s ease;
    border-radius: 15px;
}

#health-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 15px 15px 0 0;
}

#stamina-bar {
    position: relative;
    height: 100%;
    border: none;
    background: none;
}

#stamina-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 180, 255, 0.7) 0%, rgba(0, 220, 255, 0.9) 100%);
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
    transform-origin: left center;
    transform: scaleX(1);
    transition: transform 0.3s ease;
    border-radius: 15px;
}

#stamina-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 15px 15px 0 0;
}

/* Weapon Info */
#weapon-info {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    text-align: right;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 40, 80, 0.4) 100%);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 3px solid rgba(0, 150, 255, 0.7);
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

#weapon-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: rgba(0, 200, 255, 1);
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    letter-spacing: 1px;
}

#weapon-stats {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

#ammo-display {
    display: flex;
    align-items: center;
    gap: 5px;
}

#ammo-count {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

#ammo-separator {
    opacity: 0.7;
    font-size: 20px;
}

#max-ammo {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    opacity: 0.7;
}

/* Objectives */
#objectives {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 40, 80, 0.4) 100%);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(0, 150, 255, 0.7);
    max-width: 300px;
    transition: all 0.3s ease;
}

#objectives h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: rgba(0, 200, 255, 1);
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    letter-spacing: 1px;
}

#objectives p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.4;
}

#enemy-count {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: rgba(255, 100, 100, 1);
}

/* Control Hints */
#control-hints {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    background: linear-gradient(to bottom, rgba(0, 20, 40, 0.7) 0%, rgba(0, 40, 80, 0.4) 100%);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#control-hints:hover {
    opacity: 1;
}

.key {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 2px 6px;
    margin: 0 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

/* Reload Hint */
#reload-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50px);
    color: white;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    background: rgba(255, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Damage Overlay */
#damage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,0,0,0) 60%, rgba(255,0,0,0.5) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 5;
}

/* Muzzle Flash */
#muzzle-flash {
    position: absolute;
    bottom: 20%;
    left: 60%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,0,0.8) 0%, rgba(255,165,0,0.5) 50%, rgba(255,0,0,0) 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
    z-index: 1;
}

/* Game Over Screen */
#game-over {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 40, 80, 0.8) 100%);
    color: white;
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 150, 255, 0.7);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#game-over h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
    color: rgba(255, 50, 50, 1);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

#game-over p {
    font-size: 20px;
    margin: 10px 0 5px 0;
}

#final-score {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: rgba(0, 200, 255, 1);
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    margin-bottom: 20px;
    display: block;
}

#restart-button {
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(to bottom, rgba(0, 150, 255, 0.8) 0%, rgba(0, 100, 200, 0.8) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    z-index: 101;
    pointer-events: auto;
}

#restart-button:hover {
    background: linear-gradient(to bottom, rgba(0, 180, 255, 0.9) 0%, rgba(0, 120, 220, 0.9) 100%);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.7);
    transform: scale(1.05);
}

/* Notification System */
#notification-container {
    position: absolute;
    bottom: 150px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    pointer-events: none;
}

.notification {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.8) 0%, rgba(0, 40, 80, 0.6) 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-right: 3px solid rgba(0, 150, 255, 0.7);
    font-size: 14px;
    transform: translateX(100%);
    animation: slideIn 0.3s forwards, fadeOut 0.3s 2.7s forwards;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.kill {
    border-right-color: rgba(255, 50, 50, 0.7);
}

.notification.pickup {
    border-right-color: rgba(50, 255, 50, 0.7);
}

.notification-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.notification-text {
    flex: 1;
}

.notification-value {
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

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

/* Compass */
#compass-container {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 20, 40, 0.7) 0%, rgba(0, 40, 80, 0.4) 100%);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#compass-strip {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1200px; /* 4x container width */
    background: linear-gradient(to right, 
        rgba(0,0,0,0) 0%, 
        rgba(0,150,255,0.5) 23%, 
        rgba(0,150,255,0.5) 25%, 
        rgba(0,0,0,0) 27%,
        rgba(0,0,0,0) 48%, 
        rgba(0,150,255,0.5) 49%, 
        rgba(0,150,255,0.5) 51%, 
        rgba(0,0,0,0) 52%,
        rgba(0,0,0,0) 73%, 
        rgba(0,150,255,0.5) 75%, 
        rgba(0,150,255,0.5) 77%, 
        rgba(0,0,0,0) 100%
    );
    transition: transform 0.1s ease;
}

#compass-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 5px rgba(0, 150, 255, 0.7);
    z-index: 2;
}

#compass-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    z-index: 3;
}

/* Minimap */
#minimap-container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 40, 80, 0.4) 100%);
    border-radius: 50%;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    display: none; /* Hidden by default, toggle with M key */
}

#minimap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#minimap-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: rgba(0, 200, 255, 1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    z-index: 2;
}

#minimap-direction {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid rgba(0, 200, 255, 1);
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center bottom;
    z-index: 3;
}

/* Animations */
.shake {
    animation: shake 0.1s linear;
}

.light-shake {
    animation: light-shake 0.1s linear;
}

.weapon-switch {
    animation: weaponSwitch 0.3s ease-out;
}

@keyframes shake {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(5px, 5px) rotate(1deg); }
    50% { transform: translate(0, -5px) rotate(0); }
    75% { transform: translate(-5px, 0) rotate(-1deg); }
    100% { transform: translate(0, 0) rotate(0); }
}

@keyframes light-shake {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(2px, 2px) rotate(0.5deg); }
    50% { transform: translate(0, -2px) rotate(0); }
    75% { transform: translate(-2px, 0) rotate(-0.5deg); }
    100% { transform: translate(0, 0) rotate(0); }
}

@keyframes weaponSwitch {
    0% { transform: translateY(50px) scale(0.8); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* dat.GUI custom styles */
.dg.main {
    font-size: 12px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.dg.main .close-button {
    background-color: rgba(0, 0, 0, 0.5);
}

.dg.main .close-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dg.main .property-name {
    font-weight: bold;
}

.dg.main .c {
    width: 60% !important;
}

.dg.main .cr.number input[type=text] {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dg.main .folder {
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.dg.main .title {
    background: linear-gradient(to right, rgba(0, 40, 80, 0.8) 0%, rgba(0, 20, 40, 0.8) 100%);
}

/* Startup Menu */
#startup-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.85) 0%, rgba(0, 40, 80, 0.75) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(5px);
}

#startup-menu .menu-content {
    width: 80%;
    max-width: 800px;
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.8) 0%, rgba(0, 15, 30, 0.9) 100%);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 100, 255, 0.4);
    animation: pulse 2s infinite alternate;
}

#startup-menu h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 200, 255, 1);
    margin: 0 0 10px 0;
    text-shadow: 0 0 15px rgba(0, 150, 255, 0.8);
    letter-spacing: 4px;
}

#startup-menu h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    letter-spacing: 2px;
}

#startup-menu .menu-description {
    margin-bottom: 40px;
    color: rgba(200, 220, 255, 0.8);
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Rajdhani', sans-serif;
}

#start-button {
    background: linear-gradient(to bottom, rgba(0, 100, 200, 0.8) 0%, rgba(0, 70, 150, 0.9) 100%);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 30px;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.5);
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#start-button:hover {
    background: linear-gradient(to bottom, rgba(0, 120, 220, 0.9) 0%, rgba(0, 90, 170, 1) 100%);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.7);
}

#startup-menu .menu-controls {
    color: rgba(200, 220, 255, 0.7);
    font-size: 12px;
    font-family: 'Rajdhani', sans-serif;
    margin-top: 20px;
}

/* Pause Menu */
#pause-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
    backdrop-filter: blur(5px);
    display: none;
}

#pause-menu .menu-content {
    width: 60%;
    max-width: 500px;
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.8) 0%, rgba(0, 15, 30, 0.9) 100%);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 100, 255, 0.4);
}

#pause-menu h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: rgba(0, 200, 255, 1);
    margin: 0 0 30px 0;
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.7);
    letter-spacing: 2px;
}

#pause-menu button {
    background: linear-gradient(to bottom, rgba(0, 100, 200, 0.8) 0%, rgba(0, 70, 150, 0.9) 100%);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin: 10px 0;
    width: 80%;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 150, 255, 0.4);
    transition: all 0.3s ease;
}

#pause-menu button:hover {
    background: linear-gradient(to bottom, rgba(0, 120, 220, 0.9) 0%, rgba(0, 90, 170, 1) 100%);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
}

#quit-button {
    background: linear-gradient(to bottom, rgba(150, 30, 30, 0.8) 0%, rgba(120, 20, 20, 0.9) 100%) !important;
}

#quit-button:hover {
    background: linear-gradient(to bottom, rgba(180, 40, 40, 0.9) 0%, rgba(150, 30, 30, 1) 100%) !important;
} 