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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo i {
    font-size: 2rem;
    color: #6366f1;
    animation: pulse 2s infinite;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 320px;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(99, 102, 241, 0.2);
    overflow-y: auto;
    z-index: 999;
    transition: transform 0.3s ease;
}

.sidebar-content {
    padding: 2rem 1.5rem;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1rem;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-box input::placeholder {
    color: #64748b;
}

/* Navigation */
.nav-list {
    list-style: none;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    transform: translateX(4px);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Main Content */
.main-content {
    margin-left: 320px;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    transition: margin-left 0.3s ease;
}

.content-wrapper {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.content-section.active {
    display: block;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header i {
    margin-right: 1rem;
    color: #6366f1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.overview-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.overview-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.overview-card p {
    color: #94a3b8;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 15, 35, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #6366f1;
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.feature-card h3 i {
    margin-right: 0.5rem;
    color: #6366f1;
}

.feature-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-card li {
    padding: 0.5rem 0;
    color: #94a3b8;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-size: 0.8rem;
}

.code-preview {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #00ffff;
    overflow-x: auto;
}

.code-preview code {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.code-preview pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Tabs Container */
.tabs-container {
    margin-top: 20px;
}

.tabs-nav {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin-bottom: 0;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-weight: 500;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
}

.tab-btn.active {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border-bottom-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.tab-content {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 10px 10px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-top: none;
}

.tab-content.active {
    display: block;
}

/* Algorithm Details */
.algorithm-details {
    margin-top: 20px;
}

.algorithm-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.algorithm-card:hover {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.algorithm-card h4 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.algorithms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.math-formula {
    background: rgba(0, 100, 100, 0.2);
    border-left: 4px solid #00ffff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.math-formula p {
    margin: 8px 0;
    font-family: 'Courier New', monospace;
    color: #00ffff;
}

/* Performance Section */
.performance-section {
    margin-top: 20px;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.metric-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 100, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.metric-card h4 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.metric-value {
    font-size: 2.5em;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    margin: 15px 0;
}

.metric-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.metric-details span {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.8);
}

/* Benchmark Table */
.benchmark-section {
    margin: 40px 0;
}

.benchmark-table {
    overflow-x: auto;
    margin: 20px 0;
}

.benchmark-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.benchmark-table th,
.benchmark-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.benchmark-table th {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    font-weight: bold;
}

.benchmark-table tr.highlight {
    background: rgba(0, 255, 136, 0.1);
    border-left: 4px solid #00ff88;
}

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

/* Scaling Analysis */
.scaling-analysis {
    margin: 40px 0;
}

.scaling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 25px 0;
}

.scaling-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.scaling-chart {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 200px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.bar {
    background: linear-gradient(to top, #00ffff, #00ff88);
    width: 40px;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    color: #000;
    font-size: 0.7em;
    font-weight: bold;
    padding: 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.complexity-chart {
    margin: 20px 0;
}

.complexity-bar {
    background: linear-gradient(to right, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4);
    height: 30px;
    margin: 10px 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #000;
    font-weight: bold;
}

/* Engines Section Specific Styles */
.algorithm-details {
    padding: 20px;
}

.algorithms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.algorithm-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #00d4ff;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.algorithm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
    border-color: #00ff88;
}

.algorithm-card h4 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.algorithm-card h4 i {
    color: #00ff88;
}

.algorithm-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.algorithm-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    color: #e0e0e0;
}

.algorithm-card ul li:last-child {
    border-bottom: none;
}

.algorithm-card ul li strong {
    color: #00ff88;
}

/* Security Protocols */
.security-protocols {
    margin-top: 20px;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.protocol-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.protocol-card:hover {
    border-color: #ff6464;
    box-shadow: 0 0 20px rgba(255, 100, 100, 0.2);
    transform: translateY(-2px);
}

.protocol-card h4 {
    color: #ff6464;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Security Metrics */
.security-metrics {
    margin: 40px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.security-metric {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.strength-bar {
    background: rgba(0, 0, 0, 0.3);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
}

.strength-fill {
    background: linear-gradient(to right, #00ff88, #00ffff);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
}

.time-estimate {
    margin: 15px 0;
}

.time-value {
    font-size: 2em;
    color: #ffd700;
    font-weight: bold;
    display: block;
}

.time-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.compliance-score {
    margin: 15px 0;
}

.score-circle {
    width: 80px;
    height: 80px;
    border: 4px solid #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: rgba(0, 255, 136, 0.1);
}

.score-value {
    font-size: 1.2em;
    font-weight: bold;
    color: #00ff88;
}

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

.crypto-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-4px);
    border-color: #10b981;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
}

.crypto-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.crypto-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* AI Systems */
.ai-systems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.ai-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ai-card.aurelia:hover {
    border-color: #8b5cf6;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.ai-card.suprema:hover {
    border-color: #f59e0b;
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.1);
}

.ai-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.ai-card h3 i {
    margin-right: 0.5rem;
}

.aurelia h3 i {
    color: #8b5cf6;
}

.suprema h3 i {
    color: #f59e0b;
}

.ai-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ai-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-features span {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Neural Interface */
.neural-interface {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

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

.region {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.region.focus {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.1), rgba(255, 255, 0, 0.05));
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.region.face {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.region.limbs {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.region:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.region i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.region.focus i {
    color: #ffff00;
}

.region.face i {
    color: #00ffff;
}

.region.limbs i {
    color: #ff00ff;
}

.region h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.region p {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.engine-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.engine-card:hover {
    transform: translateY(-4px);
    border-color: #06b6d4;
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.1);
}

.engine-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.engine-card h3 i {
    margin-right: 0.5rem;
    color: #06b6d4;
}

.engine-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* File Tree */
.file-tree {
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    font-family: 'Fira Code', monospace;
}

.tree-item {
    padding: 0.5rem 0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tree-item.folder {
    color: #06b6d4;
    font-weight: 500;
}

.tree-item.file {
    color: #10b981;
}

.tree-children {
    margin-left: 2rem;
    border-left: 1px solid rgba(99, 102, 241, 0.2);
    padding-left: 1rem;
}

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

.tech-category {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.tech-tag.python {
    background: rgba(255, 193, 7, 0.2);
    color: #fbbf24;
    border-color: rgba(255, 193, 7, 0.3);
}

.tech-tag.opencl {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

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

.perf-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.perf-card:hover {
    transform: translateY(-4px);
    border-color: #ef4444;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.1);
}

.perf-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.perf-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(15, 15, 35, 0.6);
    border-radius: 0.75rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ef4444;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Performance Grid for Engines */
.performance-grid .metric-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00d4ff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.performance-grid .metric-card:hover {
    transform: scale(1.05);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.performance-grid .metric-card h4 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.performance-grid .metric-value {
    font-size: 2.5em;
    font-weight: bold;
    color: #00ff88;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.performance-grid .metric-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.performance-grid .metric-details span {
    color: #b0b0b0;
    font-size: 0.9em;
    padding: 3px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.performance-grid .metric-details span:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.95);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 2rem;
    text-align: center;
    margin-left: 320px;
    transition: margin-left 0.3s ease;
}

.footer-content p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .footer {
        margin-left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Performance Section Styles */
.performance-section {
    padding: 20px;
}

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

.metric-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #00d4ff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.metric-card h4 {
    color: #00d4ff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.metric-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}

.metric-details span {
    background: rgba(0, 212, 255, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Benchmark Table */
.benchmark-section {
    margin: 30px 0;
}

.benchmark-table {
    overflow-x: auto;
    margin: 20px 0;
}

.benchmark-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.benchmark-table th,
.benchmark-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.benchmark-table th {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000;
    font-weight: bold;
}

.benchmark-table tr.highlight {
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid #00d4ff;
}

.benchmark-table tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

/* Scaling Analysis */
.scaling-analysis {
    margin: 30px 0;
}

.scaling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.scaling-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #00d4ff;
    border-radius: 10px;
    padding: 20px;
}

.scaling-card h4 {
    color: #00d4ff;
    margin-bottom: 15px;
    text-align: center;
}

.scaling-chart {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 150px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 10px;
}

.bar {
    background: linear-gradient(to top, #00d4ff, #0099cc);
    width: 40px;
    border-radius: 3px 3px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    font-size: 0.8rem;
    color: #000;
    font-weight: bold;
    padding: 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.complexity-chart {
    margin: 20px 0;
}

.complexity-bar {
    background: linear-gradient(to right, #00d4ff, #0099cc);
    height: 25px;
    margin: 8px 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
}

.scaling-card p {
    text-align: center;
    color: #b0b0b0;
    margin-top: 10px;
    font-style: italic;
}

/* Benchmark Table for Engines */
.benchmark-section {
    margin-top: 30px;
}

.benchmark-section h4 {
    color: #00d4ff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benchmark-table {
    overflow-x: auto;
    margin-top: 15px;
}

.benchmark-table table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    overflow: hidden;
}

.benchmark-table th {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.benchmark-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    color: #e0e0e0;
}

.benchmark-table tr:hover {
    background: rgba(0, 212, 255, 0.1);
}

.benchmark-table tr.highlight {
    background: rgba(0, 255, 136, 0.1);
    border-left: 4px solid #00ff88;
}

.benchmark-table tr.highlight td {
    color: #00ff88;
}

/* Cryptography RSA Styles */
#cryptography .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

#cryptography .algorithm-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

#cryptography .algorithm-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #00d4ff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

#cryptography .algorithm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
    border-color: #ff6b35;
}

#cryptography .algorithms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

#cryptography .performance-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

#cryptography .metric-card {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border: 1px solid #00d4ff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
}

#cryptography .benchmark-table {
    overflow-x: auto;
    margin-top: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}

#cryptography .benchmark-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

#cryptography .benchmark-table th,
#cryptography .benchmark-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

#cryptography .benchmark-table th {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #0f3460;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

#cryptography .benchmark-table tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

#cryptography .scaling-analysis {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #00d4ff;
    border-radius: 12px;
}

#cryptography .code-preview {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    line-height: 1.4;
    overflow-x: auto;
}

#cryptography .code-preview code {
    color: #00d4ff;
    display: block;
    white-space: pre;
}

/* Advanced AI Systems Styles */
.ai-feature-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #00d4ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
    border-color: #ff6b35;
}

.ai-feature-card h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.ai-feature-card li {
    padding: 0.3rem 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-feature-card li:last-child {
    border-bottom: none;
}

.ai-feature-card strong {
    color: #ff6b35;
}

/* Architecture Cards */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.arch-card {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border: 2px solid #00d4ff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.arch-card:hover {
    transform: scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.arch-card h4 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.arch-layers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layer {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 8px;
    padding: 0.8rem;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.layer:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
}

/* Integration Flow */
.integration-flow {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 15px;
    border: 1px solid #00d4ff;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.flow-step {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.flow-arrow {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: bold;
}

/* Performance Grid */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.perf-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border: 1px solid #00d4ff;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.perf-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.perf-card h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.perf-card li {
    padding: 0.4rem 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.perf-card li:last-child {
    border-bottom: none;
}

.perf-card strong {
    color: #ff6b35;
}

/* Benchmark Analysis */
.benchmark-analysis {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    border-radius: 15px;
    border: 1px solid #ff6b35;
}

.benchmark-analysis h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .sidebar {
        width: 280px;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .overview-grid,
    .feature-grid,
    .crypto-grid,
    .ai-systems,
    .engines-grid,
    .tech-grid,
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .neural-regions {
        grid-template-columns: 1fr;
    }
    
    .scaling-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .scaling-chart {
        height: 120px;
    }
    
    .bar {
        width: 30px;
        font-size: 0.7rem;
    }
    
    .benchmark-table {
        font-size: 0.9rem;
    }
    
    .algorithms-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-grid .metric-card {
        padding: 20px;
    }
    
    .performance-grid .metric-value {
        font-size: 2em;
    }
    
    #cryptography .algorithm-details,
    #cryptography .algorithms-grid,
    #cryptography .performance-section {
        grid-template-columns: 1fr;
    }
    
    #cryptography .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .architecture-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-diagram {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .perf-metrics {
        grid-template-columns: 1fr;
    }
    
    .algorithm-card {
        padding: 20px;
    }
    
    .algorithm-card h4 {
        font-size: 1.1em;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 15, 35, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.7);
}

/* Selection */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: #f1f5f9;
}

/* Focus States */
.nav-link:focus,
button:focus,
input:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    border-top-color: #6366f1;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Specialized Engines Styles */
.engines-section {
    padding: 20px;
}

.engines-section h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.engines-section h3 i {
    color: #00ff88;
}

.engine-description {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    color: #e0e0e0;
    line-height: 1.6;
}

.engine-description p {
    margin-bottom: 15px;
}

.engine-description strong {
    color: #00ff88;
}

.engine-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.feature-item h5 {
    color: #00d4ff;
    margin-bottom: 10px;
    font-size: 1em;
}

.feature-item p {
    color: #b0b0b0;
    font-size: 0.9em;
    margin: 0;
}

/* Neural Systems Specific Styles */
#neural-systems .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

#neural-systems .feature-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(138, 43, 226, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

#neural-systems .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

#neural-systems .feature-card h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}

#neural-systems .feature-card h3 i {
    font-size: 1.2em;
    color: #8a2be2;
}

/* Neural Networks Grid */
.neural-algorithms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.neural-algorithm-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.neural-algorithm-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
}

.neural-algorithm-card h3 {
    color: #8a2be2;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.neural-algorithm-card h3 i {
    color: #00d4ff;
}

.neural-algorithm-details {
    margin-bottom: 15px;
}

.neural-algorithm-details p {
    margin: 8px 0;
    color: #e0e0e0;
    font-size: 0.9em;
    line-height: 1.4;
}

.neural-algorithm-details strong {
    color: #00d4ff;
    font-weight: 600;
}

/* Monitoring Specific Styles */
#monitoring .feature-card {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 255, 127, 0.3);
}

#monitoring .feature-card:hover {
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
}

#monitoring .feature-card h3 {
    color: #00ff7f;
}

#monitoring .feature-card h3 i {
    color: #00d4ff;
}

/* Logs & Metrics Styles */
#logs-metrics .feature-card {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 69, 0, 0.1));
    border: 1px solid rgba(255, 165, 0, 0.3);
}

#logs-metrics .feature-card:hover {
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

#logs-metrics .feature-card h3 {
    color: #ffa500;
}

#logs-metrics .feature-card h3 i {
    color: #ff4500;
}

/* Neural Performance Styles */
#neural-performance .performance-section {
    padding: 20px 0;
}

#neural-performance .performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

#neural-performance .metric-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(138, 43, 226, 0.15));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

#neural-performance .metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

#neural-performance .metric-card h4 {
    color: #00d4ff;
    margin-bottom: 10px;
    font-size: 1.1em;
}

#neural-performance .metric-value {
    font-size: 2em;
    font-weight: bold;
    color: #8a2be2;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

#neural-performance .metric-description {
    color: #b0b0b0;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Neural Benchmark Table Styles */
#neural-performance .benchmark-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

#neural-performance .benchmark-table th,
#neural-performance .benchmark-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#neural-performance .benchmark-table th {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(138, 43, 226, 0.2));
    color: #00d4ff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

#neural-performance .benchmark-table td {
    color: #e0e0e0;
}

#neural-performance .benchmark-table tr:hover {
    background: rgba(0, 212, 255, 0.1);
}

#neural-performance .benchmark-table tr:first-child td {
    font-weight: bold;
    color: #00d4ff;
}