/* Modernized Navigation Styles */
.nav-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.nav-link {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(180deg, #ffd700 0%, #ffcc00 100%);
    border: 2px solid #000;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 2px 2px 0px #000;
    transition: transform 0.1s, box-shadow 0.1s;
}

.nav-link:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px #000;
    background: #ffdb19;
}

.nav-link:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #000;
}

/* Global Polish */
body {
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    line-height: 1.5;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 3px solid #000;
    box-shadow: 10px 10px 0px #ffd700;
}

.divider {
    display: block;
    margin: 30px auto;
    max-width: 100%;
}

blockquote {
    border-left: 5px solid #ffd700;
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
}
