/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #e0e0e0;
    --text-secondary: #808080;
    --accent-green: #00ff41;
    --accent-red: #ff0040;
    --accent-yellow: #ffbd2e;
    --border-color: #333;
    --terminal-bg: #0c0c0c;
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

/* Cyberpunk Effects */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-green), transparent);
    animation: scan 8s linear infinite;
    z-index: 100;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 65, 0.03) 2px,
        rgba(0, 255, 65, 0.03) 4px
    );
    pointer-events: none;
    z-index: 99;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 0.7;
}

.step-number {
    font-size: 0.75rem;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.step-label {
    font-size: 0.625rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-step.active .step-label {
    color: var(--accent-green);
    text-shadow: 0 0 10px var(--accent-green);
}

/* Navigation Controls */
.nav-controls {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 1000;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn:hover:not(:disabled) {
    background: var(--accent-green);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--border-color);
    color: var(--text-secondary);
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    pointer-events: none;
    /* Add padding to prevent content overlap */
    padding-top: 80px; /* Space for top progress bar */
    padding-bottom: 100px; /* Space for bottom nav buttons */
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    /* Custom scrollbar for slide content if needed */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) var(--bg-secondary);
}

.slide-content::-webkit-scrollbar {
    width: 8px;
}

.slide-content::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.slide-content::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 4px;
}

/* Slide Typography */
.slide-title {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    letter-spacing: 2px;
}

.slide-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 2rem;
}

