@font-face {
    font-family: "MinecraftDefault";
    src: url(/static/fonts/MinecraftDefault-Regular.ttf);
}
@font-face {
    font-family: "MinecraftDefault";
    font-weight: bold;
    src: url(/static/fonts/MinecraftDefault-Bold.ttf);
}
@font-face {
    font-family: "MinecraftDefault";
    font-style: italic;
    src: url(/static/fonts/MinecraftDefault-Italic.ttf);
}
@font-face {
    font-family: "MinecraftDefault";
    font-weight: bold;
    font-style: italic;
    src: url(/static/fonts/MinecraftDefault-BoldItalic.ttf);
}
@font-face {
    font-family: "Roboto Mono";
    src: url(/static/fonts/RobotoMono-VariableFont_wght.ttf);
}
@font-face {
    font-family: "Roboto Mono";
    font-style: italic;
    src: url(/static/fonts/RobotoMono-Italic-VariableFont_wght.ttf);
}

body {
    margin: revert;
    background-color: #0b1c22;
    color: #e9f8f2;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

body.world {
    background-color: #fff;
    color: #000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #102b33;
    padding: 1rem 2rem;
}

.nav-links a, .login a, .nav-btn {
    color: white;
    margin: 0 0.75rem;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-links a:hover, .login a:hover, .nav-btn:hover {
    color: #d4fff3;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.4rem;
    color: #d4fff3;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

main {
    margin-top: 10vh;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(70deg, #5fe7c1, #3dc9b0, #39c471);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 3px 0px rgba(0,0,0,0.4);
    display: inline-block;
}

.subtitle {
    margin-top: 1rem;
    color: #c8f4e4;
}

.plaintext {
    color: #c8f4e4;
}

code {
    display: inline-block;
    background: #031014;
    border-radius: 4px;
    color: #f7fffc;
    font-family: "Roboto Mono", Courier, monospace;
    font-size: 0.9em;
    padding-block: 2px;
    padding-inline: 6px;

    &.code-block {
        outline: solid var(--accent) 2px;
        margin: 20px;
        max-width: 500px;
        overflow-x: scroll;
        padding-block: 5px;
        padding-inline: 20px;
        border-radius: 10px;
        white-space: pre-wrap;
        text-wrap: nowrap;
    }
}

.buttons {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.button {
    cursor: pointer;
    background-color: #2fa08c;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 0 #1b6359;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.button:hover:not(.pressed):not(.error) {
    background: #3dc9b0;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1b6359;
}

.button.pressed {
    background: #217373;
    color: white;
    box-shadow: 0 4px 0 #10363d;
    cursor: not-allowed;
}

.button.error {
    background: #631b1b;
    color: #f8e2e2;
    box-shadow: 0 4px 0 #240303;
    cursor: not-allowed;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.bot-card {
    background: #031014;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.bot-image img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.bot-image img:hover {
    transform: scale(1.05);
    filter: brightness(85%);
}

.world-info {
    margin-top: 0.5rem;
    text-decoration: none;
    font-weight: inherit;
    transition: color 0.2s ease;
}

.world-name a {
    font-family: 'MinecraftDefault';
    display: inline;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: #ccc;
    text-decoration: none;
    font-weight: inherit;
    cursor: pointer;
    transition: color 0.2s ease;   
}

.world-name a:hover {
    display: inline;
    color: #83ccb6;
    text-decoration: underline;
}

.owner a {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    gap: 0.2rem;
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    font-weight: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
}

.owner a:hover {
    color: #83ccb6;
    text-decoration: underline;
}

.owner-head {
    display: inline-block;
    vertical-align: middle;
    gap: 0.2rem;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    margin-right: 6px;
}

.status {
    margin-top: 0.5rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

.status.online {
    background: #3cfc4d;
    color: #000;
}

.status.offline {
    background: #fc3c3c;
    color: #fff;
}

.dropdown-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.headerlabel {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #d4fff3;
}

.world-uuid {
    width: 30%;
    height: 66px;
    background: #031014;
    color: #f7fffc;
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 1rem;
    border: 1px solid #21505d;
    font-family: "Roboto Mono", monospace;
    font-size: 0.95rem;
    caret-color: #f7fffc;
    line-height: 1.4;
    resize: none;
}

.world-uuid::placeholder {
  font-style: italic;
  color: rgba(200, 244, 228, 0.45);
}

.world-uuid:focus {
  outline: none;
  border-color: #3dc9b0;
  box-shadow: 0 0 0 3px rgba(61,201,176,0.06);
  transform: translateY(1px);
}

.world-input-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.world-suggestions {
    display: none;
    position: absolute;
    top: 88px;
    background: #031014;
    border: 1px solid #21505d;
    border-radius: 6px;
    width: 30%;
    max-height: 10rem;
    overflow-y: auto;
    padding: 10px 12px;
    z-index: 1000;
}

.world-suggestions .world-suggestion,
.world-suggestions .suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    color: #f7fffc;
    transition: background 0.2s, color 0.2s;
}

.world-suggestions .world-suggestion:hover,
.world-suggestions .suggestion-item:hover {
    background: #092630;
    color: #83ccb6;
}

.dropdown {
    background: #031014;
    color: #e9f8f2;
    border: 1px solid #21505d;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
    width: 220px;
}

.dropdown:hover {
    background: #092630;
    border-color: #2fa08c;
}

.dropdown:focus {
    outline: none;
    border-color: #3dc9b0;
    transform: translateY(2px);
}

.editor-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: #031014;
    color: #e9f8f2;
    transform: translateY(264px);
    transition: transform 0.3s ease;
    border-top: 1px solid #2fa08c;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    overflow: visible;
}

.editor-sidebar.expanded {
    transform: translateY(0);
}

.editor-sidebar.collapsed {
    transform: translateY(264px);
}


.editor-sidebar-handle {
    height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: linear-gradient(180deg, #05252c, #041a1f);
    color: #e9f8f2;
    border: 1px solid #2fa08c;
    border-bottom: none;
    cursor: pointer;
    user-select: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-left: 20px;
    margin-top: -52px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
}

.editor-sidebar-content {
    height: calc(100% - 16px);
    padding: 20px 24px;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    display: grid;
    overflow-y: auto;
    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0)
        );
}

.editor-sidebar-handle:hover {
    background: #06313a;
}

.editor-sidebar.expanded .editor-sidebar-handle {
    box-shadow: none;
    background: #06313a;
}

.editor-element {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: #041a1f;
    border: 1px solid #2fa08c;
    border-radius: 8px;
    cursor: grab;
    user-select: none;
    transition: background 0.15s ease, transform 0.15s ease;
}
.editor-element.dragging {
    opacity: 0.8;
    pointer-events: none;
    position: fixed;
    z-index: 2000;
    cursor: grabbing;
}

.editor-element:hover {
    background: #06313a;
    transform: translateY(-1px);
}

.editor-element:active {
    cursor: grabbing;
}

.editor-element-title {
    font-size: 14px;
    font-weight: 600;
    color: #e9f8f2;
}

.editor-element-desc {
    font-size: 12px;
    color: #9fd8cc;
}

.editor-element.placed {
    position: absolute;
    background: #06313a;
    border-color: #2fa08c;
    cursor: default;
}

.editor-element.placed.dragging {
    position: fixed;
    background: #06313a;
    border-color: #2fa08c;
    cursor: grabbing;
    opacity: 0.8;
    pointer-events: none;
    z-index: 2000;
}

.editor-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(3, 16, 20, 0.0);
    backdrop-filter: blur(0px);

    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        background 0.25s ease,
        backdrop-filter 0.25s ease;

    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editor-menu-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    background: rgba(3, 16, 20, 0.6);
    backdrop-filter: blur(6px);
}

.editor-menu {
    width: 700px;
    height: 420px;

    color: #9fd8cc;
    background: #031014;
    border: 1px solid #2fa08c;
    border-radius: 14px;

    display: flex;
    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

    opacity: 0;
    transform: translateY(30px) scale(0.97);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.editor-menu-overlay:not(.hidden) .editor-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.editor-menu-tabs {
    width: 180px;
    background: #041a1f;
    border-right: 1px solid #2fa08c;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.editor-menu-tab {
    background: none;
    border: none;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}

.editor-menu-tab:hover {
    background: #06313a;
}

.editor-menu-tab.active {
    background: #06313a;
    color: #e9f8f2;
}

.editor-menu-content {
    color: #e9f8f2;
    flex: 1;
    padding: 20px 24px;
    overflow-y: auto;
}

.editor-menu-panel {
    display: none;
}

.editor-menu-panel.active {
    display: block;
}

.editor-menu-panel h3 {
    margin-top: 0;
    font-weight: 600;
}

.settings-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(3, 16, 20, 0);
    backdrop-filter: blur(0px);

    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        background 0.25s ease,
        backdrop-filter 0.25s ease;

    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-menu-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    background: rgba(3, 16, 20, 0.6);
    backdrop-filter: blur(6px);
}

.settings-menu {
    width: 420px;
    color: #9fd8cc;
    background: #031014;
    border: 1px solid #2fa08c;
    border-radius: 14px;

    padding: 24px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);

    opacity: 0;
    transform: translateY(16px) scale(0.98);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.settings-menu-overlay:not(.hidden) .settings-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.settings-menu h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.settings-section {
    margin-bottom: 16px;
}

.settings-section label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
}

.settings-section input,
.settings-section select {
    background: #041a1f;
    border: 1px solid #2fa08c;
    border-radius: 8px;
    padding: 8px 10px;
    color: #e9f8f2;
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-primary {
    background: #2fa08c;
    border: none;
    color: #031014;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #2fa08c;
    color: #e9f8f2;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.storage-container, .logs-container, .tokens-container {
    margin-bottom: 2rem;
    text-align: left;
}

.user-id-container {
    margin-bottom: 1.5rem;
}

#storage-textarea {
    width: 100%;
    min-height: 150px;
    background: #031014;
    color: #f7fffc;
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #21505d;
    font-family: "Roboto Mono", monospace;
    resize: vertical;
}

#user-id-input {
    width: 100%;
    max-width: 400px;
    margin-top: 0.8rem;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #21505d;
    background: #031014;
    color: #f7fffc;
    font-family: "Roboto Mono", monospace;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
}

#user-id-input:focus {
    border-color: #1abc9c;
    box-shadow: 0 0 5px #1abc9c33;
    background: #04171f;
}

