
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: radial-gradient(ellipse at center, #0a1a0a 0%, #000000 100%);
            font-family: 'Orbitron', monospace;
            color: #00ff88;
            overflow-x: hidden;
            min-height: 100vh;
        }
        
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 136, 0.03) 2px,
                rgba(0, 255, 136, 0.03) 4px
            );
            pointer-events: none;
            z-index: 1000;
        }
        
        .login-screen {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
            position: relative;
        }
        
        .helix-logo {
            width: 200px;
            height: 200px;
            margin-bottom: 40px;
            position: relative;
        }
        
        .hexagon {
            width: 200px;
            height: 200px;
            position: relative;
            margin: 0 auto;
        }
        
        .hex-layer {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 2px solid #00ff88;
            background: transparent;
        }
        
        .hex-outer {
            width: 180px;
            height: 180px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.5), inset 0 0 20px rgba(0, 255, 136, 0.1);
            animation: pulse 2s infinite;
        }
        
        .hex-inner {
            width: 140px;
            height: 140px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            border: 1px solid #00ff88;
        }
        
        .dna-helix {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            color: #ffffff;
            text-shadow: 0 0 10px #00ff88;
            animation: rotate 4s linear infinite;
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5), inset 0 0 20px rgba(0, 255, 136, 0.1); }
            50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.8), inset 0 0 30px rgba(0, 255, 136, 0.2); }
        }
        
        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .company-name {
            font-size: 3.5rem;
            font-weight: 900;
            letter-spacing: 8px;
            text-shadow: 0 0 20px #00ff88;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #00ff88, #ffffff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .login-form {
            background: rgba(0, 20, 0, 0.8);
            border: 1px solid #00ff88;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
            backdrop-filter: blur(10px);
            max-width: 400px;
            width: 100%;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .form-group input {
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid #00ff88;
            border-radius: 5px;
            color: #00ff88;
            font-family: 'Orbitron', monospace;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus {
            outline: none;
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
            border-color: #ffffff;
        }
        
        .login-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #00ff88, #00cc66);
            border: none;
            border-radius: 5px;
            color: #000000;
            font-family: 'Orbitron', monospace;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .login-btn:hover {
            background: linear-gradient(45deg, #ffffff, #00ff88);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
        }
        
        .dashboard {
            display: none;
            min-height: 100vh;
            padding: 20px;
        }
        
        .dashboard-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            border-bottom: 1px solid #00ff88;
        }
        
        .dashboard-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 0 15px #00ff88;
        }
        
        .user-info {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .tab-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .tab-card {
            background: rgba(0, 20, 0, 0.6);
            border: 1px solid #00ff88;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .tab-card:hover {
            background: rgba(0, 40, 0, 0.8);
            box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
            transform: translateY(-5px);
        }
        
        .tab-card.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            border-color: #006644;
        }
        
        .tab-card.disabled:hover {
            transform: none;
            box-shadow: none;
        }
        
        .tab-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .tab-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .tab-description {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        .locations-screen, .character-screen, .missionlog-screen {
            display: none;
            min-height: 100vh;
            padding: 20px;
        }
        
        .back-btn {
            position: fixed;
            top: 20px;
            left: 20px;
            background: rgba(0, 20, 0, 0.8);
            border: 1px solid #00ff88;
            color: #00ff88;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Orbitron', monospace;
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .back-btn:hover {
            background: rgba(0, 40, 0, 0.9);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
        }
        
        .screen-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-shadow: 0 0 15px #00ff88;
        }
        
        
        
        
      
        
        .character-form {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0, 20, 0, 0.8);
            border: 1px solid #00ff88;
            border-radius: 10px;
            padding: 40px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .form-row.full {
            grid-template-columns: 1fr;
        }
        
        .textarea-field {
            min-height: 120px;
            resize: vertical;
            font-family: 'Orbitron', monospace;
        }
        
        .mission-section {
            background: rgba(0, 20, 0, 0.8);
            border: 1px solid #00ff88;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .mission-section:hover {
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
        }
        
        .mission-section h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-bottom: 1px solid #00ff88;
            padding-bottom: 10px;
        }
        
        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .mission-grid.full {
            grid-template-columns: 1fr;
        }
        
        .entry-item {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid #006644;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 10px;
            position: relative;
        }
        
        .entry-item h4 {
            color: #00ff88;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .entry-item p {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 5px;
        }
        
        .entry-meta {
            font-size: 12px;
            opacity: 0.7;
            border-top: 1px solid #006644;
            padding-top: 8px;
            margin-top: 10px;
        }
        
        .add-entry-btn {
            background: rgba(0, 255, 136, 0.1);
            border: 1px dashed #00ff88;
            border-radius: 5px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }
        
        .add-entry-btn:hover {
            background: rgba(0, 255, 136, 0.2);
            border-style: solid;
        }
        
        .entry-form {
            display: none;
            background: rgba(0, 40, 0, 0.8);
            border: 1px solid #00ff88;
            border-radius: 5px;
            padding: 20px;
            margin-bottom: 15px;
        }
        
        .entry-form input, .entry-form textarea {
            width: 100%;
            padding: 10px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid #00ff88;
            border-radius: 3px;
            color: #00ff88;
            font-family: 'Orbitron', monospace;
            margin-bottom: 10px;
        }
        
        .entry-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        
        .entry-buttons {
            display: flex;
            gap: 10px;
        }
        
        .btn-small {
            padding: 8px 16px;
            border: 1px solid #00ff88;
            border-radius: 3px;
            background: rgba(0, 20, 0, 0.8);
            color: #00ff88;
            cursor: pointer;
            font-family: 'Orbitron', monospace;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .btn-small:hover {
            background: rgba(0, 40, 0, 0.9);
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
        }
        
        .btn-small.primary {
            background: linear-gradient(45deg, #00ff88, #00cc66);
            color: #000000;
            font-weight: bold;
        }
        
        .session-header {
            background: rgba(0, 40, 0, 0.9);
            border: 2px solid #00ff88;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .session-counter {
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 10px;
        }
        
        .delete-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(255, 0, 0, 0.8);
            border: none;
            border-radius: 3px;
            color: white;
            width: 20px;
            height: 20px;
            cursor: pointer;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .entry-item:hover .delete-btn {
            opacity: 1;
        }
            .company-name {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .tab-container {
                grid-template-columns: 1fr;
            }
            
            .locations-grid {
                grid-template-columns: 1fr;
            }
        
        
       .unlock-btn {
  background-color: #ff0033;
  color: #ffffff;
  border: none;
  padding: 0.4rem 0.8rem;
  margin-top: 1rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 4px;
  display: block;
  width: 100%;
  text-align: center;
}

.unlock-btn:hover {
  background-color: #ff3366;
}
    

/* HelixCorp Cyberpunk Locations Styles */

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

body {
  background: radial-gradient(ellipse at center, #0a1a0a 0%, #000000 100%);
  font-family: 'Orbitron', monospace;
  color: #00ff88;
  overflow-x: hidden;
  min-height: 100vh;
  padding: 2rem;
}

.scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 136, 0.03) 2px,
    rgba(0, 255, 136, 0.03) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

.locations-screen {
  max-width: 1200px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

/* Location cards */
.location-card {
  background: rgba(0, 20, 0, 0.8);
  border: 1px solid #00ff88;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.location-card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Priority and Decrypted banners */
.priority-banner {
  background-color: #ff0033;
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  animation: blinkPriority 1.5s infinite alternate;
  margin-bottom: 16px;
  display: inline-block;
  font-family: 'Orbitron', monospace;
}

@keyframes blinkPriority {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.05); }
}

.decrypted-banner {
  background-color: #ffe600;
  color: black;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-family: 'Orbitron', monospace;
}

/* Glitch style */
.redacted {
  background: #111;
  color: #800000;
  border-color: #660000;
}

.glitchy .location-title {
  font-family: monospace;
  animation: glitch 1s infinite alternate;
  color: #ff00cc;
}

@keyframes glitch {
  0% { text-shadow: 2px 2px #ff00ff, -2px -2px #00ffff; }
  100% { text-shadow: -2px -1px #00ffff, 2px 1px #ff00ff; }
}

/* Buttons */
.unlock-btn,
.puzzle-submit-btn,
.submit-btn {
  background-color: #00ff88;
  color: black;
  border: none;
  padding: 12px 20px;
  font-family: 'Orbitron', monospace;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.unlock-btn:hover,
.puzzle-submit-btn:hover,
.submit-btn:hover {
  background: #33ffaa;
}

.unlock-btn.yellow {
  background-color: #ffe600;
  color: #000;
}

.unlock-btn.yellow:hover {
  background-color: #fff58a;
}

.unlock-btn.disabled {
  background-color: #003322;
  color: #666;
  cursor: not-allowed;
}

/* Puzzle grid */
.slide-lock-wrapper {
  text-align: center;
  margin: 20px auto;
}

.slide-lock-container {
  display: grid;
  grid-template-columns: repeat(3, 60px);
  grid-template-rows: repeat(3, 60px);
  gap: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 220px;
  height: 220px;
}

.slide-node {
  width: 60px;
  height: 60px;
  border: 2px solid #ffe600;
  border-radius: 50%;
  background-color: rgba(255, 255, 0, 0.1);
  cursor: pointer;
  position: relative;
  z-index: 2;
  user-select: none;
  transition: box-shadow 0.2s;
}

.slide-node.active {
  background-color: #ffe600;
  box-shadow: 0 0 16px #ffe600;
}

.trail-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

/* Overlay */
.decryption-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: #ffe600;
  font-family: 'Orbitron', monospace;
  flex-direction: column;
}

.overlay-box {
  background: rgba(0, 20, 0, 0.9);
  padding: 30px 40px;
  border: 2px solid #ffe600;
  border-radius: 8px;
  box-shadow: 0 0 20px #ffe600;
  text-align: center;
}

/* Progress bar */
.progress-bar {
  width: 100%;
  height: 15px;
  background: #222;
  border: 1px solid #ffe600;
  margin-top: 10px;
  position: relative;
  border-radius: 8px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #ffe600;
  border-radius: 8px;
  animation: fillBar 3s forwards;
}

@keyframes fillBar {
  0% { width: 0%; }
  100% { width: 100%; }
}
/* Restore tab container and dashboard layout styles */
.tab-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tab-card {
  background: rgba(0, 20, 0, 0.6);
  border: 1px solid #00ff88;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tab-card:hover {
  background: rgba(0, 40, 0, 0.8);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
  transform: translateY(-5px);
}

.tab-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.tab-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00ff88;
}

.tab-description {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
  color: #e0e0e0;
}

/* Fix all link styles */
a {
  color: #00ff88;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #00ff88;
}
.dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  border-bottom: 1px solid #00ff88;
  width: 100%;
  max-width: 1000px;
}

.tab-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1000px;
}
.locations-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
}

.screen-title {
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  max-width: 1000px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  justify-content: center;
}
.location-card.yellow-glow {
  border: 1px solid #ffe066;
  background: rgba(40, 40, 0, 0.7);
  color: #ffe066;
  text-shadow: 0 0 3px #fff08a;
  box-shadow: 0 0 8px rgba(255, 240, 100, 0.3);
}

.location-card.yellow-glow h3 {
  color: #fff8a0;
}
.location-card.uplink-glow {
  background: rgba(0, 40, 40, 0.85);
  border: 1px solid #66ffff;
  color: #ccffff;
  box-shadow: 0 0 12px #66ffff, 0 0 8px #22aaaa inset;
  text-shadow: 0 0 3px #aaffff;
}

.location-card.uplink-glow h3 {
  color: #e0ffff;
  text-shadow: 0 0 6px #ffffff, 0 0 10px #aaffff;
}
.location-card.redacted .location-title {
  color: #ff0033; /* bright red */
}
.location-card.redacted .location-title {
  color: #ff0033;
  animation: glitch 1.2s infinite alternate;
  font-family: monospace;
}
.passphrase-input {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid #ffe600;
  border-radius: 5px;
  color: #ffe600;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.passphrase-input:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 10px #ffe600;
}