* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
}

.home-page {
    --primary: #e85d8f;
    --primary-dark: #cf4779;
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.82);
    --border: rgba(255, 255, 255, 0.22);
    --surface: rgba(35, 20, 28, 0.58);
    --surface-soft: rgba(49, 27, 37, 0.55);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);

    color: var(--text);
    background: url("/gambar/bg.jpg") center center / cover no-repeat fixed;
}

.home-page .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.home-page .navbar {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 7%;
    background: rgba(25, 14, 20, 0.55);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.home-page .brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: white;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
}

.home-page .brand-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    max-width: 22px;
    min-height: 22px;
    max-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    overflow: hidden;
    border-radius: 5px;
    background: transparent;
}

.home-page .brand-icon img {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    display: block;
    object-fit: contain;
    object-position: center;
}

.home-page .hero {
    width: 100%;
    max-width: 1180px;
    margin: auto;
    padding: 125px 30px 70px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
}

.home-page .hero-content {
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.home-page .badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(35, 20, 28, 0.60);
    color: #ffb3cc;
    font-size: 13px;
    font-weight: 700;
    text-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-page .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.home-page h1 {
    max-width: 680px;
    margin: 0 0 24px;
    font-size: clamp(44px, 7vw, 78px);
    line-height: 1.02;
    letter-spacing: -4px;
    font-weight: 800;
}

.home-page h1 span {
    color: #ff8fb5;
}

.home-page .description {
    max-width: 620px;
    margin-bottom: 34px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.8;
}

.home-page .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.home-page .button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-shadow: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.home-page .button:hover {
    transform: translateY(-2px);
}

.home-page .button-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 24px rgba(232, 93, 143, 0.24);
}

.home-page .button-primary:hover {
    background: var(--primary-dark);
}

.home-page .preview {
    position: relative;
}

.home-page .api-card {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-page .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.home-page .window-buttons {
    display: flex;
    gap: 7px;
}

.home-page .window-buttons span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.home-page .window-buttons span:nth-child(2) {
    background: #c87595;
}

.home-page .window-buttons span:nth-child(3) {
    background: var(--primary);
}

.home-page .status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8ee5ae;
    font-size: 12px;
    font-weight: 700;
}

.home-page .status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #62b987;
}

