/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: outside none none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: none;
}

a {
    cursor: pointer;
    text-decoration: none !important;
    color: inherit;
}

a.link {
    color: var(--cms-url-color);
    font-weight: 600;
}

button {
    cursor: pointer;
    font-family: inherit;
    font-weight: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    clear: both;
}

a:hover {}

a.no_hover:hover {
    color: inherit;
}

textarea:focus,
input:focus,
button:focus {
    border: 1px solid var(--cms-purple-text);
    transition: all 0.5s ease;
}

:focus {
    outline: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-button {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #33333300;
    border: thin solid #33333300;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #28292e;
    border: thin solid #33333300;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #28292e;
}

.waiting_background {
    min-height: 60px;
}

/* Font Faces */
@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-Bold.woff2) format('woff2'),
        url(../fonts/NotoSans-Bold.woff) format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-ExtraBold.woff2) format('woff2'),
        url(../fonts/NotoSans-ExtraBold.woff) format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-Light.woff2) format('woff2'),
        url(../fonts/NotoSans-Light.woff) format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-SemiBold.woff2) format('woff2'),
        url(../fonts/NotoSans-SemiBold.woff) format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-Regular.woff2) format('woff2'),
        url(../fonts/NotoSans-Regular.woff) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-Medium.woff2) format('woff2'),
        url(../fonts/NotoSans-Medium.woff) format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --cms-black-1: #121214;
    --cms-black-2: #202024;
    --cms-black-3: #2E2E2E;
    --cms-black-4: #3B3B3B;
    --cms-black-6: #1D1D21;
    --cms-black-7: #080808;
    --cms-black-8: #1A1A1A;
    --cms-black-9: #2D2D32;
    --cms-black-10: #999999;
    --cms-black-9-highlight: #3c3c43;
    --cms-black-4-highlight: #575757;
    --cms-black-5: #333333;
    --cms-grey-1: #D4D4D4;
    --cms-grey-1-highlight: #F5F5F5;
    --cms-grey-text: #080808;
    --cms-grey-2: #999999;
    --cms-background: #f6f6f6;
    --cms-menu-background: #5266d8d4;
    --cms-module-background: #5266D8;
    --cms-module-background-hard: #121d40;
    --cms-border-color: #c7c7c7;
    --cms-text: #4F4F4F;
    --cms-highlight-text: #000000;
    --cms-url-color: #8DA1FC;
    --cms-purple-text: #5865F2;
    --black-text-color: #333333;
    --purple-color-2: #222F5C;
    --purple-color-2-highlight: #4A5693;
    --purple-color-3: #464A8F;
    --purple-color-4: #151D35;
    --green-color: #2ecc71;
    --green-dark-color: #16a085;
    --yellow-color: #fde339;
    --red-color: #F57976;
    --white-color: #ffffff;
    --box-shadow: 0px 0px 5px #00000029;
    --background-trans: #0000007a;
}

/* Document Page Styles */
body {
    background-color: var(--cms-black-1);
    color: var(--white-color);
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.doc-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.doc-header {
    background-color: var(--cms-black-2);
    border-bottom: 1px solid var(--cms-black-3);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--box-shadow);
}

.doc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-logo img{
    height: 30px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cms-purple-text);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
    letter-spacing: -0.5px;
}

.doc-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--cms-url-color);
}

/* Main Content */
.doc-main {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.doc-content {
    max-width: 800px;
    width: 100%;
}

/* Title Section */
.doc-title-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--cms-black-3);
}

.doc-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.doc-update {
    font-size: 16px;
    color: var(--cms-grey-1);
    font-weight: 500;
}

/* Introduction */
.doc-intro {
    background-color: var(--cms-black-2);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid var(--cms-purple-text);
}

.doc-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-color);
    margin: 0;
}

/* Sections */
.doc-sections {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.doc-section {
    background-color: var(--cms-black-2);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--cms-black-3);
    transition: all 0.3s ease;
}

.doc-section:hover {
    border-color: var(--cms-purple-text);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--cms-purple-text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cms-black-3);
}

.doc-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--white-color);
    margin-bottom: 15px;
}

.doc-section p:last-child {
    margin-bottom: 0;
}

.section-list {
    margin: 20px 0;
    padding-left: 0;
}

.section-list li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--white-color);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    list-style: none;
}

.section-list li::before {
    content: "•";
    color: var(--cms-purple-text);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.section-list li strong {
    color: var(--cms-url-color);
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background-color: var(--cms-black-3);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: var(--cms-purple-text);
    font-weight: 600;
    margin-right: 10px;
}

.contact-link {
    color: var(--cms-url-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--white-color);
    text-decoration: underline !important;
}

/* Footer */
.doc-footer {
    background-color: var(--cms-black-2);
    border-top: 1px solid var(--cms-black-3);
    padding: 25px 30px;
    text-align: center;
}

.footer-content p {
    color: var(--cms-grey-1);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .doc-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .doc-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .doc-main {
        padding: 20px 15px;
    }

    .doc-title {
        font-size: 28px;
    }

    .doc-intro,
    .doc-section {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .doc-footer {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .doc-title {
        font-size: 24px;
    }

    .doc-intro,
    .doc-section {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 18px;
    }

    .nav-link {
        font-size: 12px;
    }

    .doc-nav {
        gap: 15px;
    }
}