.notif-container {
    text-align: left;
    margin-top: 1.5rem;
}

.notif-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
}

.notif-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2fa08c;
}

.bot-permissions-container {
    display: none;
    text-align: left;
    margin-top: 1.5rem;
}

.permission-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
}

.permission-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2fa08c;
}


button.generic, #save-storage-btn, #save-user-id-btn, #server-link-btn, #save-notifs-btn, #save-bot-perms-btn, #edit-world-page {
    margin-top: 8px;
    background: #2fa08c;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

button.generic.pressed, #save-storage-btn.pressed, #save-user-id-btn.pressed, #server-link-btn.pressed, #save-notifs-btn.pressed, #save-bot-perms-btn.pressed, #edit-world-page.pressed {
    background: #217373;
    cursor: not-allowed;
}

button.generic:hover, #save-storage-btn:hover, #save-user-id-btn:hover, #server-link-btn:hover, #save-notifs-btn:hover, #save-bot-perms-btn:hover, #edit-world-page:hover {
    background: #3dc9b0;
}

#edit-world-page {
    display: none;
}

.log-box {
    width: 100%;
    height: 150px;
    background: #031014;
    border-radius: 6px;
    padding: 10px;
    overflow-y: auto;
    font-family: monospace;
    white-space: pre-wrap;
    color: #f7fffc;
}

