@font-face {
    font-family: "PixelFont";
    src: url("../fonts/dogicapixel.ttf") format("truetype");
}

body {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin: 0;
    overflow-x: hidden;
    font-family: "PixelFont", monospace;
    letter-spacing: 1px;
    background-color: #0d001a;
}

img {
    -webkit-user-drag: none;
}

p {
    font-size: 16px;
}

p1 {
    font-size: 16px;
}

p2 {
    font-size: 24px;
}

.size1 {
    font-size: 8px;
}

h4 {
    font-size: 8px;
}

a:link {
    color: rgb(172, 252, 255);
}

a:visited {
    color: rgb(255, 0, 0);
}

a:hover {
    color: rgb(255, 250, 186);
}

a:active {
    color: orange;
}

.parallax-container {
    position: relative;
    width: 100vw;
    height: 720px;
    overflow: hidden;
    image-rendering: pixelated;
    transform-origin: center;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: -200%;
    width: 500%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: auto 100%;
    transform-origin: center;
    transition: transform 0.5s ease-out;
}

.static-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.social-media-container {
    position: relative;
    z-index: 9999;
    top: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-right: 30px;
    margin-top: 20px;
    pointer-events: auto;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: block;
    cursor: pointer;
    image-rendering: pixelated;
    object-fit: none;
    object-position: 0 0;
}

.social-media-container a:hover .social-icon,
.social-media-container a:focus-visible .social-icon {
    object-position: -48px 0;
}

.social-media-container a:active .social-icon {
    object-position: -96px 0;
}

.social-artist-media-container {
    position: relative;
    z-index: 9999;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 12px;
    pointer-events: auto;
    flex-wrap: wrap;
}

.social-artist-icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
    image-rendering: pixelated;
}

.social-artist-icon:hover {
    filter: brightness(1.2);
}

.social-partner-icon {
    width: 48px;
    height: 48px;
    display: block;
    cursor: pointer;
    image-rendering: pixelated;
    object-fit: none;
    object-position: 0 0;
}

.social-artist-media-container a:hover .social-partner-icon,
.social-artist-media-container a:focus-visible .social-partner-icon {
    object-position: -48px 0;
}

.social-artist-media-container a:active .social-partner-icon {
    object-position: -96px 0;
}

.logo {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 299px;
    pointer-events: auto;
}

.button-container {
    display: flex;
    justify-content: center;
    pointer-events: visible;
    image-rendering: pixelated;
    align-items: center;
}

.button {
    width: 128px;
    height: 32px;
    background: url('../img/button/buttons.png') no-repeat;
    display: inline-block;
    cursor: pointer;
    transform: scale(2);
    margin-left: 75px;
    margin-right: 75px;
}

.button.dashboard {
    background-position: 0 0;
}

.button.dashboard:hover {
    background-position: -128px 0;
}

.button.dashboard:active {
    background-position: -256px 0;
}

.button.contact {
    background-position: 0 -32px;
}

.button.contact:hover {
    background-position: -128px -32px;
}

.button.contact:active {
    background-position: -256px -32px;
}

.button.shop {
    background-position: 0 -64px;
}

.button.shop:hover {
    background-position: -128px -64px;
}

.button.shop:active {
    background-position: -256px -64px;
}

.button.tools {
    background-position: 0 -96px;
}

.button.tools:hover {
    background-position: -128px -96px;
}

.button.tools:active {
    background-position: -256px -96px;
}

.popup-container {
    padding-top: 32px;
    padding-left: 10%;
    padding-right: 10%;
    border-radius: 5px;
    background-color: #0d001a;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.filter-container {
    padding-top: 32px;
    padding-left: 10%;
    padding-right: 10%;
    border-radius: 5px;
    background-color: #0d001a;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.content-container {
    padding-top: 32px;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 5%;
    border-radius: 5px;
    background-color: #0d001a;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-container {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px;
    flex: 0 0 344px;
    box-sizing: border-box;
    min-width: 344px;
    max-width: 344px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 8px;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f;
    display: flex;
    flex-direction: column;
}

