.site-announcements-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}
.site-announcement-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255,223,0,0.18) 0%, rgba(255,193,7,0.24) 100%);
    border: 1px solid rgba(255,215,0,0.6);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}
.site-announcement-warn {
    background: linear-gradient(135deg, rgba(255,223,0,0.18) 0%, rgba(255,193,7,0.24) 100%);
    border-color: rgba(255,215,0,0.6);
}
.site-announcement-info {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(46, 204, 113, 0.26) 100%);
    border-color: rgba(90, 220, 120, 0.58);
}
.site-announcement-error {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.22) 0%, rgba(220, 38, 38, 0.3) 100%);
    border-color: rgba(255, 99, 99, 0.62);
}
.site-announcement-text {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.site-announcement-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.video-section {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .video-carousel-window {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; 
        background: #000;
    }
    .video-carousel-track {
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .video-slide {
        width: 50%;
        height: 100%;
        position: relative;
    }
    .video-slide iframe,
    .video-slide .carousel-text-content {
        width: 100%;
        height: 100%;
        border: none;
        object-fit: cover;
        display: block;
    }
    .video-slide .carousel-photo-link {
        display: block;
        width: 100%;
        height: 100%;
    }
    .video-slide .carousel-photo-frame {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: #111;
    }
    .video-slide .carousel-photo-frame.carousel-photo-clickable {
        cursor: pointer;
    }
    .video-slide .carousel-photo-frame.carousel-photo-mode-legacy .carousel-photo-image {
        object-fit: cover;
    }
    .video-slide .carousel-photo-frame.carousel-photo-mode-legacy .carousel-photo-bg {
        display: none;
    }
    .video-slide .carousel-photo-bg {
        position: absolute;
        inset: -8%;
        background-size: cover;
        background-position: center;
        filter: blur(26px) saturate(1.1);
        transform: scale(1.08);
        opacity: 0.65;
    }
    .video-slide .carousel-photo-image {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
    .video-slide .carousel-text-content {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2a2a2a; 
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
    }
    .online-stats-container {
        width: 100%;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        overflow: hidden;
        padding: 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .stat-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        min-width: 0;
        transition: all 0.3s ease;
    }
    .stat-card:hover {
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
    .stat-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(0, 168, 255, 0.1);
        color: #00a8ff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }
    .stat-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
        flex: 1 1 auto;
    }
    .stat-label {
        color: #aaa;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .stat-value {
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.15;
        white-space: normal;
        overflow: visible;
        overflow-wrap: anywhere;
        text-overflow: clip;
    }
    .version-text {
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        font-family: inherit;
    }
    .online-history-button-container {
        padding: 14px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        gap: 9px;
        justify-content: center;
    }
    .online-history-button-container .control-button {
        border-radius: 11px;
        border: none;
        padding: 0px 0.5px;
        margin: 0;
        cursor: pointer;
        height: fit-content;
        text-decoration: none;
        display: inline-block;
        font-size: 13px;
        min-width: 54px;
        transition: all 0.1s ease;
    }
    .online-history-button-container .control-button:active {
        transform: translateY(2px);
    }
    .online-history-button-container .control-button-inner {
        border-radius: 11px;
        -webkit-text-fill-color: white;
        -webkit-text-stroke-width: 0px;
        padding: 4px 7px;
        font-size: 14px;
        font-weight: bold;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
        color: white;
    }
    .online-history-button-container .control-button.active.teal {
        background: rgb(0, 199, 190);
        box-shadow: 0px 0.5px 0px 0.5px rgba(0, 159, 152), 0px 4px 0px 0.5px rgba(0, 159, 152);
    }
    .online-history-button-container .control-button.active.teal:active {
        box-shadow: 0px 0px 0px 0.5px rgba(0, 159, 152), 0px 2px 0px 0.5px rgba(0, 159, 152);
    }
    .online-history-button-container .control-button.active.teal .control-button-inner {
        box-shadow: inset 0px 0px 10px rgba(0, 219, 210, 0.5);
    }
    .online-history-button-container .control-button.active.purple {
        background: rgb(138, 43, 226);
        box-shadow: 0px 0.5px 0px 0.5px rgba(110, 34, 181), 0px 4px 0px 0.5px rgba(110, 34, 181);
    }
    .online-history-button-container .control-button.active.purple:active {
        box-shadow: 0px 0px 0px 0.5px rgba(110, 34, 181), 0px 2px 0px 0.5px rgba(110, 34, 181);
    }
    .online-history-button-container .control-button.active.purple .control-button-inner {
        box-shadow: inset 0px 0px 10px rgba(168, 63, 246, 0.5);
    }
    .servers-info-message {
        width: 100%;
        padding: 0;
        color: #fff;
        font-weight: bold;
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
    }
    @media (max-width: 1200px) {
        .stats-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
    @media (max-width: 900px) {
        .stats-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    @media (max-width: 768px) {
        .site-announcements-container {
            width: 100%;
            margin: 0;
            padding: 12px 16px;
            box-sizing: border-box;
        }
        .site-announcement-card {
            align-items: flex-start;
            gap: 10px;
            padding: 12px;
            border-radius: 8px;
            font-size: 13px;
            line-height: 1.45;
            box-shadow: none;
        }
        .site-announcement-warn {
            background: linear-gradient(135deg, rgba(255,223,0,0.18) 0%, rgba(255,193,7,0.24) 100%);
            border-color: rgba(255,215,0,0.6);
        }
        .site-announcement-info {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(46, 204, 113, 0.26) 100%);
            border-color: rgba(90, 220, 120, 0.58);
        }
        .site-announcement-error {
            background: linear-gradient(135deg, rgba(255, 68, 68, 0.22) 0%, rgba(220, 38, 38, 0.3) 100%);
            border-color: rgba(255, 99, 99, 0.62);
        }
        .site-announcement-icon {
            width: 24px;
            height: 24px;
            margin-top: 1px;
        }
        .online-stats-container {
            width: 100%;
            max-width: 100%;
            margin: 10px 0;
            padding: 15px;
        }
        .servers-info-message {
            width: 100%;
            max-width: 100%;
            margin: 15px 0;
            padding: 0;
            font-size: 14px;
        }
        .online-history-button-container {
            padding: 10px 5px;
            gap: 8px;
            flex-wrap: wrap;
        }
        .online-history-button-container .control-button {
            flex: 1 1 calc(50% - 4px);
            min-width: 0;
            font-size: 11px;
        }
        .online-history-button-container .control-button-inner {
            padding: 6px 8px;
            font-size: 11px;
        }
    }
    @media (max-width: 480px) {
        .stats-grid {
            gap: 8px;
        }
        .stat-card {
            padding: 10px;
            flex-direction: column;
            gap: 6px;
            text-align: center;
        }
        .stat-icon {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }
        .stat-value {
            font-size: 16px;
        }
        .stat-label {
            font-size: 10px;
        }
        .online-history-button-container {
            flex-wrap: nowrap;
        }
        .online-history-button-container .control-button {
            flex: 1 1 auto;
        }
    }
    .random-tip-container {
        width: 100%;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        padding: 16px;
        box-sizing: border-box;
        margin-top: 0;
    }
    .random-tip-header {
        margin-bottom: 14px;
    }
    .random-tip-title {
        color: #00d4ff;
        font-size: 16px;
        font-weight: bold;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    }
    .random-tips-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .random-tip-card {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 11px;
        padding: 12px;
        overflow: hidden;
    }
    .random-tip-category {
        color: #FFD700;
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .random-tip-content {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 8px;
        padding: 10px;
    }
    .random-tip-loading {
        color: #FFFACD;
        text-align: center;
        font-size: 12px;
        padding: 15px;
    }
    .ip-ban-status-container {
        width: 100%;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        padding: 16px;
        box-sizing: border-box;
        margin-top: 0;
        transition: all 0.3s ease;
    }
    .ip-ban-status-container.ip-ban-status-ok {
        border-color: rgba(58, 167, 58, 0.4);
    }
    .ip-ban-status-container.ip-ban-status-banned {
        border-color: rgba(255, 68, 68, 0.4);
    }
    .ip-ban-status-header {
        margin-bottom: 12px;
    }
    .ip-ban-status-title {
        color: #00d4ff;
        font-size: 16px;
        font-weight: bold;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    }
    .ip-ban-status-content {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }
    .ip-ban-status-text {
        font-size: 15px;
        font-weight: 500;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    }
    .ip-ban-status-ok-text {
        color: #90EE90;
    }
    .ip-ban-status-banned-text {
        color: #FFB6C1;
    }
    .ip-ban-status-ip {
        font-size: 13px;
        font-weight: 400;
        opacity: 0.8;
        font-family: 'Courier New', monospace;
    }
    .ip-ban-status-ok-ip {
        color: #B0E0E6;
    }
    .ip-ban-status-banned-ip {
        color: #FFA07A;
    }
    .random-tip-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }
    .random-tip-item {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: flex-start;
        text-align: left;
    }
    .random-tip-image {
        width: 60px;
        height: 60px;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        object-fit: contain;
        background: rgba(0, 0, 0, 0.3);
        flex-shrink: 0;
    }
    .random-tip-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .random-tip-name {
        color: #00d4ff;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.2;
    }
    .random-tip-desc {
        color: #FFEAA7;
        font-size: 14px;
        line-height: 1.3;
    }
    .telegram-posts-container {
        width: 100%;
        padding: 18px;
        border-radius: 18px;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        box-sizing: border-box;
        gap: 7px;
        max-height: 1600px;
    }
    .telegram-post {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 11px;
        padding: 11px 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
    }
    .telegram-post:hover {
        background: rgba(0, 136, 204, 0.1);
    }
    .telegram-post-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 7px;
    }
    .telegram-author-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .telegram-avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.2);
        object-fit: cover;
    }
    .telegram-author {
        font-weight: bold;
        font-size: 16px;
        color: #0088cc;
    }
    .telegram-time {
        color: #ccc;
        font-size: 14px;
        text-decoration: none;
    }
    .telegram-time:hover {
        text-decoration: underline;
    }
    .telegram-content {
        color: #fff;
        font-size: 14px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .telegram-text {
        margin-bottom: 8px;
    }
    .telegram-text a {
        color: #00aaff;
        text-decoration: underline;
    }
    .telegram-image {
        max-width: 50%;
        border-radius: 8px;
        margin-top: 5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
    }
    .telegram-gif {
        width: 100%;
        max-width: 50%;
        min-width: 200px;
        max-height: 420px;
        border-radius: 8px;
        margin-top: 5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        image-rendering: auto;
        background: rgba(0, 0, 0, 0.24);
        object-fit: contain;
    }
    .telegram-video-preview {
        position: relative;
        display: block;
        width: 100%;
        max-width: 50%;
        min-width: 200px;
        min-height: 150px;
        margin-top: 5px;
        padding: 0;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(0, 136, 204, 0.18), rgba(0, 0, 0, 0.32));
        color: #fff;
        cursor: pointer;
    }
    .telegram-video-preview img {
        display: block;
        width: 100%;
        max-height: 420px;
        object-fit: cover;
    }
    .telegram-video-preview::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.22);
    }
    .telegram-video-play {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 48px;
        height: 48px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 136, 204, 0.86);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }
    .telegram-video-play i {
        margin-left: 3px;
    }
    .telegram-show-more {
        width: 100%;
        min-height: 38px;
        border: 1px solid rgba(0, 170, 255, 0.22);
        border-radius: 10px;
        background: rgba(0, 136, 204, 0.12);
        color: #eaf8ff;
        font-size: 13px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .telegram-show-more:hover,
    .telegram-show-more:focus-visible {
        outline: none;
        background: rgba(0, 136, 204, 0.2);
        border-color: rgba(0, 170, 255, 0.38);
    }
    .telegram-footer {
        margin-top: 8px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }
    .telegram-views {
        font-size: 12px;
        color: #888;
    }
    .telegram-poll {
        margin-top: 10px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .telegram-poll-question {
        font-weight: bold;
        margin-bottom: 8px;
        color: #fff;
    }
    .telegram-poll-type {
        font-size: 11px;
        color: #888;
        margin-bottom: 8px;
    }
    .telegram-poll-option {
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .telegram-poll-bar-bg {
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        margin-top: 2px;
        overflow: hidden;
    }
    .telegram-poll-bar-fill {
        height: 100%;
        background: #0088cc;
        border-radius: 2px;
    }
    .telegram-poll-percent {
        font-size: 12px;
        font-weight: bold;
        color: #0088cc;
        min-width: 35px;
        text-align: right;
    }
    .telegram-reactions {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
    }
    .telegram-reaction {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        padding: 6px 12px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 16px;
        color: #e4e4e4;
        border: 1px solid rgba(255, 255, 255, 0.05);
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    .telegram-reaction-count {
        font-weight: bold;
        color: #00aaff;
        font-size: 16px;
    }
    .telegram-text .emoji {
        width: 16px;
        height: 16px;
        vertical-align: text-bottom;
        margin: 0 1px;
    }
    .telegram-loading {
        color: #ccc;
        text-align: center;
        padding: 18px;
        font-style: italic;
        font-size: 13px;
    }
    .telegram-comments-icon {
        cursor: pointer;
        color: #00aaff;
        font-size: 16px;
        padding: 6px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .telegram-comments-icon:hover {
        background: rgba(0, 170, 255, 0.2);
        color: #fff;
        transform: scale(1.1);
        border-color: rgba(0, 170, 255, 0.4);
    }
    .telegram-posts-container::-webkit-scrollbar {
        width: 10px;
    }
    .telegram-posts-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
    }
    .telegram-posts-container::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 6px;
    }
    .telegram-posts-container::-webkit-scrollbar-thumb:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }
    .message-modal-body {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 120px);
        min-height: 500px;
        max-height: 80vh;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border-radius: 8px;
        overflow: hidden;
    }
    .message-modal-content {
        padding: 0;
        max-width: 95vw;
        width: 100%;
        margin: 0 auto;
        height: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        animation: messageModalSlideIn 0.4s ease-out;
    }
    @keyframes messageModalSlideIn {
        from {
            opacity: 0;
            transform: scale(0.95) translateY(20px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    .message-modal-author {
        display: flex;
        align-items: center;
        padding: 20px 25px;
        background: rgba(0, 86, 122, 0.15);
        border-bottom: 2px solid rgba(0, 86, 122, 0.3);
        backdrop-filter: blur(10px);
    }
    .message-modal-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        border: 3px solid rgba(0, 86, 122, 0.4);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
    }
    .message-modal-avatar:hover {
        opacity: 0.9;
    }
    .message-modal-author-info {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .message-modal-author-name {
        font-weight: bold;
        font-size: 18px;
        color: #fff;
        margin-bottom: 4px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    .message-modal-time {
        font-size: 13px;
        color: #b0b0b0;
        font-weight: 500;
    }
    .message-modal-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 25px;
        background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
        min-height: 0;
        position: relative;
    }
    .message-modal-content-text {
        color: #fff;
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        line-height: 1.4;
        margin: 0;
        padding: 0;
        text-indent: 0;
        flex: 1;
        overflow-y: auto;
        padding-right: 10px;
        min-height: 300px;
    }
    .message-modal-content-text::-webkit-scrollbar {
        width: 8px;
    }
    .message-modal-content-text::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    .message-modal-content-text::-webkit-scrollbar-thumb {
        background: rgba(0, 86, 122, 0.6);
        border-radius: 4px;
    }
    .message-modal-content-text::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 86, 122, 0.8);
    }
    .message-modal-content-text * {
        margin: 0;
        padding: 0;
        text-indent: 0;
    }
    .message-modal-content-text p {
        margin: 0;
        line-height: 1.4;
    }
    .message-modal-content-text br {
        line-height: 1.4;
    }
    .message-modal-copy-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 86, 122, 0.3);
        border: 1px solid rgba(0, 86, 122, 0.6);
        color: #00aaff;
        padding: 6px 12px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 11px;
        font-weight: 500;
        transition: all 0.2s ease;
        box-shadow: 0 1px 4px rgba(0, 86, 122, 0.3);
        z-index: 10;
    }
    .message-modal-copy-btn:hover {
        background: rgba(0, 86, 122, 0.5);
        border-color: rgba(0, 86, 122, 0.8);
        box-shadow: 0 2px 8px rgba(0, 86, 122, 0.5);
        color: #ffffff;
    }
    .message-modal-copy-btn.copied {
        background: rgba(0, 150, 0, 0.5);
        border-color: rgba(0, 150, 0, 0.8);
        color: #00ff00;
    }
    .message-modal-content-text a {
        color: #00aaff;
        text-decoration: underline;
        transition: all 0.2s ease;
        cursor: pointer;
    }
    .message-modal-content-text a:hover {
        color: #ffffff;
        text-decoration: none;
    }
    .message-modal-content-text .discord-mention,
    .message-modal-content-text .discord-user-mention,
    .message-modal-content-text .discord-role-mention {
        background: rgba(88, 101, 242, 0.2);
        color: #5865f2;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 13px;
        border: 1px solid rgba(88, 101, 242, 0.3);
        transition: all 0.2s ease;
    }
    .message-modal-content-text .discord-mention:hover,
    .message-modal-content-text .discord-user-mention:hover,
    .message-modal-content-text .discord-role-mention:hover {
        background: rgba(88, 101, 242, 0.3);
        border-color: rgba(88, 101, 242, 0.5);
    }
    .message-modal-content-text pre {
        background: rgba(0, 0, 0, 0.3);
        padding: 8px;
        border-radius: 4px;
        border-left: 4px solid rgba(255, 255, 255, 0.2);
        margin: 2px 0;
        overflow-x: auto;
        white-space: pre;
        line-height: 1.3;
    }
    .message-modal-content-text pre code {
        background: none;
        padding: 0;
        font-size: 13px;
        white-space: pre;
        font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
        line-height: 1.3;
    }
    .message-modal-content-text code {
        background: rgba(0, 0, 0, 0.3);
        padding: 2px 4px;
        border-radius: 3px;
        font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
        font-size: 12px;
    }
    .message-modal-content-text .discord-custom-emoji {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin: 0 2px;
        object-fit: contain;
    }
    .message-modal-content-text blockquote {
        border-left: 4px solid rgba(255, 255, 255, 0.3);
        padding-left: 12px;
        margin: 2px 0;
        color: #ccc;
    }
    .message-modal-content-text .spoiler {
        background: #202225;
        color: transparent;
        border-radius: 3px;
        padding: 0 2px;
        cursor: pointer;
        transition: all 0.1s;
    }
    .message-modal-content-text .spoiler:hover,
    .message-modal-content-text .spoiler.revealed {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    .message-modal-content-text strong {
        font-weight: bold;
    }
    .message-modal-content-text em {
        font-style: italic;
    }
    .message-modal-content-text u {
        text-decoration: underline;
    }
    .message-modal-content-text s {
        text-decoration: line-through;
    }
    .message-modal-content-text h1,
    .message-modal-content-text h2,
    .message-modal-content-text h3 {
        font-weight: bold;
        margin: 4px 0 2px 0;
        line-height: 1.3;
    }
    .message-modal-content-text h1 {
        font-size: 20px;
    }
    .message-modal-content-text h2 {
        font-size: 18px;
    }
    .message-modal-content-text h3 {
        font-size: 16px;
    }
    .message-modal-content-text ul,
    .message-modal-content-text ol {
        margin: 2px 0;
        padding-left: 20px;
    }
    .message-modal-content-text li {
        margin: 0;
        line-height: 1.4;
    }
    .message-modal-content-text .small-text {
        font-size: 11px;
        color: #b9bbbe;
    }
    .message-modal-content::-webkit-scrollbar {
        width: 8px;
    }
    .message-modal-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    .message-modal-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }
    .message-modal-content::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    .message-modal-attachments {
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        max-height: 200px;
        overflow-y: auto;
    }
    .message-modal-attachments::-webkit-scrollbar {
        width: 6px;
    }
    .message-modal-attachments::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }
    .message-modal-attachments::-webkit-scrollbar-thumb {
        background: rgba(0, 86, 122, 0.6);
        border-radius: 3px;
    }
    .message-modal-attachments::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 86, 122, 0.8);
    }
    .message-modal-attachments img {
        max-width: 100%;
        max-height: 150px;
        height: auto;
        border-radius: 8px;
        margin: 5px 0;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 86, 122, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    .message-modal-attachments img:hover {
        border-color: rgba(0, 86, 122, 0.6);
        box-shadow: 0 4px 15px rgba(0, 86, 122, 0.4);
    }
    #imageModal {
        z-index: 10001;
    }
    #messageModal {
        z-index: 10000;
        animation: fadeIn 0.3s ease-out;
    }
    .image-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(5px);
        animation: fadeIn 0.3s ease-out;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    .image-modal-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        height: 90%;
        max-width: 1080px;
        max-height: 720px;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        animation: modalSlideIn 0.3s ease-out;
    }
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }
    .image-modal-header {
        padding: 14px 18px;
        background: rgba(0, 86, 122, 0.25);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
    }
    .image-modal-title {
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    }
    .image-modal-close {
        color: #fff;
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
        padding: 5px 9px;
        border-radius: 11px;
        transition: all 0.2s ease;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .image-modal-close:hover {
        color: rgb(21, 134, 205);
        background: rgba(0, 86, 122, 0.3);
        border-color: rgba(0, 86, 122, 0.5);
    }
    .image-modal-content {
        flex: 1;
        object-fit: contain;
        width: 100%;
        height: 100%;
        border-radius: 0 0 18px 18px;
        overflow: hidden;
    }
    .carousel-links-modal-wrapper {
        max-width: 560px;
        height: auto;
        max-height: 80vh;
        border: 1px solid rgba(0, 212, 255, 0.35);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), 0 0 22px rgba(0, 212, 255, 0.12);
    }
    .carousel-links-modal-subtitle {
        color: rgba(255, 255, 255, 0.75);
        font-size: 13px;
        padding: 12px 16px 2px;
    }
    .carousel-links-modal-content {
        display: flex;
        flex-direction: column;
        gap: 9px;
        padding: 12px 16px 16px;
        overflow-y: auto;
    }
    .carousel-link-item {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #fff;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 12px;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.4;
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .carousel-link-item:hover {
        background: linear-gradient(135deg, rgba(0, 170, 255, 0.28) 0%, rgba(0, 130, 220, 0.18) 100%);
        border-color: rgba(0, 170, 255, 0.5);
    }
    .carousel-link-icon-wrap {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .carousel-link-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }
    .carousel-link-icon-fallback {
        color: #9fdfff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
    }
    .carousel-link-text {
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 1px;
    }
    .carousel-link-title {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .carousel-link-domain {
        color: rgba(215, 235, 255, 0.75);
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .info-box-page {
        width: 100%;
        padding: 18px 27px;
        border-radius: 18px;
        background: url('/assets/others/headlogo2.png') center/cover no-repeat;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        color: #fff;
        font-weight: bold;
        text-align: center;
        text-shadow: 1px 1px rgba(40, 0, 0, 0.45);
        border: 1px solid rgba(255, 99, 99, 0.35);
        font-size: 16px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        box-sizing: border-box;
        position: relative;
        overflow: visible;
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
    }
    .info-box-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/assets/others/headlogo2.png') center/cover no-repeat;
        filter: blur(35px);
        z-index: -1;
        border-radius: 18px;
    }
    .info-title-page {
        margin-bottom: 6px;
        font-size: 18px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color:rgb(255, 253, 152);
    }
    .info-box-page>div:not(.info-title-page) {
        font-size: 16px;
        line-height: 1.5;
        color: #fff;
        text-shadow: 1px 1px rgba(40, 0, 0, 0.45);
    }
    .info-thank-page {
        margin-top: 14px;
    }
@media (min-width: 769px) {
        main {
            max-width: 1600px !important;
            width: 96% !important;
        }
    }
    .main-content-wrapper {
        width: 100%;
        max-width: 1600px;
        margin: 18px auto;
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }
    .main-content-left {
        flex: 1.6;
        display: flex;
        flex-direction: column;
        gap: 18px;
        min-width: 0;
    }
    .main-content-right {
        flex: 1;
        min-width: 0;
    }
    @media (max-width: 768px) {
        .main-content-wrapper {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
            flex-direction: column;
            gap: 0;
        }
        .main-content-left {
            width: 100%;
            gap: 0;
        }
        .main-content-right {
            width: 100%;
        }
        .online-stats-container {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 12px 16px;
            border-radius: 0;
            background: #17212B;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: none;
        }
        .online-stat-row {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
        .online-stat-cell {
            padding: 12px 8px;
            border-right: none;
            border: 1px solid rgba(51, 144, 236, 0.2);
            border-radius: 8px;
            background: rgba(30, 39, 50, 0.6);
            transition: all 0.2s ease;
        }
        .online-stat-cell:active {
            background: rgba(51, 144, 236, 0.15);
            transform: scale(0.98);
        }
        .online-stat-label {
            font-size: 11px;
            margin-bottom: 6px;
            line-height: 1.2;
            word-break: break-word;
            color: #3390ec;
            font-weight: 600;
        }
        .online-stat-value {
            font-size: 20px;
            line-height: 1.1;
        }
        .online-stat-value.version-orange {
            font-size: 16px;
        }
        .info-box-page {
            width: 100%;
            margin: 0;
            padding: 15px;
            box-shadow: none !important;
            border-radius: 0;
            text-shadow: none !important;
            background: rgba(30, 39, 50, 0.6) !important;
            border: none !important;
        }
        .info-title-page {
            font-size: 16px;
            margin-bottom: 8px;
        }
        .info-box-page>div:not(.info-title-page) {
            font-size: 14px;
            line-height: 1.5;
            color: #e4e4e4;
        }
        .online-history-button-container {
            padding: 12px 0 0 0;
            gap: 8px;
            flex-wrap: nowrap;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 12px;
        }
        .online-history-button-container .control-button {
            flex: 1 1 auto;
            min-width: 0;
            font-size: 11px;
            border: 1px solid rgba(51, 144, 236, 0.3);
        }
        .online-history-button-container .control-button-inner {
            padding: 8px 12px;
            font-size: 12px;
        }
        .discord-posts-container {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 12px 16px;
            border-radius: 0;
            background: #17212B;
            border: none;
            box-shadow: none;
            box-sizing: border-box;
            height: auto !important;
            max-height: none !important;
            overflow: visible !important;
            overflow-y: visible !important;
        }
        .random-tips-grid {
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .discord-guild-info {
            width: auto;
            align-items: center;
            margin-top: 0;
            flex: 1 1 auto;
            justify-content: flex-end;
        }
        .guild-stats {
            flex-direction: row;
            gap: 8px;
            width: auto;
            flex-wrap: nowrap;
        }
        .guild-stat-line {
            font-size: 10px;
            white-space: nowrap;
            justify-content: flex-start;
        }
        .guild-stat-icon {
            width: 12px;
            height: 12px;
        }
        .discord-post {
            padding: 12px;
            border-radius: 8px;
            background: rgba(30, 39, 50, 0.6);
            border: 1px solid rgba(51, 144, 236, 0.15);
        }
        .discord-post:hover {
            background: rgba(51, 144, 236, 0.1);
            border-color: rgba(51, 144, 236, 0.3);
        }
        .discord-author {
            font-size: 13px;
        }
        .discord-time {
            font-size: 11px;
            color: #8e9297;
        }
        .discord-content {
            font-size: 14px;
            line-height: 1.5;
            color: #e4e4e4;
        }
        .discord-avatar {
            width: 20px;
            height: 20px;
        }
        .discord-image {
            max-width: 150px;
            max-height: 150px;
        }
        .discord-expand-btn {
            border: 1px solid rgba(51, 144, 236, 0.3);
            background: rgba(51, 144, 236, 0.1);
        }
        .discord-expand-btn:active {
            background: rgba(51, 144, 236, 0.2);
        }
    }
    .site-changelog-container {
        width: 100%;
        margin: 0;
        padding: 16px;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 18px;
        box-sizing: border-box;
    }
    .site-changelog-header {
        margin-bottom: 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .site-changelog-title {
        color: #00d4ff;
        font-size: 18px;
        font-weight: bold;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    }
    .changelog-view-button {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 0;
        text-decoration: none;
        color: #00d4ff;
        display: inline-flex;
        align-items: center;
        transition: all 0.2s ease;
        font-size: 12px;
        font-weight: bold;
    }
    .changelog-view-button:hover {
        background: rgba(0, 212, 255, 0.1);
        border-color: rgba(0, 212, 255, 0.4);
        color: #00ffff;
    }
    .changelog-view-button .control-button-inner {
        padding: 8px 12px;
        font-size: 12px;
    }
    .changelog-section {
        margin-bottom: 3px;
        padding: 12px;
        border-radius: 11px;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        transition: all 0.3s ease;
    }
    .changelog-section:hover {
        border-color: rgba(255, 255, 255, 0.3);
    }
    .changelog-section.latest {
        border-color: rgba(0, 212, 255, 0.4);
    }
    .changelog-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 10px;
    }
    .changelog-version-info {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    .changelog-version-text {
        color: #00d4ff;
        font-size: 15px;
        font-weight: bold;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    }
    .changelog-date-text {
        color: #FFEAA7;
        font-size: 13px;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    }
    .version-badge {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: bold;
        text-transform: uppercase;
    }
    .version-badge.stable {
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
        color: #fff;
    }
    .version-badge.pre-release {
        background: linear-gradient(135deg, rgb(38, 190, 182) 0%, rgb(25, 136, 210) 100%);
        color: #fff;
    }
    .version-badge.beta {
        background: linear-gradient(135deg, rgb(140, 162, 40) 0%, rgb(174, 193, 38) 100%);
        color: #fff;
    }
    .version-badge.alpha {
        background: linear-gradient(135deg, rgb(255, 0, 0) 0%, rgb(245, 0, 0) 100%);
        color: #fff;
    }
    .latest-badge {
        display: inline-block;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        background: linear-gradient(135deg, #00aaff 0%, #0077cc 100%);
        color: #fff;
        box-shadow: 0 2px 4px rgba(0, 170, 255, 0.4);
    }
    .changelog-changes {
        display: none;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 215, 0, 0.2);
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
        cursor: text;
    }
    .changelog-section.expanded .changelog-changes {
        display: block;
    }
    .changes-list {
        margin: 0;
        padding-left: 16px;
        color: #FFEAA7;
        font-size: 14px;
        line-height: 1.4;
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
        cursor: text;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .changes-list li {
        margin-bottom: 4px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .site-changelog-empty {
        text-align: center;
        color: #ccc;
        padding: 40px;
        font-size: 16px;
    }
    .changelog-view-full-button {
        margin-top: 15px;
        text-align: center;
    }
    .changelog-view-full-button .control-button {
        border-radius: 11px;
        border: none;
        padding: 0px 0.5px;
        margin: 0;
        cursor: pointer;
        height: fit-content;
        text-decoration: none;
        display: inline-block;
        font-size: 13px;
        min-width: 54px;
        transition: all 0.1s ease;
    }
    .changelog-view-full-button .control-button:active {
        transform: translateY(2px);
    }
    .changelog-view-full-button .control-button-inner {
        border-radius: 11px;
        -webkit-text-fill-color: white;
        -webkit-text-stroke-width: 0px;
        padding: 4px 7px;
        font-size: 14px;
        font-weight: bold;
        text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
        color: white;
    }
    .changelog-view-full-button .control-button.active.purple {
        background: rgb(138, 43, 226);
        box-shadow: 0px 0.5px 0px 0.5px rgba(110, 34, 181), 0px 4px 0px 0.5px rgba(110, 34, 181);
    }
    .changelog-view-full-button .control-button.active.purple:active {
        box-shadow: 0px 0px 0px 0.5px rgba(110, 34, 181), 0px 2px 0px 0.5px rgba(110, 34, 181);
    }
    .changelog-view-full-button .control-button.active.purple .control-button-inner {
        box-shadow: inset 0px 0px 10px rgba(168, 63, 246, 0.5);
    }
    @media (max-width: 768px) {
        .site-changelog-container {
            width: 100%;
            margin: 0;
            padding: 15px;
            border: none;
            box-sizing: border-box;
            background: transparent;
        }
        .site-changelog-title {
            font-size: 16px;
            color: #ffffff;
            text-shadow: none;
        }
        .site-changelog-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
        }
        .changelog-section {
            padding: 12px;
            margin-bottom: 12px;
            background: rgba(30, 39, 50, 0.6) !important;
            border: 1px solid rgba(51, 144, 236, 0.2) !important;
            box-shadow: none !important;
            border-radius: 8px;
        }
        .changelog-section:hover {
            background: rgba(30, 39, 50, 0.6) !important;
            border: 1px solid rgba(51, 144, 236, 0.2) !important;
            box-shadow: none !important;
        }
        .changelog-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }
        .changelog-version-info {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .changelog-version-text {
            font-size: 14px;
            color: #ffffff !important;
            text-shadow: none !important;
        }
        .version-badge {
            font-size: 10px;
            text-shadow: none !important;
        }
        .changelog-date-text {
            font-size: 11px;
            color: #b0b0b0 !important;
            text-shadow: none !important;
        }
        .changelog-changes {
            border-top: 1px solid rgba(51, 144, 236, 0.15) !important;
            margin-top: 10px;
            padding-top: 10px;
        }
        .changes-list {
            font-size: 12px;
            padding-left: 16px;
            color: #e4e4e4 !important;
            text-shadow: none !important;
            line-height: 1.4;
        }
        .changes-list li {
            margin-bottom: 4px;
            color: #e4e4e4 !important;
        }
        .thank-you-message {
            font-size: 13px;
            text-shadow: none !important;
            color: #96e665 !important;
            margin-top: 10px;
            padding: 8px 0;
        }
        .site-changelog-empty {
            color: #e4e4e4 !important;
            text-shadow: none !important;
            padding: 20px;
            font-size: 14px;
        }
        .latest-badge {
            text-shadow: none !important;
        }
        .changelog-view-button {
            width: fit-content;
        }
        .changelog-view-button .control-button {
            font-size: 11px;
            padding: 0px 0.5px;
        }
        .changelog-view-button .control-button-inner {
            padding: 6px 8px;
            font-size: 11px;
        }
        .random-tip-container {
            width: 100%;
            margin: 0;
            padding: 15px;
            border-radius: 0;
            background: transparent;
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            box-sizing: border-box;
        }
        .random-tip-header {
            margin-bottom: 12px;
        }
        .random-tip-title {
            font-size: 16px;
            color: #ffffff;
            text-shadow: none;
        }
        .random-tips-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .random-tip-card {
            background: rgba(30, 39, 50, 0.6);
            border: 1px solid rgba(51, 144, 236, 0.2);
            border-radius: 8px;
            padding: 12px;
        }
        .random-tip-category {
            font-size: 11px;
            margin-bottom: 8px;
            color: #3390ec;
            text-shadow: none;
        }
        .random-tip-item {
            gap: 10px;
        }
        .random-tip-image {
            width: 50px;
            height: 50px;
        }
        .random-tip-name {
            font-size: 13px;
            color: #ffffff;
            text-shadow: none;
        }
        .random-tip-desc {
            font-size: 12px;
            color: #e4e4e4;
            text-shadow: none;
        }
        .random-tip-loading {
            font-size: 11px;
            padding: 12px;
            color: #e4e4e4;
        }
        .ip-ban-status-container {
            width: calc(100% - 32px);
            max-width: calc(100% - 32px);
            margin: 12px 16px;
            padding: 12px 16px;
            border-radius: 8px;
            background: rgba(30, 39, 50, 0.6) !important;
            border: 1px solid rgba(51, 144, 236, 0.2) !important;
            box-shadow: none !important;
            box-sizing: border-box;
        }
        .ip-ban-status-container.ip-ban-status-ok {
            border-color: rgba(58, 167, 58, 0.4) !important;
        }
        .ip-ban-status-container.ip-ban-status-banned {
            border-color: rgba(255, 68, 68, 0.4) !important;
        }
        .ip-ban-status-header {
            margin-bottom: 8px;
        }
        .ip-ban-status-title {
            font-size: 16px;
            color: #ffffff;
            text-shadow: none;
        }
        .ip-ban-status-text {
            font-size: 13px;
            text-shadow: none;
            overflow-wrap: anywhere;
        }
        .ip-ban-status-ip {
            font-size: 12px;
            font-family: monospace;
            opacity: 0.9;
            max-width: 100%;
            overflow-wrap: anywhere;
        }
        .telegram-posts-container {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 15px;
            border-radius: 0;
            background: transparent;
            border: none;
            box-shadow: none;
            box-sizing: border-box;
            max-height: none;
        }
        .telegram-post {
            background: rgba(30, 39, 50, 0.6);
            border: 1px solid rgba(51, 144, 236, 0.2);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 8px;
        }
        .telegram-post:hover {
            background: rgba(30, 39, 50, 0.6);
        }
        .telegram-author {
            text-shadow: none;
            font-size: 14px;
        }
        .telegram-time {
            font-size: 11px;
        }
        .telegram-content {
            font-size: 13px;
        }
        .telegram-poll {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .telegram-loading {
            padding: 20px;
            font-size: 13px;
        }
    }