.home-page .endpoint {
    margin-top: 18px;
    padding: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.home-page .endpoint-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.home-page .method {
    padding: 5px 8px;
    border-radius: 7px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 800;
}

.home-page .endpoint-path {
    color: white;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 600;
}

.home-page .code {
    padding: 17px;
    overflow: hidden;
    background: rgba(20, 12, 16, 0.80);
    color: #f8dce7;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    line-height: 1.8;
}

.home-page .code-key {
    color: #f49abb;
}

.home-page .code-value {
    color: white;
}

.home-page .website-info {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.home-page .info-card {
    padding: 20px;
    background: rgba(35, 20, 28, 0.58);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-page .info-label {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
}

.home-page .developer-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.home-page .developer-item {
    min-width: 0;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(49, 27, 37, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.home-page .developer-item:hover {
    transform: translateY(-3px);
    background: rgba(60, 31, 44, 0.68);
}

.home-page .developer-avatar {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border: 3px solid rgba(232, 93, 143, 0.85);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.home-page .developer-name {
    width: 100%;
    margin-top: 11px;
    color: white;
    font-size: 14px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.home-page .developer-role {
    margin-top: 5px;
    color: #ff9abc;
    font-size: 11px;
    font-weight: 600;
}

.home-page .request-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-page .request-number {
    margin-top: 12px;
    color: white;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -3px;
}

.home-page .request-text {
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.docs-page {
    --primary: #e85d8f;
    --primary-hover: #d84e80;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.72);
    --background: #171216;
    --surface: rgba(28, 22, 26, 0.82);
    --surface-hover: rgba(39, 29, 35, 0.90);
    --border: rgba(255, 255, 255, 0.12);
    --radius: 12px;

    color: var(--text);
    background: var(--background);
    position: relative;
}

.docs-page::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/gambar/bg2.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.docs-page > * {
    position: relative;
    z-index: 1;
}

.docs-page .navbar {
    width: 100%;
    height: 58px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(20, 15, 19, 0.72);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.docs-page .brand {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.docs-page .brand-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    max-width: 22px;
    min-height: 22px;
    max-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    overflow: hidden;
    border-radius: 5px;
    background: transparent;
}

.docs-page .brand-icon img {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    display: block;
    object-fit: contain;
    object-position: center;
}

.docs-page .home {
    padding: 8px 13px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.docs-page .home:hover {
    color: white;
    border-color: rgba(232, 93, 143, 0.55);
    background: rgba(232, 93, 143, 0.16);
}

.docs-page .docs-header {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 55px 24px 30px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.65);
}

.docs-page .docs-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    color: #ff9fc1;
    font-size: 12px;
    font-weight: 600;
}

.docs-page .docs-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.docs-page .docs-header h1 {
    max-width: 700px;
    margin: 0;
    color: white;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -2px;
}

.docs-page .docs-header p {
    max-width: 620px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.75;
}

.docs-page .docs-info {
    max-width: 1100px;
    margin: 0 auto 25px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.docs-page .info-item {
    padding: 7px 11px;
    color: var(--text-secondary);
    background: rgba(24, 18, 22, 0.72);
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 11px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.docs-page .info-item strong {
    color: white;
    font-weight: 600;
}

.docs-page #swagger-ui {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 0 24px 80px;
}

.docs-page .swagger-ui {
    font-family: "Inter", sans-serif;
}

.docs-page .swagger-ui .topbar,
.docs-page .swagger-ui .information-container {
    display: none;
}

.docs-page .swagger-ui .wrapper {
    max-width: none;
    padding: 0;
}

.docs-page .swagger-ui .scheme-container {
    margin: 0 0 25px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.docs-page .swagger-ui .scheme-container label {
    color: var(--text-secondary);
    font-size: 12px;
}

.docs-page .swagger-ui .scheme-container select {
    color: white;
    background: rgba(33, 25, 30, 0.88);
    border: 1px solid var(--border);
    border-radius: 7px;
}

.docs-page .swagger-ui .filter-container {
    margin: 0 0 25px;
    padding: 0;
}

.docs-page .swagger-ui .filter-container .operation-filter-input {
    width: 100%;
    padding: 11px 14px;
    color: white;
    background: rgba(24, 18, 22, 0.82);
    border: 1px solid var(--border);
    border-radius: 9px;
    font-family: "Inter", sans-serif;
    outline: none;
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.docs-page .swagger-ui .filter-container .operation-filter-input:focus {
    border-color: rgba(232, 93, 143, 0.65);
}

.docs-page .swagger-ui .opblock-tag-section {
    margin-bottom: 28px;
}

.docs-page .swagger-ui .opblock-tag {
    margin: 0 0 12px;
    padding: 10px 2px;
    color: white;
    border-bottom: 1px solid var(--border);
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.docs-page .swagger-ui .opblock-tag small {
    color: var(--text-secondary);
    font-size: 11px;
}

.docs-page .swagger-ui .opblock-tag svg {
    fill: var(--text-secondary);
}

.docs-page .swagger-ui .opblock {
    margin: 0 0 8px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 9px;
    box-shadow: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.docs-page .swagger-ui .opblock:hover {
    background: var(--surface-hover);
    border-color: rgba(255, 255, 255, 0.18);
}

.docs-page .swagger-ui .opblock.opblock-get,
.docs-page .swagger-ui .opblock.opblock-post,
.docs-page .swagger-ui .opblock.opblock-put,
.docs-page .swagger-ui .opblock.opblock-delete,
.docs-page .swagger-ui .opblock.opblock-patch {
    background: var(--surface);
    border-color: var(--border);
}

.docs-page .swagger-ui .opblock .opblock-summary {
    min-height: 52px;
    padding: 7px 10px;
}

.docs-page .swagger-ui .opblock .opblock-summary-method {
    min-width: 68px;
    padding: 7px 8px;
    border-radius: 6px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    box-shadow: none;
}

.docs-page .swagger-ui .opblock.opblock-get .opblock-summary-method {
    background: #d95989;
}

.docs-page .swagger-ui .opblock.opblock-post .opblock-summary-method {
    background: #bc557c;
}

.docs-page .swagger-ui .opblock.opblock-put .opblock-summary-method {
    background: #a75b78;
}

.docs-page .swagger-ui .opblock.opblock-delete .opblock-summary-method {
    background: #924b68;
}

.docs-page .swagger-ui .opblock.opblock-patch .opblock-summary-method {
    background: #c16a8b;
}

.docs-page .swagger-ui .opblock .opblock-summary-path,
.docs-page .swagger-ui .opblock .opblock-summary-path a {
    color: white;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 500;
}

.docs-page .swagger-ui .opblock .opblock-summary-description {
    color: var(--text-secondary);
    font-size: 12px;
}

.docs-page .swagger-ui .opblock-body {
    border-top: 1px solid var(--border);
}

.docs-page .swagger-ui .opblock-section-header {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    border-bottom: 1px solid var(--border);
}

.docs-page .swagger-ui .opblock-section-header h4,
.docs-page .swagger-ui .opblock-section-header label,
.docs-page .swagger-ui .opblock-description-wrapper p,
.docs-page .swagger-ui .opblock-external-docs-wrapper p,
.docs-page .swagger-ui .opblock-title_normal p,
.docs-page .swagger-ui .parameter__name,
.docs-page .swagger-ui .parameter__type,
.docs-page .swagger-ui .parameter__deprecated {
    color: white;
}

.docs-page .swagger-ui .parameter__type,
.docs-page .swagger-ui .parameter__in {
    color: var(--text-secondary);
}

.docs-page .swagger-ui .responses-wrapper .responses-inner > h4,
.docs-page .swagger-ui .responses-wrapper .responses-inner > table.responses-table:not(.live-responses-table) {
    display: none !important;
}

.docs-page .swagger-ui .responses-wrapper .live-responses-table {
    display: table !important;
}

.docs-page .swagger-ui .response-col_status,
.docs-page .swagger-ui .response-col_description,
.docs-page .swagger-ui .response-col_links,
.docs-page .swagger-ui .responses-inner h4,
.docs-page .swagger-ui .responses-inner h5,
.docs-page .swagger-ui .response-control-media-type__accept-message {
    color: white;
}

.docs-page .swagger-ui .btn {
    color: white;
    border-radius: 7px;
    box-shadow: none;
    font-family: "Inter", sans-serif;
}

.docs-page .swagger-ui .btn.execute {
    background: var(--primary);
    border-color: var(--primary);
}

.docs-page .swagger-ui .btn.execute:hover {
    background: var(--primary-hover);
}

.docs-page .swagger-ui input[type=text],
.docs-page .swagger-ui input[type=password],
.docs-page .swagger-ui input[type=search],
.docs-page .swagger-ui input[type=email],
.docs-page .swagger-ui textarea,
.docs-page .swagger-ui select {
    color: white;
    background: rgba(33, 25, 30, 0.90);
    border: 1px solid var(--border);
    border-radius: 7px;
    outline: none;
}

.docs-page .swagger-ui input:focus,
.docs-page .swagger-ui textarea:focus,
.docs-page .swagger-ui select:focus {
    border-color: rgba(232, 93, 143, 0.65);
}

.docs-page .swagger-ui input::placeholder,
.docs-page .swagger-ui textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.docs-page .swagger-ui .model-box {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.docs-page .swagger-ui .model,
.docs-page .swagger-ui .model-title,
.docs-page .swagger-ui .prop-type,
.docs-page .swagger-ui .prop-format {
    color: white;
}

.docs-page .swagger-ui section.models {
    margin: 25px 0 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.docs-page .swagger-ui section.models h4,
.docs-page .swagger-ui section.models h4 span {
    color: white;
}

.docs-page .swagger-ui .highlight-code,
.docs-page .swagger-ui .microlight {
    background: rgba(23, 18, 22, 0.94) !important;
}

.docs-page .swagger-ui .highlight-code pre,
.docs-page .swagger-ui .microlight {
    font-family: "JetBrains Mono", monospace !important;
}

.docs-page .chibi-loader {
    width: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docs-page .chibi-loader img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 14px;
}

@media (max-width: 850px) {
    .home-page {
        background-attachment: scroll;
    }

    .home-page .hero {
        grid-template-columns: 1fr;
        padding-top: 110px;
        gap: 50px;
    }

    .home-page .website-info {
        grid-template-columns: 1fr;
    }

    .home-page h1 {
        letter-spacing: -2.5px;
    }
}

@media (max-width: 768px) {
    .docs-page::before {
        width: 100vw;
        height: 100dvh;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .docs-page .navbar {
        height: 58px;
        padding: 0 16px;
    }

    .docs-page .docs-header {
        padding: 40px 18px 22px;
    }

    .docs-page .docs-header h1 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .docs-page .docs-header p {
        font-size: 13px;
    }

    .docs-page .docs-info {
        padding: 0 18px;
        margin-bottom: 20px;
    