.gallery-container img,
.gallery-image-container img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0;
    image-rendering: pixelated;
    display: block;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
}

.gallery-expand-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    background-color: rgba(27, 33, 39, 0.8);
    border: 2px solid #befeff;
    border-radius: 3px;
    color: #befeff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-expand-icon:hover {
    background-color: #befeff;
    color: #0d001a;
    transform: scale(1.1);
}

.gallery-expand-icon:active {
    transform: scale(0.95);
}

.gallery-expand-icon svg {
    width: 18px;
    height: 18px;
}

.gallery-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-preview-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.gallery-preview-popup {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 0;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f,
        0px 10px 20px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-preview-overlay.show .gallery-preview-popup {
    transform: scale(1);
}

.gallery-preview-content {
    position: relative;
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.gallery-preview-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 3px;
    color: #befeff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    font-family: PixelFont;
}

.gallery-preview-close:hover {
    background-color: #befeff;
    color: #0d001a;
}

.gallery-preview-zoom-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.gallery-preview-zoom-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(27, 33, 39, 0.9);
    border: 2px solid #befeff;
    border-radius: 3px;
    color: #befeff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: PixelFont;
    user-select: none;
}

.gallery-preview-zoom-btn:hover {
    background-color: #befeff;
    color: #0d001a;
}

.gallery-preview-zoom-btn:active {
    transform: scale(0.95);
}

.gallery-preview-zoom-btn.active {
    background-color: #befeff;
    color: #0d001a;
    border-color: #befeff;
}

.gallery-preview-image-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    max-height: 720px;
    overflow: hidden;
    background-color: #0d001a;
    cursor: grab;
    touch-action: none;
}

@media (min-width: 1920px) {
    .gallery-preview-image-container {
        max-width: 1920px;
        max-height: 1080px;
    }
}

.gallery-preview-image-container.dragging {
    cursor: grabbing;
}

.gallery-preview-image {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    image-rendering: pixelated;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.gallery-preview-image-switcher {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.gallery-preview-image-switcher-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gallery-preview-image-switcher-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(27, 33, 39, 0.9);
    border: 2px solid #befeff;
    border-radius: 3px;
    color: #befeff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: PixelFont;
    user-select: none;
    flex-shrink: 0;
}

.gallery-preview-image-switcher-btn:hover {
    background-color: #befeff;
    color: #0d001a;
}

.gallery-preview-image-switcher-btn:active {
    transform: scale(0.95);
}

.gallery-preview-image-switcher-btn.active {
    background-color: #befeff;
    color: #0d001a;
    border-color: #befeff;
}

.gallery-preview-image-switcher-label {
    color: #befeff;
    background-color: rgba(27, 33, 39, 0.9);
    border: 1px solid #befeff;
    border-radius: 3px;
    padding: 4px 10px;
    font-size: 8px;
    font-family: PixelFont;
    white-space: nowrap;
    user-select: none;
    transition: all 0.2s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
}

.gallery-preview-image-switcher-item:hover .gallery-preview-image-switcher-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.gallery-preview-image-switcher-item.active .gallery-preview-image-switcher-label {
    background-color: #befeff;
    color: #0d001a;
    border-color: #befeff;
}

.gallery-preview-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    z-index: 10;
    width: 120px;
    height: 120px;
}

.gallery-preview-control-btn[data-direction="up"] {
    grid-column: 2;
    grid-row: 1;
}

.gallery-preview-control-btn[data-direction="left"] {
    grid-column: 1;
    grid-row: 2;
}

.gallery-preview-control-btn[data-action="center"] {
    grid-column: 2;
    grid-row: 2;
}

.gallery-preview-control-btn[data-direction="right"] {
    grid-column: 3;
    grid-row: 2;
}

.gallery-preview-control-btn[data-direction="down"] {
    grid-column: 2;
    grid-row: 3;
}

.gallery-preview-center-btn svg {
    width: 16px;
    height: 16px;
    display: block;
}

.gallery-preview-control-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(27, 33, 39, 0.9);
    border: 2px solid #befeff;
    border-radius: 3px;
    color: #befeff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: PixelFont;
    user-select: none;
}