.token-spoiler {
    margin-top: 1rem;
}

.token-content {
    display: none;
    margin-top: 5px;
    align-items: center;
    gap: 10px;
}

.token-content code {
    background: #031014;
    padding: 2px 6px;
    border-radius: 4px;
}

.toggle-token-btn {
    cursor: pointer;
    background-color: #2fa08c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

.refresh-token-btn {
    cursor: pointer;
    background-color: #2fa08c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

.account-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: #001a11;
    color: #e9f8f2;
    border-radius: 8px;
    /*overflow: hidden;*/
}

.account-table th,
.account-table td {
    padding: 0.75rem 1rem;
    text-align: left;
}

.account-table thead {
    background-color: #102b33;
    font-weight: 600;
}

.account-table tbody tr:nth-child(even) {
    background-color: #0b1c22;
}

.account-table tbody tr:nth-child(odd) {
    background-color: #031014;
}

.account-table tbody tr[data-tip] {
    position: relative;
    /*cursor: pointer;*/
}

.account-table tbody tr[data-tip]:hover::after {
    opacity: 1;
}

.account-table tbody tr[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    left: 0;
    bottom: 100%;
    transform: translateY(-6px);
    background-color: #102b33;
    color: #d4fff3;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 100;
    font-size: 0.85rem;
    pointer-events: none;

    opacity: 0;
    transition: opacity 0.25s ease;
}

.status.available {
    color: #3cfc4d;
    font-weight: bold;
}

.status.unavailable {
    color: #fc3c3c;
    font-weight: bold;
}

.layout {
    display: flex;
    min-height: calc(100vh - 15rem);
}

.sidebar {
    width: 200px;
    background-color: #102533;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    box-sizing: border-box;
}

.sidebar-top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-btn {
    background: none;
    border: none;
    color: #d4fff3;
    font-weight: 600;
    padding: 0.5rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.sidebar-btn:hover {
    background: #21505d;
}

.sidebar-btn.active {
    background: #2fa08c;
    color: #fff;
}

.logout-btn {
    color: #fc3c3c;
}

.main-content {
    flex: 1;
    padding: 2rem;
}

#log-container {
    width: 90%;
    height: 65vh;
    background: #031014;
    color: #f7fffc;
    padding: 10px;
    font-family: monospace;
    overflow-y: scroll;
    white-space: pre-wrap;
    border-radius: 8px;
    text-align: left;
    margin: 20px auto 0 auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-family: 'MinecraftDefault';
}

#log-container::-webkit-scrollbar {
    display: none;
}

