/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

/* Navigation */
nav {
    background-color: var(--dark-color);
    padding: 1rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: var(--secondary-color);
}

/* Main Content */
main {
    padding: 2rem 0;
}

.hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-buttons {
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin: 0 0.5rem;
}

.btn:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: #c0392b;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* Topic Page Specific Styles */
.topic-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.topic-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-color);
}

.topic-content h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 0.5rem;
}

.topic-content p {
    margin-bottom: 1rem;
}

.topic-content ul, .topic-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.code-block {
    background-color: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 1rem;
    margin: 1rem 0;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
}

/* Quiz Styles */
.quiz-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.question {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.question h3 {
    margin-bottom: 0.5rem;
}

.options {
    margin-left: 1rem;
}

.option {
    margin-bottom: 0.5rem;
}

.option label {
    margin-left: 0.5rem;
}

.submit-btn {
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #219653;
}

.result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.result.success {
    background-color: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.result.error {
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

/* Commands Table */
.commands-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.commands-table th, .commands-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.commands-table th {
    background-color: var(--primary-color);
    color: white;
}

.commands-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.commands-table tr:hover {
    background-color: #e9e9e9;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .btn {
        margin: 0.5rem 0;
    }
}
/* Techy Cyber Theme */
:root {
    --cyber-teal: #00f0ff;
    --cyber-purple: #bd00ff;
    --cyber-pink: #ff00a0;
    --cyber-blue: #0066ff;
    --matrix-green: #00ff41;
    --terminal-bg: #0a0a0a;
    --terminal-text: #00ff00;
    --hacker-red: #ff003c;
    --dark-bg: #111;
    --neon-glow: 0 0 10px rgba(0, 240, 255, 0.8);
}

body {
    font-family: 'Oxanium', sans-serif;
    background-color: var(--dark-bg);
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
    display: none;
    /* JavaScript will handle the animation */
}

/* Terminal Header */
.terminal-header {
    background-color: var(--terminal-bg);
    border-bottom: 2px solid var(--cyber-teal);
    padding: 1rem 0;
    position: relative;
}

.terminal-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control.close {
    background-color: var(--hacker-red);
}

.control.minimize {
    background-color: var(--cyber-teal);
}

.control.expand {
    background-color: var(--matrix-green);
}

.terminal-title {
    font-family: 'Share Tech Mono', monospace;
    color: var(--terminal-text);
    font-size: 0.9rem;
}

.typewriter h1 {
    font-family: 'Share Tech Mono', monospace;
    color: var(--cyber-teal);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.typewriter .subtitle {
    font-family: 'Share Tech Mono', monospace;
    color: var(--cyber-purple);
    font-size: 1.2rem;
}

.prompt {
    color: var(--matrix-green);
    margin-right: 10px;
}

.blinking-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* Neon Navigation */
.neon-nav {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--cyber-blue);
    box-shadow: var(--neon-glow);
}

.neon-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.neon-nav li {
    margin: 0 1rem;
}

.neon-nav a {
    color: var(--cyber-teal);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 0.5rem;
    position: relative;
    transition: all 0.3s;
    font-family: 'Share Tech Mono', monospace;
}

.neon-nav a:hover, .neon-nav a.active {
    color: white;
    text-shadow: 0 0 10px var(--cyber-teal);
}

.neon-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--cyber-teal);
    box-shadow: var(--neon-glow);
}

.nav-icon {
    margin-right: 8px;
}

/* Cyber Main Content */
.cyber-main {
    padding: 2rem 0;
}

.cyber-hero {
    margin-bottom: 3rem;
}

.hud-display {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--cyber-teal);
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Share Tech Mono', monospace;
}

.hud-line {
    margin-bottom: 0.5rem;
    display: flex;
}

.hud-prompt {
    color: var(--matrix-green);
    margin-right: 10px;
}

.hud-text {
    color: white;
}

.loading-bar {
    display: inline-block;
    width: 100px;
    height: 10px;
    background-color: rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: var(--cyber-teal);
    animation: loading 2s infinite linear;
}

@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* Cyber Grid */
.cyber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cyber-card {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--cyber-blue);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, var(--cyber-blue), var(--cyber-purple), var(--cyber-pink), var(--cyber-teal));
    background-size: 400%;
    border-radius: 10px;
    opacity: 0;
    transition: 0.5s;
}

.cyber-card:hover::before {
    opacity: 1;
    animation: animate-border 8s linear infinite;
}

@keyframes animate-border {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    padding-bottom: 0.5rem;
}

.card-header h3 {
    color: var(--cyber-teal);
    margin: 0;
}

.card-icon {
    font-size: 1.5rem;
    color: var(--cyber-purple);
}

.card-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cyber-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.cyber-list li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.cyber-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--cyber-teal);
}

.card-footer {
    margin-top: 1.5rem;
    text-align: right;
}

.cyber-button {
    display: inline-block;
    background: transparent;
    color: var(--cyber-teal);
    padding: 0.5rem 1rem;
    border: 1px solid var(--cyber-teal);
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cyber-button:hover {
    background-color: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.cyber-button span {
    margin-left: 5px;
    transition: transform 0.3s;
}

.cyber-button:hover span {
    transform: translateX(3px);
}

/* Live Stats */
.live-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-box {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--cyber-purple);
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Activity Feed */
.activity-feed {
    margin-top: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--cyber-pink);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 0, 160, 0.2);
}

