body {
    background-color: #1c1408;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url(../images/background-pattern.svg);
    background-repeat: repeat;
    background-size: contain;
}

footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 40px 20px;
    background: #150f04;
    border-top: 1px solid #ca9b60;
}

h1 {
    font-size: 40px;
    margin-top: 1.2rem;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 46px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}
h2, h3, h4, p{
    color: #fff;
}

span {
    color: #fff;
}

li {
    color: #fff;
}

ul, ol {
    margin: 30px 0;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin: 0.3em 0;
}

.toc li a {
    text-decoration: none;
    font-weight: bold;
    color: #FAE099;
    font-size: 17px;
}

.breadcrumb-url {
    text-decoration: none;
    color: #FAE099;
}

.table-overflow {
    overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0;
}

table, th, td {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

th, td {
  padding: 8px;
  text-align: left;
  color: #fff;
}

th {
  background-color: rgba(255, 255, 255, 0.1);
}

td {
  background-color: rgba(255, 255, 255, 0.05);
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100%;
    height: max-content;
    background-color: #150f04;
    padding: 60px 0;
    box-shadow: 2px 0 2px rgba(0, 0, 0, .2);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.offcanvas-menu.active {
    transform: translateY(0);
}


.offcanvas-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}


.close-btn {
    position: absolute;
    top: 15px;
    left: 7px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.close-btn .material-icons {
    font-size: 30px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-container {
    height: 41px;
    display: flex;
    padding: 15px;
    align-items: center;
    position: relative;
    justify-content: space-between;
    background: #150f04;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.home-url {
    display: inline-block;
}

.home-url img {
    display: flex;
}

img {
    display: flex;
    margin: 0 auto;
    max-width: 100%;
}

.custom-lists-container {
    display: flex;
    gap: 30px;
}

.green-li li::marker {
    color: #00FF00;
}

.red-li li::marker {
    color: #FF0000;
}


.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-bars {
    height: 30px;
    color: #fff;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.hamburger-bars .material-icons {
    font-size: 32px;
}

.navigation a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.button-container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.auth-button {
    color: #fae39e;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #d5b38d;
    padding: 10px 16px;
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.auth-button:hover {
    box-shadow: inset 0 -10px 6px rgba(255, 255, 255, 0.2);
}

.register-button {
    color: #070707;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(180deg, #ad9e70 0, #baaa79 50%, #fae4a2 100%);
    text-decoration: none;
    border: 1px solid #d5b38d;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.register-button:hover {
    background: linear-gradient(360deg, #ad9e70 0, #baaa79 50%, #fae4a2 100%);
}


.banner-container {
    width: 100%;
    height: 18vh;
    background-image: url(../images/category-banner.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 70px;
}


.banner-title {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}


.url {
    text-decoration: none;
}

.main-content {
    padding: 32px 300px;
}


.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.footer-nav a:hover {
    color: #908c84;
}

.footer-images {
    display: flex;
    gap: 15px;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.pc-banner {
    max-width: 100%;
}

.mob-banner {
    display: none;
}


@media (max-width: 1400px) {
    .nav-container {
        gap: 10px;
    }
    .navigation {
        gap: 10px;
    }
    .navigation a {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .navigation {
        display: none;
    }
    .main-content {
        padding: 32px 150px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px;
    }
    .register-button {
        display: none;
    }
    .logo-container img {
        width: 150px;
    }
    .auth-button {
        padding: 7px 15px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
    .main-content {
        padding: 32px;
    }

    .pc-banner {
        display: none;
    }

    .mob-banner {
        display: flex;
        max-width: 100%;
        margin: 0 auto;
    }
    .custom-lists-container {
        flex-direction: column;
        gap: 0;
    }
}



