body {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    background: rgb(24, 17, 27);
    color: #e0dfdc;
    min-height: 100vh;
}

.header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    padding: 20px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #a19079;
    position: relative;
}

.header-logo {
    position: absolute;
    top: 10px;
    left: 20px;
    display: inline-block;
}

.header-logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    background: rgba(20, 20, 20, 0.85);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.nav a {
    color: #d4c2a8;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav a:hover {
    background: #a19079;
    color: #fff;
}

h1 {
    text-align: center;
    color: #ecbdbd;
    margin: 30px 0;
}

.level-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.level {
    background: rgba(30, 30, 30, 0.9);
    padding: 25px 35px;
    border: 2px solid #a19079;
    border-radius: 12px;
    text-align: center;
    width: 220px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.level:nth-child(1):hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #a19079;
}

.level:nth-child(2):hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #8a70a2;
}

.level:nth-child(3):hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #d72f2f;
}

.level h2 {
    margin-top: 0;
    color: #f1c0a0;
}

.level p {
    font-size: 0.95em;
    color: #c4b9b9;
}

.intro, .outro {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #241c27;
    border: 2px solid #a19079;
    border-radius: 12px;
}

.footer h4 {
    color: #676770;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer__desc {
    padding: 35px 0;
}

.footer__desc li a {
    color: #668CAD;
    font-size: 13px;
    line-height: 1.5;
}

.footer__desc li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__desc li {
    height: 30px;
    position: relative;
}

.footer__desc li::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #D5D5E0;
}

.footer__desc li + li {
    margin-top: 6px;
}

.footer__social li::before {
    width: calc(100% - 34px);
}

.footer__social img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-right: 10px;
}

.footer__desc-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1162px;
    padding: 0 20px;
    margin: 0 auto;
}

.footer__desc-container > * {
    width: 30%;
}

.footer__copy {
    text-align: center;
    padding: 1px 0;
    background: #383838;
    color: #9E9E9E;
}

.footer__copy p {
    color: #9E9E9E;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .header {
        font-size: 20px;
        padding: 15px;
        position: relative;
    }

    .header-logo {
        top: 10px;
        left: 10px;
    }

    .header-logo-image {
        width: 30px;
        height: 30px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 200px;
        height: 100%;
        background: rgba(20, 20, 20, 0.95);
        flex-direction: column;
        padding: 20px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav.active {
        display: flex;
        transform: translateX(0);
    }

    .nav a {
        padding: 10px;
        font-size: 14px;
        color: #d4c2a8;
        border-bottom: 1px solid #a19079;
    }

    .nav a:hover {
        background: #a19079;
        color: #fff;
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #d4c2a8;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .level-container {
        gap: 20px;
        padding: 15px;
    }

    .level {
        width: 180px;
        padding: 20px;
    }

    h1 {
        font-size: 1.8em;
        margin: 20px 0;
    }

    .intro, .outro {
        margin: 15px;
        padding: 15px;
    }

    .footer__desc-container {
        flex-direction: column;
        padding: 15px;
    }

    .footer__desc-container > * {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer h4 {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .footer__desc li a {
        font-size: 12px;
    }

    .footer__social img {
        width: 20px;
        height: 20px;
    }

    .footer__copy {
        font-size: 12px;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .header {
        font-size: 18px;
        padding: 10px;
    }

    .header-logo-image {
        width: 25px;
        height: 25px;
    }

    .nav {
        width: 160px;
    }

    .nav a {
        font-size: 12px;
        padding: 8px;
    }

    .hamburger {
        width: 25px;
        height: 18px;
    }

    .hamburger span {
        height: 2px;
        margin-bottom: 4px;
    }

    .level-container {
        gap: 15px;
        padding: 10px;
    }

    .level {
        width: 160px;
        padding: 15px;
    }

    h1 {
        font-size: 1.6em;
    }

    .intro, .outro {
        margin: 10px;
        padding: 10px;
    }

    .footer h4 {
        font-size: 14px;
    }

    .footer__desc li a {
        font-size: 11px;
    }

    .footer__copy {
        font-size: 10px;
    }
}