.activity-feed h2 {
    color: var(--cyber-pink);
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 0, 160, 0.3);
    padding-bottom: 0.5rem;
}

.feed-container {
    max-height: 300px;
    overflow-y: auto;
}

.feed-item {
    display: flex;
    margin-bottom: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
}

.feed-time {
    color: var(--matrix-green);
    margin-right: 1rem;
    flex-shrink: 0;
}

.feed-text {
    color: rgba(255, 255, 255, 0.8);
}

.user {
    color: var(--cyber-teal);
    font-weight: bold;
}

.challenge, .module, .badge {
    color: var(--cyber-purple);
    font-weight: bold;
}

/* Cyber Footer */
.cyber-footer {
    background-color: var(--terminal-bg);
    border-top: 1px solid var(--cyber-blue);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--cyber-teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--cyber-teal);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: var(--cyber-purple);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.system-status {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(0, 255, 65, 0.1);
    border-radius: 20px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--matrix-green);
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.status-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--matrix-green);
}

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

/* Hack Mode */
body.hack-mode {
    background-color: black;
    color: var(--matrix-green);
}

body.hack-mode .terminal-header,
body.hack-mode .neon-nav,
body.hack-mode .cyber-footer {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: var(--matrix-green);
}

body.hack-mode .hud-display,
body.hack-mode .activity-feed {
    border-color: var(--matrix-green);
}

body.hack-mode .terminal-title,
body.hack-mode .typewriter h1,
body.hack-mode .neon-nav a,
body.hack-mode .card-header h3,
body.hack-mode .cyber-button,
body.hack-mode .activity-feed h2 {
    color: var(--matrix-green);
}

body.hack-mode .prompt,
body.hack-mode .hud-prompt {
    color: var(--hacker-red);
}

body.hack-mode .neon-nav a:hover,
body.hack-mode .neon-nav a.active {
    text-shadow: 0 0 10px var(--matrix-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .neon-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .neon-nav li {
        margin: 0.5rem 0;
    }
    
    .typewriter h1 {
        font-size: 2rem;
    }
    
    .cyber-grid {
        grid-template-columns: 1fr;
    }
}
/* Quiz Hub Styles */
.quiz-hub {
    background-color: rgba(20, 20, 30, 0.7);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quiz-card {
    background: rgba(30, 30, 45, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--cyber-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quiz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
    border-color: var(--cyber-teal);
}

.quiz-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quiz-card h3 {
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
}

.quiz-card p {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.quiz-stats {
    background-color: rgba(0, 240, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
    color: var(--cyber-teal);
}
/* Topics Hub Styles */
.topics-hub {
    background-color: rgba(10, 10, 20, 0.8);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-card {
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8), rgba(50, 50, 70, 0.5));
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    border: 1px solid var(--cyber-blue);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
    border-color: var(--cyber-teal);
}

.topic-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.topic-card h3 {
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
}

.topic-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.topic-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.lessons {
    color: var(--cyber-purple);
}

.difficulty {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
}

.difficulty.beginner {
    background-color: rgba(0, 255, 0, 0.1);
    color: var(--matrix-green);
}

.difficulty.intermediate {
    background-color: rgba(255, 165, 0, 0.1);
    color: var(--warning-color);
}

.difficulty.advanced {
    background-color: rgba(255, 0, 0, 0.1);
    color: var(--hacker-red);
}

/* Topic Page Styles */
.topic-content {
    background-color: rgba(20, 20, 30, 0.8);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.topic-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.topic-hero {
    width: 120px;
    height: 120px;
}

.topic-meta {
    display: flex;
    gap: 1rem;
    font-family: 'Share Tech Mono', monospace;
}

.learning-outcomes {
    background-color: rgba(0, 240, 255, 0.05);
    border-left: 4px solid var(--cyber-teal);
    padding: 1rem;
    margin: 1.5rem 0;
}

.learning-outcomes ul {
    margin-left: 1.5rem;
}

.lessons-list {
    margin: 2rem 0;
}

.lesson-card {
    display: flex;
    background-color: rgba(30, 30, 45, 0.8);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--cyber-purple);
}

.lesson-number {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    color: var(--cyber-teal);
    margin-right: 1rem;
    align-self: center;
}

.lesson-content {
    flex-grow: 1;
}

.lesson-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lesson-button {
    background-color: var(--cyber-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.resource-card {
    background-color: rgba(30, 30, 45, 0.8);
    padding: 1rem;
    border-radius: 8px;
}

.resource-card h3 {
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    padding-bottom: 0.5rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    margin-bottom: 0.5rem;
}

.resource-card a {
    color: var(--cyber-purple);
    text-decoration: none;
}

.resource-card a:hover {
    text-decoration: underline;
}

.topic-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}
/* Commands Page Styles */
.commands-container {
    background-color: rgba(20, 20, 30, 0.8);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.command-category {
    margin-bottom: 2.5rem;
}

.command-category h2 {
    color: var(--cyber-teal);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.commands-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.commands-table th {
    background-color: rgba(0, 102, 255, 0.2);
    color: var(--cyber-teal);
    text-align: left;
    padding: 0.75rem;
    font-family: 'Share Tech Mono', monospace;
}

.commands-table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    vertical-align: top;
}

.commands-table tr:nth-child(even) {
    background-color: rgba(30, 30, 45, 0.5);
}

.commands-table tr:hover {
    background-color: rgba(0, 102, 255, 0.1);
}

.commands-table code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    color: var(--matrix-green);
    white-space: nowrap;
}

.command-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
