*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html
{
    scroll-behavior: smooth;
}
body
{
    min-height: 100vh;
    font-family: "Libre Baskerville", serif;
    background: #000;
    color: #fff;
}
.hero
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background: #ffd700;
    border-bottom: 1px solid #ff2400;
    z-index: 1000;
}
.nav-left
{
    display: flex;
    align-items: center;
}
.nav-right
{
    display: flex;
    gap: 20px;
}
.navigation
{
    display: flex;
    gap: 16px;
}
.navigation a,
.nav-right a
{
    display: inline-block;
    min-width: 180px;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    background: #305cde;
    border: 1px solid #2323ff;
    border-radius: 8px;
    transition: .2s;
    font-family: "Cinzel", serif;
}
.navigation a:hover,
.nav-right a:hover
{
    background: #66f6ff;
    color: #0b1f3a;
    border-color: #6ff66f;
}
.legal-page
{
    display:block;
    margin-top:70px;
    padding-bottom:50px;
}
.toc
{
    position:fixed;
    top:70px;
    bottom:50px;
    left:30px;
    width:260px;
    display:flex;
    flex-direction:column;
}
.toc h2
{
    flex:0 0 auto;
    margin-bottom:24px;
}
.toc nav
{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    min-height: 0;
    padding-right: 8px;
}
.toc a
{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 14px;
    border-radius:10px;
    text-decoration:none;
    color:white;
    transition:.25s;
}
.toc a:visited
{
    color:white;
}
.toc a:hover
{
    background:#1f1f1f;
    color:gold;
    transform:translateX(6px);
}
.toc a.active
{
    background:#305cde;
    color:white;
    border-left:5px solid gold;
    font-weight:bold;
}
.legal-document
{
    margin-left:320px;
    margin-right:60px;
}
.legal-document h1
{
    font-family: "Cinzel", serif;
    font-size: 3rem;
    margin-bottom: 10px;
}
.last-updated
{
    margin-bottom: 80px;
    opacity: .75;
}
section:last-child
{
    padding-bottom: 160px;
}
.legal-document section
{
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    scroll-margin-top: 40px;
    margin-bottom:80px;
}
.legal-document h2
{
    font-family: "Cinzel", serif;
    font-size: 2rem;
    margin-bottom: 24px;
}
.legal-document p
{
    line-height: 1.8;
    margin-bottom: 18px;
}
.legal-document ul
{
    padding-left: 28px;
    margin: 20px 0;
}
.legal-document li
{
    margin-bottom: 12px;
    line-height: 1.8;
}
.legal-document dt
{
    font-weight: bold;
    margin-top: 18px;
}
.legal-document dd
{
    margin-left: 20px;
    margin-top: 8px;
    margin-bottom: 12px;
}
.legal-document a
{
    display:inline-block;
    padding:8px 16px;
    margin-left:8px;
    text-decoration:none;
    border-radius:8px;
    background:#305cde;
    color:white;
    border:1px solid #2323ff;
    transition:.2s;
}
.legal-document a:hover
{
    background:#66f6ff;
    color:#0b1f3a;
    border-color:#6ff66f;
}
footer
{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b1b1b;
    border-top: 1px solid #333;
}
.menu-toggle
{
    display: none;
    width: 52px;
    height: 52px;
    cursor: pointer;
    background: #305cde;
    border: 1px solid #2323ff;
    border-radius: 8px;
}
.menu-toggle span
{
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: white;
    transition: .3s;
}
.menu-toggle.active span:nth-child(1)
{
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2)
{
    opacity: 0;
}
.menu-toggle.active span:nth-child(3)
{
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 1100px)
{
    .hero
    {
        min-height: 70px;
        height: auto;
        padding: 10px 16px;
        flex-wrap: wrap;
    }
    .nav-left
    {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
    }
    .menu-toggle
    {
        display: block;
        margin: 0;
        flex-shrink: 0;
    }
    .nav-right
    {
        display: flex;
        gap: 10px;
        margin-left: auto;
        flex-shrink: 0;
    }
    .nav-right a
    {
        min-width: fit-content;
        padding: 10px 12px;
    }
    .navigation
    {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        transition: max-height .3s ease, opacity .3s ease;
    }
    .navigation.show
    {
        max-height: 600px;
        opacity: 1;
        margin-top: 10px;
    }
    .navigation a
    {
        width: 100%;
        min-width: unset;
    }
    main
    {
        margin-top: 90px;
    }
    .toc
    {
        display: none;
    }
    .legal-document
    {
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 600px)
{
    .legal-page
    {
        padding: 20px;
    }
    .legal-document h1
    {
        font-size: 2.2rem;
    }
    .legal-document h2
    {
        font-size: 1.5rem;
    }
}