.gallery-preview-control-btn:hover {
    background-color: #befeff;
    color: #0d001a;
}

.gallery-preview-control-btn:active {
    transform: scale(0.95);
}

.gallery-preview-control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-preview-control-btn:disabled:hover {
    background-color: rgba(27, 33, 39, 0.9);
    color: #befeff;
}

.gallery-preview-info {
    padding: 20px;
    text-align: center;
}

.gallery-preview-title {
    font-size: 24px;
    color: #befeff;
    margin: 0 0 10px 0;
    font-family: PixelFont;
}

.gallery-preview-description {
    font-size: 14px;
    color: #809e9f;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .gallery-preview-popup {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .gallery-preview-image-container {
        max-height: 60vh;
    }
    
    .gallery-preview-zoom-controls {
        top: 5px;
        left: 5px;
        gap: 3px;
    }
    
    .gallery-preview-zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .gallery-preview-image-switcher {
        bottom: 10px;
        left: 10px;
        gap: 4px;
        max-height: calc(95vh - 80px);
    }
    
    .gallery-preview-image-switcher-item {
        gap: 6px;
    }
    
    .gallery-preview-image-switcher-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .gallery-preview-image-switcher-label {
        font-size: 8px;
        padding: 3px 8px;
    }
    
    .gallery-preview-controls {
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
        gap: 4px;
    }
    
    .gallery-preview-control-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

.inner-container {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px;
    flex: 0 0 344px;
    box-sizing: border-box;
    min-width: 344px;
    max-width: 344px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 8px;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f;
    display: flex;
    flex-direction: column;
}

.inner-container > img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
    margin-bottom: 10px;
    image-rendering: pixelated;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 20% 100%, 0 80%);
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.inner-container > img:hover {
    filter: saturate(100%);
    transition: filter 0.3s ease;
}

.inner-container-button-wrapper {
    margin-top: auto;
    padding-top: 10px;
}

.inner-container a {
    display: inline-block;
    align-self: center;
    margin-top: auto;
}

.inner-container-button {
    display: inline-block;
    padding: 5px 20px;
    font-size: 16px;
    font-family: PixelFont;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #befeff;
    border: 2px solid #000000;
    border-radius: 3px;
    background-color: #314050;
    box-shadow: 0 6px #000000;
    margin-bottom: 10px;
    margin-top: 0;
}

.inner-container-button:hover {
    background-color: #4c5968;
}

.inner-container-button:active {
    background-color: #4c5968;
    box-shadow: 0 3px #0a0a0a;
    transform: translateY(4px);
}

.inner-container-button:disabled,
.inner-container-button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.6;
    background-color: #2a3440;
    box-shadow: 0 4px #000000;
    transform: none;
}

#reset-storage-button {
    background-color: #8b0000 !important;
    border-color: #ff0000 !important;
    color: #ffffff !important;
}

#reset-storage-button:hover {
    background-color: #a00000 !important;
}

#reset-storage-button:active {
    background-color: #a00000 !important;
    box-shadow: 0 3px #0a0a0a;
    transform: translateY(4px);
}

.inner-container-services {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 10px;
    flex: 0 0 344px;
    box-sizing: border-box;
    min-width: 344px;
    max-width: 344px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 8px;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.inner-container-services img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    image-rendering: pixelated;
}

.inner-container2 {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 50px;
    flex: 1 1 calc(30% - 20px);
    box-sizing: border-box;
    min-width: 320px;
    max-width: 800px;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 8px;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f;
}

.inner-container2 img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    image-rendering: pixelated;
}

.inner-container-feed {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 50px;
    flex: 1 1 calc(30% - 20px);
    box-sizing: border-box;
    min-width: 320px;
    max-width: 1080px;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 8px;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f;
}

.inner-container-feed img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    image-rendering: pixelated;
}

.inner-container-blog {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 50px;
    flex: 1 1 calc(30% - 20px);
    box-sizing: border-box;
    min-width: 320px;
    max-width: 1078px;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 8px;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f;
}

