/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Consolas', 'Monaco', 'Menlo', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0d0d0d;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header and Navigation */
header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero {
    text-align: center;
    max-width: 800px;
}

.battle-cry {
    font-size: 4rem;
    font-weight: bold;
    color: #f5f5f5;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    color: #b0b0b0;
    font-style: italic;
    margin-top: 1rem;
}

/* Content Pages */
.content-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-radius: 5px;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f5f5f5;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
}

.content-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.content-page p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #c0c0c0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.9rem;
    }

    .battle-cry {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .content-page {
        padding: 1rem;
        margin: 1rem;
    }

    main {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .battle-cry {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}
