﻿
/* Solid background for entire page */
body {
    background-color: #dee2c7;
    margin: 0;
    padding: 0;
}

/* Navigation at top */
.navigation {
    background-color: #172f1f;
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-btn {
    display: inline-block;
    background-color: transparent;
    color: #dee2c7;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #dee2c7;
    transition: all 0.3s ease;
}

    .nav-btn:hover {
        background-color: #dee2c7;
        color: #172f1f;
    }

/* Main container */
.info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #172f1f;
}

    .info-container h1 {
        color: #172f1f;
        font-size: 2.5rem;
        margin-bottom: 40px;
        font-weight: 600;
    }

/* Content sections - minimal styling */
.info-section {
    margin-bottom: 40px;
}

    .info-section h2 {
        color: #688A65;
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

/* Command blocks - no extra styling */
.command-block {
    margin: 20px 0;
}

    .command-block h3 {
        color: #2C341B;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .command-block h4 {
        color: #537E72;
        font-size: 1.1rem;
        margin-top: 20px;
        margin-bottom: 12px;
        font-weight: 600;
    }

/* Terminal code - sections around code only */
.terminal-code {
    display: block;
    background-color: #172f1f;
    color: #dee2c7;
    padding: 15px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    margin: 15px 0;
}

/* Inline code */
code {
    background-color: #172f1f;
    color: #dee2c7;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Example boxes - sections around examples only */
.example {
    background-color: #172f1f;
    padding: 20px;
    margin-top: 15px;
    border-radius: 6px;
    border: 2px solid #172f1f;
    color: #dee2c7;
}

    .example strong {
        color: #dee2c7;
        font-size: 1.05rem;
    }

    .example code {
        display: block;
        margin: 12px 0;
        font-size: 1rem;
        background-color: #0f1f13;
    }

.explanation {
    color: #537E72;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 8px;
}

/* Lists */
.command-block ul {
    margin-left: 25px;
    color: #444444;
    line-height: 1.8;
}

    .command-block ul li {
        margin: 10px 0;
    }

/* Warning lists */
.warning-list {
    list-style: none;
    padding-left: 0;
}

    .warning-list li {
        padding: 15px;
        margin: 15px 0;
        background-color: #FFFFFF;
        border-left: 4px solid #E8B44A;
        border-radius: 4px;
    }

    .warning-list strong {
        color: #B8860B;
    }

/* Game levels at bottom */
.level-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #E0E0E0;
}

.level-btn {
    display: block;
    background-color: #97AC82;
    color: #122B10;
    padding: 18px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .level-btn:hover {
        background-color: #9CC97F;
        transform: translateX(10px);
    }
