@import url('https://fonts.googleapis.com/css2?family=Nova+Flat&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background: #262e39;
    color: #fff;
}

::selection {
    background: #1e252e;
    color: #fff;
}

::-moz-selection {
    background: #1e252e;
    color: #fff;
}

html.sidebar-open,
body.sidebar-open {
    overflow: hidden;
    height: 100%;
}

.navbar {
    background-color: #1e252e;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 1.2rem 1rem 1rem;
    position: relative;
    z-index: 3;
}

.logo {
    flex: 1;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
    margin-right: 50px;
    line-height: 1.4;
}

.logo span {
    color: #E8A386;
    font-weight: 800;
}

.logo a {
    color: #fff;
    text-decoration: none;
}

.logo a span {
    color: #E8A386;
    text-decoration: none;
}

.menu-toggle {
    all: unset;
    box-sizing: border-box;
    display: block;
    width: 35px;
    height: 24px;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:active,
.menu-toggle:focus-visible {
    outline: none;
    background: transparent !important;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: top .3s ease, transform .3s ease, opacity .3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

.side-menu {
    position: fixed;
    left: -330px;
    width: 330px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    top: 0;
    bottom: 0;
    background-color: #262e39;
    color: #fff;
    padding: 100px 0 40px;
    transition: left .35s ease;
    z-index: 2;
    line-height: 1.5;
}

@media (max-width: 349px) {
    .side-menu {
        left: -250px;
        width: 250px;
    }
}

.side-menu::-webkit-scrollbar {
    display: none;
}

.side-menu {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.side-menu.open {
    left: 0;
}

#sideMenu.side-menu .side-menu-top {
    list-style: none;
    margin: 0;
    padding: 0 0 .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

#sideMenu.side-menu .side-menu-top li {
    padding: 0;
}

#sideMenu.side-menu .side-menu-top li a {
    display: block;
    padding: 1rem 1.25rem;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
}

#sideMenu.side-menu .side-menu-top li a:hover,
#sideMenu.side-menu .side-menu-top li a:focus {
    background: rgba(255, 255, 255, .05);
}

#sideMenu.side-menu .accordion {
    padding-top: .5rem;
}

#sideMenu.side-menu button.accordion-toggle {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}

#sideMenu.side-menu button.accordion-toggle:hover,
#sideMenu.side-menu button.accordion-toggle:focus {
    background: rgba(255, 255, 255, .05);
    outline: none;
}

#sideMenu.side-menu .chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #E8A386;
    border-bottom: 2px solid #E8A386;
    transform: rotate(45deg);
    transition: transform .3s ease;
    flex-shrink: 0;
}

#sideMenu.side-menu button.accordion-toggle[aria-expanded="true"] .chevron {
    transform: rotate(-135deg);
}

#sideMenu.side-menu .accordion-panel {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: rgba(0, 0, 0, .15);
}

#sideMenu.side-menu .accordion-panel li {
    padding: 0;
}

#sideMenu.side-menu .accordion-panel li a {
    display: block;
    padding: .85rem 1.25rem .85rem 2rem;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-family: Arial, sans-serif;
}

#sideMenu.side-menu .accordion-panel li a:hover,
#sideMenu.side-menu .accordion-panel li a:focus {
    background: rgba(255, 255, 255, .05);
    color: #E8A386 !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 1;
}

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

span.hb {
    background: #fff;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 25px 20px 20px;
    border-top: 1px solid #000;
}

.footer-left,
.footer-right {
    display: flex;
    gap: 20px;
}

@media (max-width: 700px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-right {
        display: block;
        text-align: center;
    }

    .footer-left a,
    .footer-right a {
        display: block;
        margin: 5px 0;
    }
}

.footer-right {
    margin-top: 2px;
}

.footer-links a {
    color: #fff;
    background-image: linear-gradient(#28a745, #28a745);
    background-size: 0 2px;
    background-position-y: 100%;
    background-position-x: 0;
    background-repeat: no-repeat;
    transition: background-size .4s ease-in-out;
    text-decoration: none;
    padding-bottom: 5px;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #28a745;
    background-size: 100% 1px;
}

.tools-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.tools-container h1 {
    margin-bottom: 10px;
}

.tools-intro {
    margin-bottom: 30px;
    color: #fff;
}

.tools-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tools-list li {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tools-list li:hover {
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.tools-list a {
    display: block;
    padding: 16px 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.tools-list a::after {
    content: "\2192";
    float: right;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
}

.tools-list li:hover a::after {
    opacity: 1;
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .tools-list {
        grid-template-columns: 1fr;
    }
}

.nav-ext-link {
    padding: .6rem 1.2rem;
    border-top: 1px solid #DBDBD6;
    border-bottom: 1px solid #DBDBD6;
    margin-bottom: .4rem;
}

.nav-ext-link a {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: .97rem;
    text-decoration: none;
    padding: .55rem .4rem;
    border-radius: 8px;
    transition: background .2s, color .2s;
}

.nav-ext-link a:hover {
    background: #EDEDEA;
    color: #C1502E;
}