.inner-container-blog img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    image-rendering: pixelated;
}

.mastodon-feed-container {
    margin: 20px 0;
    max-width: 100%;
}

.mastodon-loading,
.mastodon-error {
    text-align: center;
    padding: 20px;
    color: #809e9f;
    font-size: 14px;
}

.mastodon-post {
    background-color: #0d001a;
    border: 2px solid #598283;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.mastodon-post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #598283;
}

.mastodon-post-author {
    color: #befeff;
    font-size: 14px;
}

.mastodon-post-date {
    color: #809e9f;
    font-size: 8px;
}

.mastodon-post-content {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.mastodon-post-content p {
    margin: 8px 0;
}

.mastodon-post-content a {
    color: #befeff;
    text-decoration: underline;
}

.mastodon-post-media {
    margin: 15px 0;
}

.mastodon-post-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 5px 0;
    display: block;
    image-rendering: pixelated;
}

.mastodon-post-footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #598283;
}

.mastodon-post-link {
    color: #befeff;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #befeff;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.mastodon-post-link:hover {
    background-color: #befeff;
    color: #0d001a;
}

.mastodon-embed-fallback {
    width: 100%;
    margin: 20px 0;
}

.mastodon-embed {
    border-radius: 5px;
    overflow: hidden;
}

.asset-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.asset-tag {
    font-size: 8px;
    color: #befeff;
    background-color: #314050;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid #598283;
    text-transform: lowercase;
    font-family: PixelFont;
    letter-spacing: 0.5px;
}

.asset-filter-container {
    border-radius: 5px;
    color: #ffffff;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.asset-filter-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.asset-filter-btn {
    font-size: 12px;
    color: #befeff;
    background-color: #314050;
    padding: 6px 14px;
    border-radius: 3px;
    border: 1px solid #598283;
    text-transform: lowercase;
    font-family: PixelFont;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.asset-filter-btn:hover {
    background-color: #4c5968;
    border-color: #809e9f;
}

.asset-filter-btn.active {
    background-color: #befeff;
    color: #0d001a;
    border-color: #befeff;
    font-weight: bold;
}

.footer-logo {
    width: 128px;
    height: 128px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    display: block;
    margin: 0 auto;
}

.footer {
    background-color: #262e37;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-family: "PixelFont", monospace;
    border-top: 2px solid #befeff;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
}

.footer-column {
    flex: 1 1 calc(33.33% - 20px);
    max-width: 300px;
    text-align: left;
}

.footer-column h3 {
    color: #a2ffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #809e9f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #a2ffff;
}

.footer p {
    margin-top: 20px;
    font-size: 12px;
    color: #809e9f;
}

.footer-links a {
    margin-top: 5px;
    color: #809e9f;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a2ffff;
}

.disclaimer {
    position: fixed;
    top: 60px;
    left: 20px;
    z-index: 10001;
    pointer-events: auto;
    transform: translateX(-120%);
    transition: transform 0.5s ease-out;
}

.disclaimer.show {
    transform: translateX(0);
}

.disclaimer.hidden {
    display: none;
}

.disclaimer-content {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    padding: 20px;
    max-width: 350px;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f,
        0px 10px 8px #00000077;
    position: relative;
}

.disclaimer-content h3 {
    color: #befeff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.disclaimer-content p {
    color: #ffffff;
    font-size: 8px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.disclaimer-content strong {
    color: #befeff;
}

.disclaimer-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: 2px solid #befeff;
    color: #befeff;
    font-size: 24px;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "PixelFont", monospace;
    line-height: 1;
    padding: 0;
    transition: all 0.2s ease;
}

.disclaimer-close:hover {
    background-color: #befeff;
    color: #1b2127;
}

.disclaimer-close:active {
    transform: scale(0.95);
}

.scroll-to-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #befeff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f,
        0px 10px 8px #00000077;
    font-family: "PixelFont", monospace;
}

.scroll-to-top-button.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-button:hover {
    background-color: #befeff;
    color: #0d001a;
    transform: translateY(-2px);
}

