/* Botlor — Global Styles (Dark + Gold) */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    background: #0d0d0d;
    color: #e8e8e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: #d4a438;
    text-decoration: none;
    transition: color 0.15s;
}
a:hover {
    color: #e8b84a;
}

img {
    max-width: 100%;
    height: auto;
}

#site-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Footer */
.site-footer {
    padding: 24px 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    margin-top: auto;
}
.site-footer .footer-inner {
    max-width: 960px;
    margin: 0 auto;
}
.site-footer .footer-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.site-footer .footer-links a {
    color: #777;
    font-size: 13px;
}
.site-footer .footer-links a:hover {
    color: #d4a438;
}
.site-footer .footer-company {
    font-size: 13px;
    color: #555;
}
.site-footer .footer-company a {
    color: #777;
}

/* Page template base */
.page-wrap {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
}
.page-wrap h1 {
    font-size: 28px;
    color: #e8e8e8;
    margin-bottom: 20px;
}
.page-wrap h2 {
    font-size: 20px;
    color: #d4a438;
    margin: 24px 0 12px;
}
.page-wrap p {
    color: #bbb;
    margin-bottom: 16px;
    line-height: 1.7;
}
.page-wrap ul, .page-wrap ol {
    color: #bbb;
    margin-bottom: 16px;
    padding-left: 24px;
}
.page-wrap li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Selection */
::selection {
    background: rgba(212, 164, 56, 0.3);
    color: #e8e8e8;
}
