@font-face {
    font-family: 'Mono';
    src: url('fonts/SansMono.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-size: 1.1em;
    min-height: 100vh;
    font-family: 'Mono', "Courier New", monospace;
    position: relative;
}

.site-title {
    font-size: 2.5em;
    font-weight: 300;
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
}

.site-subtitle {
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 6px;
    margin: 8px 0 0 0;
    text-transform: uppercase;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
}

.full-width {
    width: 100%;
}

.split-row {
    display: flex;
    margin-bottom: 30px;
}

.half {
    flex: 1;
    margin-bottom: 0;
}

.banner {
    text-align: center;
    padding: 20px 20px 30px 20px;
}

.banner-img {
    max-width: 80%;
    max-height: 150px;
    image-rendering: pixelated;
    opacity: 0.9;
}

.nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 15px 0 20px 0;
    margin-bottom: 25px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    filter: brightness(0) saturate(100%) invert(1) brightness(1);
}

.nav-icon:hover {
    opacity: 1;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    z-index: 99;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 180px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 6px 0;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    text-decoration: none;
    font-size: 0.85em;
    transition: all 0.15s ease;
    border-left: 2px solid transparent;
}

.content {
    padding: 5px 0 10px 0;
}

.content-box {
    margin-bottom: 30px;
    padding: 25px 30px;
    border-radius: 4px;
}

.content-box h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1.5px;
    padding-bottom: 10px;
    text-align: center;
}

.content-box p {
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 0.95em;
}

.content-box img {
    max-width: 100%;
    height: auto;
}

.content-box b {
    font-weight: 400;
}
.paragraph {
    text-align: justify;
}
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px 0 5px 0;
    text-align: center;
    font-size: 0.7em;
    letter-spacing: 2px;
    margin-top: 10px;
}

.textarea {
    width: 300px;
    height: 70px;
    resize: none;
    background:#ffffffdb;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 1.8em;
    }
    .site-subtitle {
        font-size: 0.8em;
    }
    .container {
        margin: 15px 10px;
        padding: 20px 15px;
    }
    .split-row {
        flex-direction: column;
        gap: 15px;
    }
    .half {
        margin-bottom: 0;
    }
    .nav-bar {
        gap: 3px;
        padding: 10px 0 15px 0;
    }
    .nav-btn {
        padding: 8px 14px;
        font-size: 0.8em;
    }
    .nav-btn span {
        display: none;
    }
    .nav-icon {
        width: 24px;
        height: 24px;
        opacity: 0.8;
    }
    .dropdown-content {
        min-width: 140px;
        left: -10px;
    }
    .dropdown-content a {
        font-size: 0.8em;
        padding: 6px 14px;
    }
    .content-box {
        padding: 18px 18px;
    }
    .content-box h2 {
        font-size: 1.2em;
    }
    .banner-img {
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .nav-btn {
        padding: 6px 10px;
    }
    .nav-icon {
        width: 20px;
        height: 20px;
    }
    .dropdown-content {
        min-width: 120px;
        left: -5px;
    }
    .content-box {
        padding: 14px 14px;
    }
}