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

@font-face {
    font-family: 'Terminal';
    src: local('Courier New'), local('Monaco'), monospace;
}

body {
    background: #303948;
    color: #3cbef2;
    font-family: 'Terminal', monospace;
    overflow-x: hidden;
    line-height: 1.6;
}

.matrix-container {
    position: relative;
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 50%, #303948 0%, #252a33 100%);
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3cbef2;
    animation: scan 3s linear infinite;
    box-shadow: 0 0 10px #3cbef2;
    z-index: 1000;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(48, 57, 72, 0.1),
            rgba(48, 57, 72, 0.1) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 1001;
    opacity: 0.3;
}

.terminal {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    border-left: 1px solid #3cbef2;
    border-right: 1px solid #3cbef2;
    box-shadow: 0 0 30px rgba(60, 190, 242, 0.1);
}

.header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px dashed #3cbef2;
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 165px;
    height: 60px;
    filter: drop-shadow(0 0 10px #3cbef2);
}

.tagline {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.8;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ascii-art {
    text-align: center;
    margin-bottom: 40px;
    color: #FFFFFF;
    font-size: 8px;
    line-height: 1;
}

.ascii-art pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.section-title {
    color: #FFFFFF;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-left: 3px solid #3cbef2;
    padding-left: 15px;
}

.rating-display {
    margin-bottom: 30px;
}

.rating-bar {
    width: 100%;
    height: 20px;
    background: #303948;
    border: 1px solid #3cbef2;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #3cbef2, #FFFFFF);
    animation: pulse 2s infinite;
}

.rating-text {
    color: #FFFFFF;
    font-size: 14px;
}

.text-content {
    margin-bottom: 40px;
}

.text-content h3 {
    color: #FFFFFF;
    margin: 25px 0 15px 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #3cbef2;
    padding-bottom: 5px;
}

.text-content p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #3cbef2;
}

.text-content .lead {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 25px;
    border-left: 2px solid #3cbef2;
    padding-left: 15px;
}

.feature-grid {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    border: 1px solid #3cbef2;
    padding: 20px;
    background: rgba(48, 57, 72, 0.5);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 0 15px rgba(60, 190, 242, 0.3);
    transform: translateY(-2px);
}

.feature-card h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-card p {
    color: #3cbef2;
    margin-bottom: 8px;
    font-size: 12px;
}

.performance-metrics {
    margin: 40px 0;
    padding: 25px;
    border: 1px solid #3cbef2;
    background: rgba(48, 57, 72, 0.3);
}

.performance-metrics h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}

.metric {
    padding: 15px;
    border: 1px solid #3cbef2;
    background: rgba(48, 57, 72, 0.5);
}

.metric-value {
    display: block;
    font-size: 24px;
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 11px;
    color: #3cbef2;
    text-transform: uppercase;
}

.mirror-panel {
    border: 1px solid #3cbef2;
    padding: 25px;
    background: rgba(48, 57, 72, 0.7);
}

.panel-title {
    color: #FFFFFF;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.mirror-list {
    margin-bottom: 30px;
}

.mirror-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #3cbef2;
    background: rgba(48, 57, 72, 0.9);
    transition: all 0.3s ease;
}

.mirror-link:hover {
    background: rgba(60, 190, 242, 0.1);
}

.link-text {
    color: #FFFFFF;
    word-break: break-all;
    font-size: 12px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #3cbef2;
    border-radius: 50%;
    animation: blink 1.5s infinite;
    margin-left: 10px;
    flex-shrink: 0;
}

.security-protocols {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #3cbef2;
    background: rgba(48, 57, 72, 0.5);
}

.security-protocols h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.security-protocols p {
    color: #3cbef2;
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.5;
}

.status-board {
    border-top: 1px dashed #3cbef2;
    padding-top: 20px;
}

.status-board h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #3cbef2;
    font-size: 12px;
}

.status-online {
    color: #3cbef2;
    font-weight: bold;
}

.status-delayed {
    color: #ff6b6b;
    font-weight: bold;
}

.terminal-footer {
    border-top: 1px dashed #3cbef2;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 15px;
}

.crypto-ticker span {
    margin-right: 20px;
    opacity: 0.7;
}

.timestamp {
    opacity: 0.7;
}

.disclaimer {
    flex-basis: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 10px;
    color: #3cbef2;
    opacity: 0.6;
}

@keyframes scan {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

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

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

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .terminal {
        padding: 10px;
        border: none;
    }
    
    .ascii-art {
        font-size: 6px;
    }
    
    .terminal-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .text-content h3 {
        font-size: 14px;
    }
    
    .text-content p {
        font-size: 12px;
    }
}