.apeMarkdownStyle {
    figure img {
        max-width: 100%;
        border-radius: 12px;
        display: block;
        margin: 0px auto;
    }

    figcaption {
        text-align: right;
        font-size: 12px;
        font-weight: 600;
        opacity: 0.6;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        border: 1px solid rgba(130, 130, 130, 0.35);
        margin: 12px 0px;
    }

    table thead:not(:has(:not(:blank))) {
        display: none;
    }

    th, td {
        border: 1px solid rgba(130, 130, 130, 0.35);
        padding: 4px 8px;
    }

    th {
        text-align: center !important;
    }

    tr:nth-child(even) {
        background-color: rgba(130, 130, 130, 0.1);
    }

    .video-container iframe {
        width: 640px;
        height: 360px;
        max-width: 100%;
        border-radius: 12px;
        display: block;
        margin: 0px auto;
    }

    pre code.hljs {
        border-radius: 12px;
    }

    .alert {
        display: flex;
        align-items: center;
        padding: 12px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
    }

    .alert::before {
        font-size: 18px;
        margin-right: 12px;
        position: relative;
        top: -2px;
    }

    .alert-important {
        background-color: #fff3cd;
        color: #856404;
        border: 1px solid #ffeeba;
        position: relative;
    }

    .alert-important::before {
        content: "⚠️";
    }

    .alert-warning {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        position: relative;
    }

    .alert-warning::before {
        content: "🚨";
    }

    .alert-caution {
        background-color: #ffeeba;
        color: #856404;
        border: 1px solid #ffeeba;
        position: relative;
    }

    .alert-caution::before {
        content: "🧯";
    }

    .alert-tip {
        background-color: #d1ecf1;
        color: #0c5460;
        border: 1px solid #bee5eb;
        position: relative;
    }

    .alert-tip::before {
        content: "💡";
    }

    .alert-note {
        background-color: #e2e3e5;
        color: #383d41;
        border: 1px solid #d6d8db;
        position: relative;
    }

    .alert-note::before {
        content: "📝";
    }

    .badge {
        background: linear-gradient(135deg, #ffd700, #daa520);
        color: #fff8dc;
        font-weight: 500;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        text-shadow: 0 1px 2px rgba(0,0,0,0.6);
        padding: 0px 8px;
    }

    .featured-apps {
        display: grid;
        gap: 12px;
    }

    .app-link img, .featured-app {
        display: block;
        margin: 0px auto;
        width: calc(100% - 2px);
        max-width: 640px;
        border-radius: 12px;
        border: 1px solid #dddddd;
        box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.25);
    }

    .adlDark .app-link img, .adlDark .featured-app {
        border: 1px solid #333333;
    }

    .app-link-inlineCount2 {
        display: block;
        margin-bottom: 12px;
    }

    .featured-app {
        cursor: pointer;
        transition: 0.2s;
    }

    .featured-app:active {
        opacity: 0.5;
    }

    ol {
        padding-inline-start: 16px;
    }

    ul {
        padding-inline-start: 20px;
    }

    .discord-button {
        display: inline-block;
        color: #ffffff;
        background-color: #5865F2;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 6px;
        user-select: none;
        cursor: pointer;
        transition: 0.2s;
    }

    .file-placeholder {
        display: inline-block;
        color: #ffffff;
        background-color: #43A047;
        font-size: 12px;
        font-weight: 700;
        padding: 0px 12px 4px 12px;
        border-radius: 6px;
        user-select: none;
        cursor: pointer;
        transition: 0.2s;
    }

    .file-placeholder::before {
        content: "\E4E2";
        font-family: fluent2;
        font-weight: 400;
        margin-right: 10px;
        position: relative;
        top: 5px;
        font-size: 16px;
    }

    .apepack-placeholder {
        display: inline-block;
        color: #ffffff;
        background-color: #C87137;
        font-size: 12px;
        font-weight: 700;
        padding: 0px 12px 4px 12px;
        border-radius: 6px;
        user-select: none;
        cursor: pointer;
        transition: 0.2s;
    }

    .apepack-placeholder::before {
        content: "\E27E";
        font-family: fluent2;
        font-weight: 400;
        margin-right: 10px;
        position: relative;
        top: 5px;
        font-size: 16px;
    }

    .discord-button:active, .file-placeholder:active, .apepack-placeholder:active {
        opacity: 0.5;
    }

    .featured-pages {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .featured-page {
        border: 1px solid #dddddd;
        padding: 12px;
        border-radius: 12px;
        text-align: center;
        display: grid;
        grid-template-rows: auto auto 1fr auto;
    }

    .adlDark .featured-page {
        border: 1px solid #333333;
    }

    .featured-page-image {
        height: 180px;
        width: 100%;
        object-fit: cover;
        display: block;
        margin: 0px auto 12px auto;
        border-radius: 12px;
    }

    .featured-page-description {
        font-size: 14px;
        font-weight: 300;
    }

    .featured-page-date {
        text-align: right;
        opacity: 0.6;
        font-size: 12px;
        border-top: 1px solid #dddddd;
        padding-top: 12px;
    }

    .adlDark .featured-page-date {
        border-top: 1px solid #333333;
    }

    

    @media (max-width: 640px) {
        .featured-pages {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 380px) {
        .featured-pages {
            grid-template-columns: 1fr;
        }
    }

    @media (min-width: 600px) {
        .app-link-inlineCount2 {
            display: inline-block;
            width: 50%;
        }

        .app-link-inlineCount2 img {
            width: calc(100% - 12px);
        }
    }
}