.slide-narrative {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slide-narrative.big {
    font-size: 1.5rem;
    color: var(--accent-red);
    font-weight: bold;
}

/* Interactive Terminal */
.interactive-terminal {
    background: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
    margin-bottom: 2rem;
    min-width: 600px;
    max-width: 90vw;
    max-height: 50vh;
    overflow: hidden;
}

.terminal-body {
    padding: 1rem;
    min-height: 200px;
}

.terminal-output {
    margin-bottom: 1rem;
    text-align: left;
    min-height: 100px;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prompt, .redis-prompt {
    color: var(--accent-green);
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    outline: none;
}

.terminal-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.terminal-window {
    background: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
    margin-bottom: 3rem;
    min-width: 600px;
    max-width: 90vw;
}

.terminal-window.compact {
    min-width: auto;
    width: 100%;
}

.terminal-header {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.terminal-controls {
    display: flex;
    gap: 6px;
}

.terminal-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.terminal-controls span:first-child { background: #ff5f56; }
.terminal-controls span:nth-child(2) { background: #ffbd2e; }
.terminal-controls span:last-child { background: #27c93f; }

.terminal-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    min-height: 150px;
}

.prompt {
    color: var(--accent-green);
}

.command {
    color: var(--text-primary);
}

.output {
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}

.typing-text {
    text-align: left;
}

/* Glitch Text Effect */
.glitch-text {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    color: var(--text-primary);
    letter-spacing: 2px;
    animation: glitch 2s infinite;
    margin: 1rem 0;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: var(--accent-green);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent-red);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 5px rgba(0, 255, 65, 0.5); }
    25% { text-shadow: -2px 0 var(--accent-red), 2px 0 var(--accent-green); }
    50% { text-shadow: 2px 0 var(--accent-red), -2px 0 var(--accent-green); }
    75% { text-shadow: 0 0 10px rgba(0, 255, 65, 0.8); }
}

@keyframes glitch-1 {
    0%, 100% { clip: rect(42px, 9999px, 44px, 0); }
    25% { clip: rect(12px, 9999px, 59px, 0); }
    50% { clip: rect(34px, 9999px, 86px, 0); }
    75% { clip: rect(73px, 9999px, 98px, 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(63px, 9999px, 78px, 0); }
    25% { clip: rect(24px, 9999px, 46px, 0); }
    50% { clip: rect(54px, 9999px, 92px, 0); }
    75% { clip: rect(15px, 9999px, 128px, 0); }
}

.intro-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Story Sections */
.story-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.story-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-number {
    position: absolute;
    left: -100px;
    font-size: 8rem;
    color: var(--bg-secondary);
    font-weight: bold;
    opacity: 0.5;
}

.section-content {
    width: 100%;
    padding-left: 80px;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.narrative {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    max-width: 700px;
}

.narrative.big {
    font-size: 1.5rem;
    color: var(--accent-red);
    font-weight: bold;
}

/* Code Blocks */
.code-block {
    background: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    overflow-x: auto;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.code-block pre {
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
}

.comment { color: #666; }
.keyword { color: var(--accent-green); }
.string { color: #ffbd2e; }

/* Exploit Visualization */
.exploit-visualization {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.vuln-card, .impact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1;
}

.vuln-header {
    color: var(--accent-red);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vuln-details p, .impact-card p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.severity {
    color: var(--accent-red) !important;
    font-weight: bold;
}

.arrow {
    font-size: 2rem;
    color: var(--accent-green);
}

/* Network Map */
.network-map {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.node {
    padding: 1rem 1.5rem;
    background: var(--terminal-bg);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    position: relative;
}

.node.compromised {
    border-color: var(--accent-red);
    color: var(--accent-red);
    animation: alert 1s infinite;
}

@keyframes alert {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 64, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 64, 0.8); }
}

.connection {
    width: 50px;
    height: 2px;
    background: var(--accent-red);
    position: relative;
}

.connection::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--accent-red);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* System Status */
.system-status {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.status-item.compromised {
    border-color: var(--accent-red);
    background: rgba(255, 0, 64, 0.1);
}

.status-item .icon {
    font-size: 1.5rem;
    color: var(--accent-red);
}

/* CTA Section */
.cta-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.contact-card {
    background: var(--bg-secondary);
    border: 2px solid var(--accent-green);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.2);
    margin-bottom: 3rem;
}

.contact-header {
    font-size: 1.125rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.btn-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-green);
    z-index: -1;
    transition: left 0.3s ease;
}

.contact-btn:hover .btn-effect {
    left: 0;
}

.footer-info {
    color: var(--text-secondary);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Background Matrix Effect */
.background-matrix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.02;
    pointer-events: none;
}

/* Action Hint */
.action-hint {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 4px;
    color: var(--accent-green);
    animation: pulse 2s infinite;
    font-size: 0.875rem;
}

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

/* Split View for OSINT */
.split-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.code-editor {
    background: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.editor-header {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.code-content {
    padding: 1rem;
    text-align: left;
    color: var(--text-primary);
    min-height: 200px;
}

.results-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scan-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    opacity: 0;
    transform: translateX(20px);
}

.result-item.visible {
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.result-icon {
    font-size: 1.5rem;
}

/* Vulnerability Scanner */
.vuln-scanner {
    margin: 2rem 0;
}

.scan-animation {
    margin-bottom: 2rem;
}

.scan-target {
    display: inline-block;
    position: relative;
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-green);
    border-radius: 4px;
}

.endpoint {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.scan-beam {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-green), transparent);
    animation: beam 2s linear infinite;
}

@keyframes beam {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.vuln-alert {
    background: var(--bg-secondary);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.2);
}

.alert-header {
    font-size: 1.25rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    animation: alert-pulse 1s infinite;
}

@keyframes alert-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.vuln-details {
    margin: 1.5rem 0;
}

.vuln-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.vuln-row .label {
    color: var(--text-secondary);
}

.vuln-row .value {
    color: var(--text-primary);
}

.vuln-row .value.critical {
    color: var(--accent-red);
    font-weight: bold;
}

.exploit-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exploit-btn:hover {
    background: var(--accent-red);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.5);
}

/* Redis Terminal */
.redis-terminal {
    background: var(--terminal-bg);
    border: 1px solid var(--accent-red);
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.1);
}

.redis-output {
    min-height: 150px;
    margin-bottom: 1rem;
    text-align: left;
}

/* Escalation Progress */
.escalation-progress {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.progress-item.active {
    opacity: 1;
    animation: pulse-item 1s infinite;
}

.progress-item.complete {
    opacity: 1;
    color: var(--accent-green);
}

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

.progress-icon {
    font-size: 2rem;
}

/* Network Visualization */
.network-visualization {
    margin: 2rem 0;
}

.network-svg {
    width: 100%;
    max-width: 800px;
    height: 400px;
    max-height: 40vh;
    margin: 0 auto;
    display: block;
}

.network-path {
    stroke: var(--border-color);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5, 5;
}

.network-path.active {
    stroke: var(--accent-red);
    stroke-dasharray: none;
    animation: path-glow 1s ease;
}

@keyframes path-glow {
    0% { stroke-width: 2; }
    50% { stroke-width: 4; }
    100% { stroke-width: 2; }
}

.network-node circle {
    fill: var(--bg-secondary);
    stroke: var(--border-color);
    stroke-width: 2;
}

.network-node.compromised circle {
    fill: rgba(255, 0, 64, 0.2);
    stroke: var(--accent-red);
    animation: node-pulse 1s infinite;
}

@keyframes node-pulse {
    0%, 100% { stroke-width: 2; }
    50% { stroke-width: 4; }
}

.network-node text {
    fill: var(--text-primary);
    font-size: 12px;
    text-anchor: middle;
    dominant-baseline: middle;
}

.infiltration-log {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--terminal-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-height: 100px;
    text-align: left;
}

/* Takeover Dashboard */
.takeover-dashboard {
    margin: 2rem 0;
}

.compromised-assets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.asset-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.asset-card.compromised {
    border-color: var(--accent-red);
    animation: compromise-alert 0.5s ease;
}

@keyframes compromise-alert {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.asset-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.asset-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.asset-status {
    font-size: 0.75rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.progress-bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--accent-red);
    transition: width 3s ease;
}

.progress-bar-fill.active {
    width: 100%;
}

.progress-bar-fill.complete {
    width: 100%;
    background: var(--accent-green);
}

.ransom-note {
    padding: 2rem;
    background: var(--terminal-bg);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
    display: none;
}

.ransom-note.visible {
    display: block;
    animation: ransom-appear 1s ease;
}

@keyframes ransom-appear {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ransom-note pre {
    color: var(--accent-red);
    font-size: 1.25rem;
    text-align: center;
}

/* CTA Slide */
.cta-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.defense-title {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.defense-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 600px;
}

.defense-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--accent-green);
    border-radius: 4px;
}

.defense-icon {
    font-size: 1.5rem;
}

.contact-section {
    margin-top: 3rem;
}

.contact-prompt {
    font-size: 0.875rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.cta-button:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    background: var(--accent-green);
}

.button-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--accent-green), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cta-button:hover .button-glitch {
    transform: translateX(100%);
}

.company-info {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.separator {
    color: var(--border-color);
}

/* Global Operations Link */
.global-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.global-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-green);
    transition: left 0.3s ease;
    z-index: -1;
}

.global-link:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.global-link:hover::before {
    left: 0;
}

/* Keyboard Hint */
.keyboard-hint {
    position: fixed;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.5;
    z-index: 999;
    background: rgba(10, 10, 10, 0.8);
    padding: 0.25rem 1rem;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .progress-bar {
        padding: 0.5rem;
        gap: 0.5rem;
        width: 100%;
        left: 0;
        transform: none;
    }

    .step-label {
        display: none;
    }

    .slide {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .slide-content {
        padding: 1rem;
    }

    .interactive-terminal,
    .redis-terminal {
        min-width: 100%;
        max-height: 40vh;
    }

    .split-view {
        grid-template-columns: 1fr;
    }

    .compromised-assets,
    .defense-grid {
        grid-template-columns: 1fr;
    }

    .glitch-text {
        font-size: 1.5rem;
    }

    .slide-title,
    .defense-title {
        font-size: 1.25rem;
    }

    .nav-controls {
        width: calc(100% - 2rem);
        padding: 0.75rem;
        bottom: 1rem;
        gap: 1rem;
    }

    .nav-btn {
        flex: 1;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .nav-text {
        display: none;
    }

    .network-svg {
        height: 300px;
    }

    .keyboard-hint {
        display: none;
    }
}