/* Orbitus Minimalist Layout */

.nav-minimal {
    width: 100%;
    max-width: 650px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

.manual-header {
    width: 100%;
    max-width: 650px;
    margin-bottom: 4rem;
    border-left: 3px solid #ff003c;
    padding-left: 20px;
}

.huge-lcd {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 0.8rem;
    letter-spacing: 4px;
    opacity: 0.6;
}

.rules-content {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.rule-block h2 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.rule-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #CCC;
    font-family: var(--font-mono);
}

.highlight {
    color: #ff003c;
}

/* Component Grid */
.component-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.comp-item {
    display: flex;
    flex-direction: column;
}

.comp-count {
    font-size: 1.2rem;
    font-family: var(--font-lcd);
    color: #ff003c;
}

.comp-name {
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 2px;
}

.comp-desc {
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* Action List */
.action-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.action {
    background: #0A0A0A;
    border: 1px solid #1A1A1A;
    padding: 1.2rem;
    transition: border-color 0.3s;
}

.action:hover {
    border-color: #333;
}

.action-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ff003c;
    letter-spacing: 1px;
}

.icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.action p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

/* Schematic */
.schematic {
    margin-top: 2rem;
    padding: 2.5rem;
    border-top: 1px solid #1A1A1A;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hex-diagram {
    display: flex;
    gap: 12px;
}

.hex-node {
    width: 32px;
    height: 38px;
    background: #111;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hex-node.pulse {
    background: #ff003c;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
    animation: hexPulse 2s infinite ease-in-out;
}

@keyframes hexPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.status-msg {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 2px;
}

/* Footer */
.manual-footer {
    width: 100%;
    max-width: 650px;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px dashed #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
}

.footer-code {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.barcode {
    font-family: monospace;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

@media (max-width: 700px) {
    .huge-lcd {
        font-size: 2.8rem;
    }
}
