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

body {
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    background-color: #000;
    color: #00ff00;
    line-height: 1.4;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.terminal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.terminal-window {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.terminal-header {
    background: #2d2d2d;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #333;
}

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

.terminal-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots .dot.red { background: #ff5f56; }
.terminal-dots .dot.yellow { background: #ffbd2e; }
.terminal-dots .dot.green { background: #27ca3f; }

.terminal-title {
    color: #ccc;
    font-size: 0.9rem;
    font-family: 'Monaco', 'Menlo', monospace;
}

.terminal-body {
    background: #000;
    padding: 20px;
    color: #00ff00;
    min-height: 600px;
}

.command-output {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #333;
    background: #111;
    border-radius: 4px;
}

.command-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #333;
    background: #111;
    border-radius: 4px;
}

.command-line {
    color: #00ff00;
    margin-bottom: 10px;
    font-weight: bold;
}

.output-line {
    color: #ccc;
    margin: 5px 0;
    padding-left: 20px;
}

.output-line span {
    color: #00ff00;
    font-weight: bold;
}

.command-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-left: 20px;
}

.control-item {
    color: #ccc;
    font-size: 0.9rem;
}

.terminal-input {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    min-width: 100px;
}

.terminal-btn {
    cursor: pointer;
    padding: 2px 8px;
    border: 1px solid #333;
    background: #222;
    transition: all 0.2s;
}

.terminal-btn:hover {
    background: #333;
    color: #00ff00;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.connected {
    background-color: #28a745;
}

.status-dot.disconnected {
    background-color: #dc3545;
}

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

.clear-btn, .export-btn, .new-session-btn, .home-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.clear-btn:hover, .export-btn:hover, .new-session-btn:hover, .home-btn:hover {
    background: #333;
}

.clear-btn:active, .export-btn:active, .new-session-btn:active, .home-btn:active {
    transform: translateY(1px);
}

.main-content {
    background: #fff;
    border: 2px solid #000;
}

.requests-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 2px solid #000;
    flex-wrap: wrap;
    gap: 15px;
}

.requests-header h2 {
    color: #000;
    font-size: 1.5rem;
}

.controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-input {
    padding: 8px 15px;
    border: 2px solid #000;
    background: #fff;
    font-size: 1rem;
    min-width: 200px;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.log-output {
    height: 500px;
    overflow-y: auto;
    padding: 15px;
    background: #000;
    border: 1px solid #333;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.no-logs {
    color: #666;
    padding: 20px 0;
}

.log-line {
    margin: 5px 0;
    color: #ccc;
}

.webhook-endpoint {
    color: #00ff00;
    font-weight: bold;
}

.cursor-line {
    color: #00ff00;
    animation: blink 1s infinite;
    margin-top: 20px;
}

.request-item {
    margin-bottom: 1px;
    padding: 4px 0;
    background: transparent;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    line-height: 1.3;
    animation: slideIn 0.2s ease-out;
}

.request-item.new {
    animation: slideInAndHighlight 0.3s ease-out;
    background: rgba(0, 255, 0, 0.1);
}

.request-item.expanded {
    background: #0a0a0a;
    border: 1px solid #00ff00;
    padding: 10px;
    margin: 5px 0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInAndHighlight {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        background: #e8f5e8;
    }
    50% {
        background: #e8f5e8;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        background: #f8f9fa;
    }
}

.log-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    white-space: nowrap;
    overflow-x: auto;
}

.log-timestamp {
    color: #666;
    flex-shrink: 0;
}

.log-method {
    padding: 1px 6px;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
    min-width: 45px;
    text-align: center;
}

.log-method.GET { background: #28a745; color: white; }
.log-method.POST { background: #007bff; color: white; }
.log-method.PUT { background: #ffc107; color: black; }
.log-method.DELETE { background: #dc3545; color: white; }
.log-method.PATCH { background: #6f42c1; color: white; }
.log-method.OPTIONS { background: #6c757d; color: white; }

.log-url {
    color: #000;
    flex-shrink: 0;
    margin-right: 10px;
}

.log-headers {
    color: #666;
    flex-shrink: 0;
}

.log-body {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

.log-body.json {
    color: #0066cc;
}

.log-size {
    color: #999;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-left: auto;
}

.expand-icon {
    color: #666;
    font-size: 0.8rem;
    margin-left: 10px;
    transition: transform 0.2s;
    cursor: pointer;
}

.request-item.expanded .expand-icon {
    transform: rotate(180deg);
}

.log-line {
    cursor: pointer;
    transition: background-color 0.2s;
}

.log-line:hover {
    background: rgba(0,0,0,0.05);
}

.request-details {
    display: none;
    padding: 20px;
    border-top: 1px solid #333;
    background: #000;
}

.request-item.expanded .request-details {
    display: block;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h4 {
    color: #00ff00;
    margin-bottom: 10px;
    font-size: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-content {
    background: #1a1a1a;
    padding: 15px;
    border: 1px solid #333;
    border-radius: 4px;
}

.detail-header {
    margin-bottom: 8px;
    line-height: 1.4;
    color: #ccc;
    font-family: 'Monaco', 'Menlo', monospace;
}

.detail-header:last-child {
    margin-bottom: 0;
}

.detail-body {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 4px;
    padding: 15px;
    margin: 0;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 300px;
    overflow-y: auto;
    color: #00ff00;
}

.detail-body.json {
    color: #00ffcc;
    text-shadow: 0 0 2px rgba(0, 255, 204, 0.3);
}

.detail-empty {
    color: #666;
    font-style: italic;
    padding: 10px 0;
}

/* Sudo Command Output Styles */
.sudo-output {
    background: #1a0000;
    border: 2px solid #ff3333;
    border-radius: 6px;
    padding: 15px;
    margin: 10px 0;
    font-family: 'Monaco', 'Menlo', monospace;
    animation: sudoFlash 0.5s ease-out;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.sudo-command {
    color: #ff3333;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
}

.sudo-responses {
    margin-left: 10px;
}

.sudo-line {
    margin: 8px 0;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

@keyframes sudoFlash {
    0% {
        background: #ff3333;
        color: #000;
        transform: scale(1.02);
    }
    10% {
        background: #1a0000;
        color: #ff3333;
        transform: scale(1);
    }
    100% {
        background: #1a0000;
        color: #ccc;
        transform: scale(1);
    }
}

/* Notes Section Styles */
.notes-container {
    border: 1px solid #333;
    border-radius: 6px;
    padding: 15px;
    background: #0f0f0f;
}

.notes-list {
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.note-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
}

.note-item:last-child {
    margin-bottom: 0;
}

.note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.note-author {
    color: #00ff00;
    font-weight: bold;
    font-size: 0.9rem;
}

.note-timestamp {
    color: #666;
    font-size: 0.8rem;
}

.note-text {
    color: #ccc;
    line-height: 1.4;
    word-wrap: break-word;
}

.add-note-section {
    border-top: 1px solid #333;
    padding-top: 15px;
}

.note-input-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.note-author-input {
    padding: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #00ff00;
    border-radius: 4px;
    font-size: 0.9rem;
}

.note-text-input {
    padding: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 50px;
    font-family: inherit;
}

.note-author-input:focus,
.note-text-input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.add-note-btn {
    padding: 8px 15px;
    background: #1a1a1a;
    border: 1px solid #00ff00;
    color: #00ff00;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.add-note-btn:hover {
    background: #00ff00;
    color: #000;
}

.no-notes, .notes-error, .loading-notes {
    text-align: center;
    color: #666;
    padding: 20px;
    font-style: italic;
}

.notes-error {
    color: #ff3333;
}

/* CLI Command Output Styles */
.command-output {
    background: #0a0a0a;
    border: 1px solid #00ff00;
    border-radius: 6px;
    padding: 15px;
    margin: 10px 0;
    font-family: 'Monaco', 'Menlo', monospace;
    animation: cliFlash 0.3s ease-out;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

.command-prompt {
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
}

.command-line {
    margin: 4px 0;
    padding-left: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cli-info { color: #00ffff; }
.cli-error { color: #ff3333; }
.cli-hint { color: #ffff00; }
.cli-tip { color: #00ff00; }
.cli-file { color: #ccc; }
.cli-match { color: #00ff00; font-weight: bold; }
.cli-count { color: #ffff00; font-weight: bold; }
.cli-help { color: #ccc; }
.cli-section { color: #00ffff; font-weight: bold; }
.cli-field { color: #ccc; padding-left: 20px; }
.cli-body { color: #0099ff; padding-left: 20px; white-space: pre-wrap; }
.cli-history { color: #999; }
.cli-default { color: #ccc; }

@keyframes cliFlash {
    0% {
        background: #001100;
        border-color: #ffff00;
        transform: scale(1.01);
    }
    50% {
        background: #0a0a0a;
        border-color: #00ff00;
        transform: scale(1);
    }
    100% {
        background: #0a0a0a;
        border-color: #00ff00;
        transform: scale(1);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .stats-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .requests-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .controls {
        justify-content: center;
    }
    
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .request-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .request-meta {
        flex-wrap: wrap;
    }
}

/* Scrollbar styling */
.requests-container::-webkit-scrollbar,
.detail-body::-webkit-scrollbar,
.log-output::-webkit-scrollbar {
    width: 8px;
}

.requests-container::-webkit-scrollbar-track,
.detail-body::-webkit-scrollbar-track,
.log-output::-webkit-scrollbar-track {
    background: #111;
}

.requests-container::-webkit-scrollbar-thumb,
.detail-body::-webkit-scrollbar-thumb,
.log-output::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.requests-container::-webkit-scrollbar-thumb:hover,
.detail-body::-webkit-scrollbar-thumb:hover,
.log-output::-webkit-scrollbar-thumb:hover {
    background: #00ff00;
}

/* Share Modal Styles */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid #00ff00;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.modal-header h2 {
    color: #00ff00;
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
}

.close-modal {
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ff0000;
}

.modal-body {
    padding: 20px;
}

.share-section {
    margin-bottom: 25px;
}

.share-label {
    display: block;
    color: #00ff00;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.share-url-container,
.password-container {
    display: flex;
    gap: 10px;
}

.share-input {
    flex: 1;
    padding: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    border-radius: 4px;
}

.copy-btn,
.set-password-btn {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #00ff00;
    color: #00ff00;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.copy-btn:hover,
.set-password-btn:hover {
    background: #00ff00;
    color: #000;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    color: #ccc;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 10px;
}

.viewers-list {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
    max-height: 150px;
    overflow-y: auto;
}

.viewer-item {
    padding: 5px;
    color: #00ff00;
    font-size: 0.9rem;
}

.viewer-item.readonly {
    color: #666;
}

/* Password Authentication Modal */
.auth-section {
    text-align: left;
}

.auth-input-section {
    margin: 20px 0;
}

.auth-status {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.auth-status.error {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid #ff3333;
    color: #ff3333;
}

.auth-status.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
}

.auth-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

/* God Mode Styles */
.god-mode-display {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #333;
    padding: 12px 25px;
    border-radius: 8px;
    z-index: 1000;
    font-family: 'Monaco', 'Menlo', monospace;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mode-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

.mode-symbol {
    font-size: 1.8rem;
}

.mode-name {
    color: #00ff00;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.mode-limits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #999;
}

.limit-item strong {
    color: #00ff00;
    font-size: 1rem;
    margin-right: 4px;
}

.limit-divider {
    color: #444;
    margin: 0 4px;
}

/* God Mode Activation Animation */
.god-mode-activation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid currentColor;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    z-index: 9999;
    animation: godModeActivation 10s ease-out forwards;
}

.god-mode-symbol {
    font-size: 4rem;
    animation: symbolPulse 1s ease-out;
}

.god-mode-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    font-family: 'Monaco', 'Menlo', monospace;
    text-shadow: 0 0 20px currentColor;
}

.god-mode-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 10px 15px;
    border: 1px solid #00ff00;
    border-radius: 5px;
    background: rgba(0, 255, 0, 0.05);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes godModeActivation {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    15% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    85% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

@keyframes symbolPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

@keyframes godModeShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Beast Mode Effects */
.beast-mode {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
}

.beast-mode .god-mode-display {
    border-color: #ff6600;
    color: #ff6600;
}

/* Titan Mode Effects */
.titan-mode {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.7);
}

.titan-mode .god-mode-display {
    border-color: #00ffff;
    color: #00ffff;
}

/* Chaos Mode Effects */
.chaos-mode {
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.8);
}

.chaos-mode .god-mode-display {
    border-color: #ff00ff;
    color: #ff00ff;
}

/* Deity Mode Effects */
.deity-mode {
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.3),
        0 0 90px rgba(0, 255, 0, 0.2);
}

.deity-mode .god-mode-display {
    border: 2px solid #ffff00;
    color: #ffff00;
    background: rgba(255, 255, 0, 0.05);
}

/* Action Buttons */
.detail-actions {
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.action-btn {
    background: #1a1a1a;
    color: #00ff00;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    background: #222;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    transform: translateY(-1px);
}

.action-btn:active {
    transform: translateY(0);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 15px 30px;
    border-radius: 8px;
    z-index: 10000;
    font-family: 'Monaco', 'Menlo', monospace;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.notification.success {
    border-color: #00ff00;
    color: #00ff00;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.2);
}

.notification.error {
    border-color: #ff3333;
    color: #ff3333;
    box-shadow: 0 4px 20px rgba(255, 51, 51, 0.2);
}

.notification.info {
    border-color: #0099ff;
    color: #0099ff;
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.2);
}

.notification.fade-out {
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

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

/* Landing Page Styles */
.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #000;
}

.hero-terminal {
    margin: 40px auto;
    max-width: 900px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.hero-terminal-body {
    background: #000;
    padding: 30px;
    color: #00ff00;
}

.ascii-art {
    color: #00ff00;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.65rem;
    line-height: 1;
    margin-bottom: 30px;
    text-align: center;
    white-space: pre;
}

.terminal-output {
    margin-top: 20px;
}

.output-line {
    color: #ccc;
    margin: 8px 0;
    font-size: 0.95rem;
}

.command-prompt {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prompt {
    color: #00ff00;
    font-weight: bold;
}

.terminal-command {
    background: transparent;
    border: none;
    color: #00ff00;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.2s;
}

.terminal-command:hover {
    background: #333;
    border-color: #00ff00;
}

.cursor {
    color: #00ff00;
    animation: blink 1s infinite;
}

.terminal-navigation {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    text-align: center;
}

.nav-hint {
    margin-bottom: 15px;
}

.nav-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-dot.active {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.nav-dot:hover {
    background: #666;
}

.nav-dot.active:hover {
    background: #00ff00;
}

.output-line.comment {
    color: #666;
    font-style: italic;
}

.output-line.code {
    color: #0099ff;
    font-family: 'Monaco', 'Menlo', monospace;
    padding-left: 20px;
}

.output-line.hacking-step {
    color: #ffff00;
    animation: hackingGlow 0.5s ease-in-out;
}

@keyframes hackingGlow {
    0% { 
        color: #ffff00; 
        text-shadow: 0 0 10px #ffff00;
    }
    50% { 
        color: #00ff00; 
        text-shadow: 0 0 15px #00ff00;
    }
    100% { 
        color: #00ff00; 
        text-shadow: 0 0 5px #00ff00;
    }
}

.output-line.boot-step {
    color: #00ff00;
    animation: bootGlow 0.8s ease-in-out;
}

@keyframes bootGlow {
    0% { 
        opacity: 0;
        transform: translateX(-10px);
        color: #ffff00;
    }
    50% { 
        opacity: 1;
        color: #00ff00;
        text-shadow: 0 0 10px #00ff00;
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
        color: #00ff00;
        text-shadow: 0 0 3px #00ff00;
    }
}

.keyboard-hint {
    margin-top: 15px;
    text-align: center;
}

.hint-text {
    color: #666;
    font-size: 0.85rem;
}

.hint-text kbd {
    background: #333;
    border: 1px solid #555;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 0.8rem;
    color: #ccc;
    font-family: inherit;
}

.landing-main {
    margin-top: 0;
}

.demo-section {
    padding: 80px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
}

.demo-preview {
    max-width: 800px;
    width: 100%;
    border: 2px solid #000;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.demo-header {
    background: #000;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.dot:first-child { background: #ff5f56; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:last-child { background: #27ca3f; }

.demo-title {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.demo-content {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
}

.demo-log-line {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    padding: 8px 12px;
    transition: all 0.3s;
}

.demo-log-line.demo-new {
    background: #e8f5e8;
    border-left: 3px solid #28a745;
}

.demo-time {
    color: #666;
    flex-shrink: 0;
}

.demo-method {
    padding: 2px 8px;
    font-weight: bold;
    flex-shrink: 0;
    min-width: 50px;
    text-align: center;
}

.demo-method.post {
    background: #007bff;
    color: white;
}

.demo-url {
    color: #000;
    flex-shrink: 0;
    margin-right: 10px;
}

.demo-body {
    color: #0066cc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stats-section {
    padding: 80px 20px;
    background: #000;
    text-align: center;
}

.stats-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff00;
    margin-bottom: 40px;
    font-family: 'Monaco', 'Menlo', monospace;
}

.terminal-stats {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.terminal-header {
    background: #2d2d2d;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #333;
}

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

.terminal-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots .dot.red { background: #ff5f56; }
.terminal-dots .dot.yellow { background: #ffbd2e; }
.terminal-dots .dot.green { background: #27ca3f; }

.terminal-title {
    color: #ccc;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.terminal-content {
    background: #000;
    padding: 30px;
    color: #00ff00;
    font-family: 'Monaco', 'Menlo', monospace;
}

.stats-table {
    text-align: left;
}

.stats-section-header {
    color: #888;
    font-size: 0.9rem;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.stats-section-header:first-child {
    margin-top: 0;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 6px 0;
    gap: 15px;
    font-size: 0.95rem;
}

.metric-name {
    color: #ccc;
    font-size: 0.9rem;
}

.metric-value {
    color: #00ff00;
    font-weight: bold;
    font-size: 1rem;
    min-width: 60px;
    text-align: right;
    transition: all 0.3s ease;
}

/* Removed pulsing animation per user request */
.metric-value.counting {
    /* animation: hackerCount 0.1s infinite; */
    color: #00ff00;
    text-shadow: 0 0 6px #00ff00;
}

.metric-help {
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
}

.terminal-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.terminal-prompt {
    color: #00ff00;
    font-weight: bold;
}

.terminal-cursor {
    color: #00ff00;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Matrix Rain Effect */
.matrix-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.matrix-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.matrix-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.matrix-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff00;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 1.5rem;
    text-align: center;
    animation: matrixPulse 3s ease-in-out infinite;
    text-shadow: 0 0 10px #00ff00;
}

.matrix-hint {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff00;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    animation: matrixPulse 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes matrixPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

/* Override demo section for terminal theme */
.demo-section {
    padding: 80px 20px !important;
    background: #000 !important;
    text-align: center !important;
    display: block !important;
    flex-direction: column !important;
}

.demo-section .demo-title {
    color: #00ff00 !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 40px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-family: 'Monaco', 'Menlo', monospace !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

.demo-terminal {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.demo-terminal-body {
    background: #000;
    padding: 20px;
    color: #00ff00;
}

.demo-command {
    color: #00ff00;
    margin-bottom: 15px;
    font-weight: bold;
}

.demo-output {
    margin-top: 10px;
}

.demo-line {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    padding: 4px 0;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.demo-line.demo-new {
    background: rgba(0, 255, 0, 0.1);
    border-left: 2px solid #00ff00;
    padding-left: 8px;
}

.demo-timestamp {
    color: #666;
    flex-shrink: 0;
}

.demo-method {
    color: #00ff00;
    font-weight: bold;
    flex-shrink: 0;
    min-width: 45px;
}

.demo-path {
    color: #ccc;
    flex-shrink: 0;
    margin-right: 10px;
}

.demo-payload {
    color: #0066ff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.demo-size {
    color: #999;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.cursor-demo {
    margin-top: 10px;
    justify-content: flex-start;
}

.demo-cursor {
    color: #00ff00;
    animation: blink 1s infinite;
}

.cta-section {
    padding: 80px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.cta-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    min-width: 250px;
}

.cta-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.landing-footer {
    background: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    border-top: 1px solid #ddd;
}

/* Mobile responsiveness for landing page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-title, .cta-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .demo-preview {
        margin: 0 10px;
    }
    
    .demo-log-line {
        flex-direction: column;
        gap: 5px;
    }
    
    .demo-method {
        align-self: flex-start;
    }
}