.tab-container {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tab-button {
    background: #18363f;
    border: none;
    padding: 0.6rem 1.2rem;
    color: #d4fff3;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.tab-button:hover {
    background: #21505d;
}

.tab-button.active {
    background: #2fa08c;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.custom-dropdown {
    position: relative;
    width: 300px;
    user-select: none;
}

.dropdown-selected {
    padding: 8px 10px;
    cursor: pointer;
    background: #031014;
    color: #e9f8f2;
    border: 1px solid #21505d;
    border-radius: 8px;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #031014;
    color: #e9f8f2;
    border: 1px solid #21505d;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.dropdown-option {
    padding: 8px 10px;
    cursor: pointer;
}

.dropdown-option:hover {
    background: #092630;
    border-color: #2fa08c;
}

.controls {
    display: flex;
    justify-content: flex-end;
    width: 90%;
    margin: 0 auto 1rem auto;
}

.screenshot-button, .switch-server-button {
    background: #031014;
    margin-left: 0.5rem;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.disconnect-button {
    background: #931014;
    margin-left: 0.5rem;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.screenshot-button:hover, .switch-server-button:hover {
    background: #092630;
}

.disconnect-button:hover {
    background: #792630;
}

.camera-icon, .disconnect-icon, .switch-icon {
    height: 18px;
    width: 18px;
    filter: invert(100%);
}

#screenshot-output {
    width: 90%;
    height: 65vh;
    background: #031014;
    color: #f7fffc;
    padding: 10px;
    font-family: monospace;
    overflow-y: auto;
    white-space: pre-wrap;
    border-radius: 8px;
    margin: 20px auto 0 auto;
}

main {
    padding-bottom: 4.5rem;
}

body {
    margin: 0;
    padding-bottom: 100px;
}

.site-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #102b33;
    border-top: 1px solid #184b4a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem clamp(1rem, 6vw, 15rem);
    box-sizing: border-box;
    z-index: 50;
}

.site-footer .footer-left,
.site-footer .footer-right {
    flex: 0 0 auto;
    min-width: 6rem;
}

.site-footer .footer-center {
    flex: 1 1 auto;
    text-align: center;
    color: #a8dcd1;
    font-size: 0.88rem;
    line-height: 1.45;
    padding: 0 1rem;
}

.site-footer a {
    color: #5fe7c1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.18s ease;
}

.site-footer a:hover {
    color: #3dc9b0;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 0.45rem 0.75rem;
        gap: 0.35rem;
    }

    .site-footer .footer-center {
        font-size: 0.75rem;
        line-height: 1.3;
        padding: 0;
    }

    .site-footer a {
        font-size: 0.75rem;
    }

    .site-footer .footer-left,
    .site-footer .footer-right {
        font-size: 0.7rem;
    }

    main {
        padding-bottom: 5.5rem;
    }
}

@media (max-width: 380px) {
    .site-footer {
        gap: 0.25rem;
    }

    .site-footer .footer-center {
        font-size: 0.7rem;
    }
}