.scroll-to-top-button:active {
    transform: translateY(2px);
    box-shadow:
        0 1px 0 #2c3a3b,
        0 2px 0 #809e9f,
        0 4px 0 #598283,
        0 5px 0 #809e9f;
}

.storage-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 15px 20px;
    font-size: 14px;
    font-family: PixelFont;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f;
    max-width: 300px;
    line-height: 1.5;
    white-space: normal;
    word-wrap: break-word;
}

.storage-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.storage-notification.success {
    border-color: #befeff;
    background-color: #1b2127;
}

.storage-notification.error {
    border-color: #ff6b6b;
    background-color: #1b2127;
}

.storage-reset-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.storage-reset-popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.storage-reset-popup {
    background-color: #1b2127;
    border: 2px solid #befeff;
    border-radius: 5px;
    color: #ffffff;
    padding: 0;
    max-width: 600px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow:
        0 2px 0 #2c3a3b,
        0 4px 0 #809e9f,
        0 8px 0 #598283,
        0 10px 0 #809e9f,
        0px 10px 20px rgba(0, 0, 0, 0.8);
}

.storage-reset-popup-overlay.show .storage-reset-popup {
    transform: scale(1);
}

.storage-reset-popup-content {
    padding: 30px;
    text-align: center;
}

.storage-reset-popup-title {
    font-size: 28px;
    color: #befeff;
    margin: 0 0 20px 0;
    font-family: PixelFont;
}

.storage-reset-popup-message {
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: left;
}

.storage-reset-popup-message p {
    margin: 10px 0;
    font-size: 16px;
}

.storage-reset-list {
    margin: 15px 0;
    padding-left: 25px;
    text-align: left;
}

.storage-reset-list li {
    margin: 8px 0;
    font-size: 14px;
    color: #ffffff;
}

.storage-reset-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.storage-reset-popup-button {
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    font-family: PixelFont;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    border: 2px solid #000000;
    border-radius: 3px;
    transition: all 0.2s ease;
    min-width: 150px;
}

.storage-reset-cancel {
    color: #ffffff;
    background-color: #314050;
    box-shadow: 0 6px #000000;
}

.storage-reset-cancel:hover {
    background-color: #4c5968;
}

.storage-reset-cancel:active {
    background-color: #4c5968;
    box-shadow: 0 3px #000000;
    transform: translateY(4px);
}

.storage-reset-confirm {
    color: #ffffff;
    background-color: #8b0000;
    border-color: #ff0000;
    box-shadow: 0 6px #000000;
}

.storage-reset-confirm:hover {
    background-color: #a00000;
}

.storage-reset-confirm:active {
    background-color: #a00000;
    box-shadow: 0 3px #000000;
    transform: translateY(4px);
}

@media (min-width: 1500px) {
    .content-container {
        max-width: calc(4 * 344px + 3 * 20px);
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1150px) {
    .button-container {
        flex-direction: column;
        gap: 30px;
    }

    .social-media-container {
        justify-content: center;
        margin-right: 0;
    }

    .footer {
        font-size: 12px;
        padding: 8px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mastodon-post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .mastodon-embed {
        min-height: 400px;
    }
    
    .inner-container2 {
        font-size: 8px;
    }
    
    .inner-container2 h1,
    .inner-container2 h2,
    .inner-container2 h3 {
        font-size: 10px;
    }
    
    p {
        font-size: 8px;
    }

    h1, h2, h3 {
        font-size: 16px;
    }

    p2 {
        font-size: 16px;
    }
    
    .storage-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .storage-reset-popup {
        max-width: 95%;
    }
    
    .storage-reset-popup-title {
        font-size: 12px;
    }
    
    .storage-reset-popup-message p {
        font-size: 8px;
    }
    
    .storage-reset-list li {
        font-size: 8px;
    }
    
    .storage-reset-popup-buttons {
        flex-direction: column;
    }
    
    .storage-reset-popup-button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .disclaimer {
        top: 50px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
    
    .disclaimer-content {
        max-width: 100%;
    }
    
    .scroll-to-top-button {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
