/* Soras Corp Activation Server Styles */

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

body {
    font-family: 'Share Tech Mono', monospace;
    background: #0a0a0a;
    color: #00ff41;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 700px;
}

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

.terminal-header {
    background: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.title {
    margin-left: auto;
    margin-right: auto;
    color: #888;
    font-size: 0.85rem;
}

.terminal-body {
    padding: 24px;
}

.ascii-logo {
    color: #00ff41;
    font-size: 0.5rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

@media (min-width: 600px) {
    .ascii-logo {
        font-size: 0.65rem;
    }
}

.content h1 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #888;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #888;
}

.dot-indicator.active {
    background: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.stats {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    padding: 16px;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
}

.stat:last-child {
    border-bottom: none;
}

.label {
    color: #888;
}

.value {
    color: #00d4ff;
}

.value.success {
    color: #00ff41;
}