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

html {
scroll-behavior: smooth;
}

body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Ubuntu, sans-serif;
background: #000;
color: #E6E6E6;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}



.container {
width: 100%;
max-width: 1100px;
margin: 0 auto;
padding: 0 24px;
}



.topbar {
width: 100%;
padding: 22px 0;
border-bottom: 1px solid rgba(255,255,255,0.08);
background: #020202;
}

.header-simple {
display: flex;
align-items: center;
justify-content: space-between;
}

.brand {
font-size: 20px;
font-weight: 800;
color: white;
text-decoration: none;
letter-spacing: 0;
}

.header-nav {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-end;
gap: 8px 16px;
}

.header-link {
font-size: 14px;
font-weight: 700;
color: #B3B3B3;
text-decoration: none;
transition: color .2s ease;
}

.header-link:hover {
color: white;
}



.legal-main {
padding: 72px 0 100px 0;
}




.legal-title {
font-size: 42px;
font-weight: 850;
line-height: 1.05;
margin-bottom: 10px;
color: white;
}

.legal-updated {
color: #9CA3AF;
margin-bottom: 40px;
font-size: 14px;
}




h2 {
font-size: 26px;
margin-top: 48px;
margin-bottom: 14px;
font-weight: 600;
color: white;
}

h3 {
font-size: 18px;
margin-top: 24px;
margin-bottom: 10px;
font-weight: 600;
color: #F3F4F6;
}




p {
margin-bottom: 16px;
color: #D1D5DB;
font-size: 16px;
}

.legal-intro {
font-size: 16px;
margin-bottom: 28px;
}




.legal-list {
margin: 16px 0 24px 20px;
}

.legal-list li {
margin-bottom: 10px;
color: #D1D5DB;
}




a {
color: #9CFFC7;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}



.footer {
border-top: 1px solid rgba(255,255,255,0.08);
margin-top: 80px;
padding-top: 60px;
background: #020202;
}

.footer-grid {
display: grid;
grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(130px, 1fr));
gap: 40px;
}

.footer-logo {
font-size: 20px;
font-weight: 700;
margin-bottom: 10px;
}

.footer-brand p {
color: #9CA3AF;
font-size: 14px;
max-width: 300px;
}

.footer-links h3 {
font-size: 15px;
margin-bottom: 12px;
color: white;
}

.footer-links a {
display: block;
color: #9CA3AF;
font-size: 14px;
margin-bottom: 8px;
transition: color .2s ease;
}

.footer-links a:hover {
color: white;
}

:focus-visible {
outline: 2px solid #9CFFC7;
outline-offset: 3px;
}

.footer-bottom {
margin-top: 50px;
padding: 20px 0;
border-top: 1px solid rgba(255,255,255,0.06);
text-align: center;
}

.footer-bottom p {
font-size: 13px;
color: #9CA3AF;
}




@media (max-width: 900px) {

.footer-grid {
grid-template-columns: 1fr 1fr;
gap: 30px;
}

}

@media (max-width: 600px) {

.legal-title {
font-size: 32px;
}

.container {
padding: 0 20px;
}

.footer-grid {
grid-template-columns: 1fr;
}

.header-simple {
flex-direction: column;
gap: 10px;
align-items: flex-start;
}

.header-nav {
justify-content: flex-start;
}

}
