/* Sector 2: Kuat Yards (Full Page Redesign) */

/* Page Header & Footer */
.page-header {
    background: #050505;
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-header);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.brand-logo {
    color: var(--primary-color);
    font-size: 1.2em;
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo::before {
    content: "◈";
    font-size: 1.5em;
}

.top-nav {
    font-family: var(--font-mono);
    font-size: 0.8em;
    color: #888;
}

.page-footer {
    background: #050505;
    border-top: 1px solid #333;
    padding: 20px 30px;
    font-family: var(--font-mono);
    margin-top: 60px;
}

.footer-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    color: #666;
    margin-bottom: 10px;
}

.footer-warning {
    text-align: center;
    font-size: 0.7em;
    color: #444;
    margin-top: 10px;
}

/* Full Page Content */
.full-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
}

/* Page Title */
.page-title {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

.page-title h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    letter-spacing: 4px;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(209, 209, 209, 0.3);
}

.title-meta {
    font-family: var(--font-mono);
    color: #666;
    font-size: 0.9em;
    letter-spacing: 2px;
}

/* Story Section */
.story-section {
    margin-bottom: 60px;
}

.section-heading {
    color: var(--accent-color);
    font-size: 1.8em;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.story-content {
    font-size: 1em;
    line-height: 1.8;
    color: rgba(209, 209, 209, 0.9);
}

.story-content p {
    margin-bottom: 25px;
}

.story-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.classified-tag {
    color: var(--accent-color);
    font-weight: 700;
    font-family: var(--font-mono);
}

.security-directive {
    background: rgba(255, 51, 51, 0.08);
    border-left: 4px solid var(--accent-color);
    padding: 20px 25px;
    margin: 30px 0;
    font-size: 0.95em;
    line-height: 1.6;
}

.security-directive strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

/* Challenges Section */
.challenges-section {
    margin-bottom: 60px;
}

/* Artifact Cards */
.artifact-card {
    background: rgba(26, 26, 26, 0.6);
    border-left: 4px solid var(--accent-color);
    padding: 30px 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.artifact-card:hover {
    border-left-width: 6px;
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.15);
    transform: translateX(5px);
}

.artifact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.artifact-header h3 {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.3em;
    letter-spacing: 2px;
}

.category {
    font-size: 0.75em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artifact-title {
    color: var(--primary-color);
    font-size: 1.4em;
    margin: 15px 0;
    letter-spacing: 2px;
}

.artifact-description {
    font-size: 0.95em;
    line-height: 1.7;
    color: rgba(209, 209, 209, 0.85);
    margin: 15px 0 20px 0;
}

.artifact-meta {
    font-size: 0.85em;
    color: #666;
    margin: 15px 0 25px 0;
    font-family: var(--font-mono);
}

.artifact-meta code {
    background: #000;
    padding: 3px 10px;
    border-radius: 3px;
    color: var(--highlight-color);
    font-size: 0.95em;
}

/* Download Button */
.download-btn {
    display: inline-block;
    background: #660000;
    color: #fff;
    border: 1px solid #ff0000;
    padding: 14px 40px;
    font-family: var(--font-header);
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.download-btn:hover {
    background: #990000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Terminal Section */
.terminal-section {
    margin-bottom: 40px;
}

.terminal-log {
    background: #000;
    border: 1px solid #333;
    border-left: 3px solid var(--accent-color);
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.85em;
    color: #999;
    max-height: 150px;
    overflow-y: auto;
}

.log-entry {
    margin-bottom: 8px;
}

.log-entry.success {
    color: #0f0;
}

.log-entry.error {
    color: #f00;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .full-page-content {
        padding: 30px 20px;
    }

    .page-title h1 {
        font-size: 1.8em;
    }

    .section-heading {
        font-size: 1.4em;
    }

    .artifact-card {
        padding: 20px;
    }
}