@font-face {
    font-family: 'Pixel';
    src: local('Courier New'), local('MS Gothic');
}

/* 全局鼠标指针样式 */
* {
    cursor: url('assets/cursor/Geebar1.cur'), auto !important;
}

/* 可点击元素的鼠标指针样式 */
a, button, input[type="submit"], input[type="button"], .submit-button,
input[type="image"], input[type="reset"], select, label[for], [role="button"],
[tabindex="0"]:not(input):not(textarea):not(select) {
    cursor: url('assets/cursor/Geebar4.cur'), pointer !important;
}

/* 文字选择时的鼠标指针样式 */
input, textarea, [contenteditable="true"], select {
    cursor: url('assets/cursor/Geebar10.cur'), text !important;
}

/* 加载状态的鼠标指针样式 */
.loading, *:disabled {
    cursor: url('assets/cursor/Geebar2.cur'), wait !important;
}

body {
    font-family: 'Pixel', monospace;
    background-color: #000;
    color: #ffffff;
    line-height: 1.6;
    background-image: none;
    position: relative;
    overflow-x: hidden;
    padding: 0;
    margin: 40px 0 0 0;
    box-sizing: border-box;
    max-width: 100vw;
    overflow-y: auto;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

/* 全局链接样式，符合主题配色 */
a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
    color: #fd2d5c;
    text-shadow: 0 0 8px rgba(253, 45, 92, 0.8);
}

a:focus-visible {
    outline: 2px dashed #fd2d5c;
    outline-offset: 2px;
}

/* 扫描线效果 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            rgba(253, 45, 92, 0.3) 2px,
            transparent 4px);
    background-size: 100% 2px;
    background-position: 0 0;
    pointer-events: none;
    z-index: 99;
}

/* 蓝移线效果 */
body::before {
    content: '';
    position: fixed;
    top: -200%;
    left: 0;
    width: 100%;
    height: 400%;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            rgba(0, 225, 255, 0.5) 1px,
            transparent 3px);
    background-size: 100% 5px;
    background-repeat: repeat-y;
    background-attachment: fixed;
    opacity: 0.7;
    pointer-events: none;
    z-index: 98;
    animation: blueShift 12s linear infinite;
}

/* 红移线效果 */
.red-shift {
    position: fixed;
    bottom: -200%;
    left: 0;
    width: 100%;
    height: 400%;
    background: repeating-linear-gradient(0deg,
            transparent 0px,
            rgba(255, 0, 60, 0.5) 1px,
            transparent 3px);
    background-size: 100% 5px;
    background-repeat: repeat-y;
    background-attachment: fixed;
    opacity: 0.7;
    pointer-events: none;
    z-index: 97;
    animation: redShift 50s linear infinite;
}

@keyframes blueShift {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50%);
    }
}

@keyframes redShift {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 20px;
    position: relative;
    background-color: #000;
    border: 1px solid #fd2d5c;
    box-shadow: 0 0 20px rgba(253, 45, 92, 0.2);
    z-index: 101;
}

/* 选中文字样式 */
::selection {
    background-color: #fd2d5c;
    color: #fff;
}

::-moz-selection {
    background-color: #fd2d5c;
    color: #fff;
}

header {
    margin-bottom: 40px;
    text-align: center;
}

/* 标题部分样式 */
.title-section h1 {
    font-size: 3.4rem;
    color: #fd2d5c;
    letter-spacing: 2px;
    transform: skew(-5deg);
    margin: 0;
    font-weight: bold;
    text-shadow:
        0 0 8px #fd2d5c,
        0 0 15px #fd2d5c,
        2px 0 0 rgba(255, 0, 0, 0.9),
        -2px 0 0 rgba(0, 255, 255, 0.9),
        0 2px 0 rgba(255, 0, 0, 0.7),
        0 -2px 0 rgba(0, 255, 255, 0.7);
    animation: intermittentShake 3s infinite ease-in-out;
}

/* 间歇性抖动动画 */
@keyframes intermittentShake {

    0%,
    93%,
    100% {
        transform: translateX(0);
    }

    94% {
        transform: translateX(-1px);
    }

    95% {
        transform: translateX(1px);
    }

    96% {
        transform: translateX(-1px);
    }

    97% {
        transform: translateX(1px);
    }

    98% {
        transform: translateX(-0.5px);
    }

    99% {
        transform: translateX(0.5px);
    }
}

/* 留言功能样式 */
#message-container-section {
    margin-top: 20px !important;
    display: flow-root !important;
    transition: all 0.3s ease;
}

/* 保留原有样式作为后备 */
.container.message-container {
    margin-top: 0;
    padding-top: 20px;
    display: flow-root;
}

.message-form {
    margin-top: 0;
}

.message-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    min-height: 40px;
    align-items: center;
}

.message-form input {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #fd2d5c;
    color: #ffffff;
    padding: 8px 10px;
    font-family: 'Pixel', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    height: 40px;
}

#message-name {
    min-width: 60px;
    width: 100px;
    max-width: 120px;
    flex-shrink: 1;
}

#message-content {
    flex-grow: 1;
    min-width: 150px;
    width: 100%;
    padding-right: 60px;
    box-sizing: border-box;
}

/* 内容输入框容器 */
#message-content-container {
    position: relative;
    flex: 1;
    min-width: 150px;
    height: 40px;
}

.message-form input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(253, 45, 92, 0.5);
    border-color: #ffffff;
}

/* 错误输入框样式 */
.error-input {
    border-color: #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.1) !important;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4) !important;
    transition: all 0.3s ease;
}

/* 确保textarea也应用相同的错误样式 */
textarea.error-input {
    border-color: #ff0000 !important;
    background-color: rgba(255, 0, 0, 0.1) !important;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4) !important;
}

/* 错误提示消息样式 */
.submit-error-message {
    color: #ff0000;
    font-family: 'Pixel', monospace;
    font-size: 0.9rem;
    margin-top: 5px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#char-count {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    margin: 0;
    color: #fd2d5c;
    font-size: 0.9rem;
}

.submit-button {
    flex-shrink: 0;
    background-color: #fd2d5c;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 0 24px;
    font-family: 'Pixel', monospace;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    outline: none;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.submit-button:hover {
    background-color: #ffffff;
    color: #fd2d5c;
    border-color: #fd2d5c;
    transform: scale(1.05);
}

.submit-button:active {
    transform: scale(0.95);
}

/* 移动设备上发送按钮居中 */
@media (max-width: 768px) {
    .message-form-row {
        justify-content: center;
    }

    /* 确保在按钮换行时居中显示 */
    .submit-button {
        margin-left: auto;
        margin-right: auto;
    }
}

.messages-display-area {
    width: 100%;
    min-height: 300px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
    clip-path: inset(0 0 0 0);
}

.messages-container {
    width: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.message-item {
    position: absolute;
    left: 100%;
    white-space: nowrap;
    padding: 5px 10px;
    font-family: inherit;
    font-size: 18px;
    pointer-events: none;
    z-index: 50;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    transform: translateX(0);
}

/* 响应式设计：手机设备上减小弹幕字体大小 */
@media (max-width: 768px) {
    .message-item {
        font-size: 14px;
        padding: 3px 8px;
    }
}

.message-item .message-content {
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(253, 45, 92, 0.3);
}

.message-item .message-author {
    color: #fd2d5c;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(253, 45, 92, 0.6);
}

/* 分隔图片容器 */
.background-separator {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    background: none;
    position: relative;
    z-index: 100;
}

/* 分隔图片样式 */
.separator-image {
    max-width: 80%;
    height: auto;
    image-rendering: pixelated;
    position: relative;
    animation: glitchImage 2s infinite alternate-reverse;
    filter: contrast(110%) saturate(110%);
}

/* 图片故障动画效果 */
@keyframes glitchImage {
    0% {
        transform: translate(0);
        filter: contrast(110%) saturate(110%);
    }

    2% {
        transform: translate(-2px, 0);
        filter: hue-rotate(5deg) contrast(105%) saturate(95%);
    }

    4% {
        transform: translate(1px, 0);
        filter: hue-rotate(-5deg) contrast(115%) saturate(105%);
    }

    6% {
        transform: translate(0);
        filter: contrast(110%) saturate(110%);
    }

    10% {
        transform: translate(0);
        filter: contrast(110%) saturate(110%);
    }

    12% {
        transform: translate(2px, 0);
        filter: contrast(120%) saturate(90%);
    }

    14% {
        transform: translate(-2px, 0);
        filter: contrast(90%) saturate(120%);
    }

    16% {
        transform: translate(0);
        filter: contrast(110%) saturate(110%);
    }

    25% {
        transform: translate(0);
        filter: contrast(110%) saturate(110%);
    }

    27% {
        transform: translate(0);
        filter: contrast(100%) saturate(120%) hue-rotate(10deg);
    }

    29% {
        transform: translate(0);
        filter: contrast(120%) saturate(100%) hue-rotate(-10deg);
    }

    31% {
        transform: translate(0);
        filter: contrast(110%) saturate(110%);
    }

    100% {
        transform: translate(0);
        filter: contrast(110%) saturate(110%);
    }
}

/* 容器间距调整 */
.top-container {
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.bottom-container {
    margin-top: 0;
    transition: all 0.3s ease;
}

article {
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(253, 45, 92, 0.1);
}

article:hover {
    border-color: #fd2d5c;
    background-color: rgba(253, 45, 92, 0.05);
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: none;
    font-weight: normal;
    transition: color 0.3s ease;
}

article:hover h2 {
    color: #fd2d5c;
}

p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ffffff;
}

/* 标题和计时器容器样式 */
.title-timer-container {
    text-align: center;
    position: relative;
    z-index: 101;
    transition: all 0.3s ease;
}

.offline-timer {
    padding: 0;
    margin: 0;
    font-family: 'Pixel', monospace;
}

.offline-timer p {
    margin: 5px 0;
    color: #ffffff;
    font-size: 0.9rem;
}

#offline-timer {
    font-size: 3rem;
    color: #fd2d5c;
    letter-spacing: 2px;
    transform: skew(-5deg);
    margin: 0;
    font-weight: bold;
    text-shadow:
        0 0 8px #fd2d5c,
        0 0 15px #fd2d5c,
        2px 0 0 rgba(255, 0, 0, 0.9),
        -2px 0 0 rgba(0, 255, 255, 0.9),
        0 2px 0 rgba(255, 0, 0, 0.7),
        0 -2px 0 rgba(0, 255, 255, 0.7);
    display: inline-block;
    animation: intermittentShake 3s infinite ease-in-out;
    min-width: 120px;
}

/* 宽屏模式下的时间显示 - 确保连续无空隙 */
@media (min-width: 769px) {
    #offline-timer {
        display: inline-block;
        min-width: 120px;
    }

    .timer-hours,
    .timer-minutes-seconds {
        display: inline;
        margin: 0;
        padding: 0;
    }
}

/* 手机版时间显示优化 */
@media (max-width: 768px) {
    #offline-timer {
        display: block;
        text-align: center;
        min-width: auto;
        font-size: 2.5rem;
        line-height: 1.2;
    }

    /* 小时部分单独一行 */
    .timer-hours {
        display: block;
        margin-bottom: 0.2em;
    }

    /* 分秒部分在第二行 */
    .timer-minutes-seconds {
        display: block;
        margin-top: 0.2em;
    }

    /* 确保单位符号正常显示 */
    .timer-unit {
        display: inline;
    }
}

/* 为"时"、"分"、"秒"汉字设置白色样式 */
.timer-unit {
    color: #ffffff;
    /* 白色 */
    text-shadow:
        0 0 10px #fd2d5c,
        0 0 15px #fd2d5c,
        2px 0 0 rgba(255, 0, 0, 0.9),
        -2px 0 0 rgba(0, 255, 255, 0.9);
}

/* 计时器文本样式 */
.timer-text {
    font-family: 'Pixel', monospace;
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow:
        0 0 10px #fd2d5c,
        0 0 15px #fd2d5c,
        2px 0 0 rgba(255, 0, 0, 0.9),
        -2px 0 0 rgba(0, 255, 255, 0.9);
    margin: 10px 0 0 0;
}

/* 搜索链接容器样式 - 固定在右下角 */
.search-link-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-decoration: none;
}

/* 搜索链接样式 */
.search-link {
    margin: 0;
    padding: 12px;
    border: 2px solid #fd2d5c;
    background-color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* 搜索图标样式 */
.search-link svg {
    transition: all 0.3s ease;
}

/* 悬停效果 */
a:hover .search-link {
    transform: scale(1.05);
}

a:hover .search-link svg {
    stroke: #ffffff;
}

/* 响应式设计 - 不同屏幕尺寸的样式调整 */

/* 中等屏幕 - 平板和大屏幕手机 (768px-991px) */
@media (max-width: 991px) {
    .search-link {
        padding: 10px;
    }
    
    .search-link svg {
        width: 28px;
        height: 28px;
    }
}

/* 小屏幕 - 标准手机 (576px-767px) */
@media (max-width: 767px) {
    .search-link {
        padding: 8px;
    }
    
    .search-link svg {
        width: 24px;
        height: 24px;
    }
    
    .search-link-container {
        bottom: 15px;
        right: 15px;
    }
}

/* 超小屏幕 - 小屏手机 (320px-575px) */
@media (max-width: 575px) {
    .search-link {
        padding: 6px;
    }
    
    .search-link svg {
        width: 20px;
        height: 20px;
    }
    
    .search-link-container {
        bottom: 10px;
        right: 10px;
    }
}

/* 图片部分样式 */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px;
    width: 100%;
    position: relative;
    z-index: 100;
}

/* 点击器容器样式 */
.clicker-container {
    margin: 20px auto 40px;
    transition: all 0.3s ease;
}

/* 页脚样式 */
.site-footer {
    text-align: center;
    padding: 15px;
    font-size: 0.7rem;
    color: #666;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #0a0a0a;
    margin-top: 40px;
    border-top: 2px solid #fd2d5c;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.8);
}

/* 访问计数器样式 */
.view-counter {
    font-family: 'Pixel', monospace;
    font-size: 0.9rem;
    color: #ffffff;
    margin: 10px 0;
    text-align: center;
    text-shadow: 0 0 5px rgba(253, 45, 92, 0.5);
    display: block;
}

/* 确保眼睛SVG与数字对齐 */
.view-counter svg {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 4px;
    /* 微调位置确保所有屏幕一致对齐 */
    margin-bottom: -1px;
}

.view-counter span {
    display: inline-block;
    vertical-align: bottom;
    /* 确保文字基线对齐 */
    line-height: 1;
}

.site-footer p:first-child {
    color: #fd2d5c;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    margin: 5px auto 0;
    text-align: center;
}

.footer-section {
    margin-bottom: 5px;
    padding: 5px;
    border: 1px solid #1a1a1a;
    background-color: #050505;
    border-radius: 2px;
}

.footer-section-title {
    font-weight: bold;
    color: #fd2d5c;
    margin-bottom: 3px;
    font-size: 0.8rem;
    display: block;
}

.footer-section-content {
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1.3;
    display: block;
}

/* 链接图标样式 */
.link-icon {
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.footer-section-content a:hover .link-icon {
    transform: scale(1.1);
}

/* 页脚链接样式 */
.footer-section-content a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-section-content a:hover {
    color: #fd2d5c;
    border-bottom-color: #fd2d5c;
    text-shadow: 0 0 8px #fd2d5c;
}

/* 像素化图片效果 */
.pixel-image {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border: 2px solid #ffffff;
    filter: grayscale(50%) contrast(120%) brightness(90%);
}

/* 复古滚动条 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
    border: 1px solid #fd2d5c;
}

::-webkit-scrollbar-thumb {
    background: #fd2d5c;
}

::-webkit-scrollbar-thumb:hover {
    background: #fd2d5c;
}

/* 全局点击计数器样式 */
.counter-container {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-left: 4px solid #fd2d5c;
    border-right: 4px solid #fd2d5c;
    font-family: 'Pixel', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.counter-description {
    font-size: 0.9em;
    opacity: 0.7;
    margin-top: 5px;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: center;
    color: #ffffff;
}

#global-click-counter {
    color: #fd2d5c;
    font-weight: bold;
    font-size: 2.2rem;
    transition: all 0.2s ease;
    text-shadow:
        0 0 8px rgba(253, 45, 92, 0.8),
        0 0 15px rgba(253, 45, 92, 0.6);
    display: block;
    margin: 15px 0;
    text-align: center;
}

/* 点击按钮样式 */
.click-button {
    background-color: #fd2d5c;
    color: #000000;
    border: 2px solid #ffffff;
    padding: 12px 24px;
    margin: 10px 0;
    font-family: 'Pixel', monospace;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease;
    outline: none;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.click-button:hover {
    background-color: #ffffff;
    color: #fd2d5c;
    border-color: #fd2d5c;
    transform: scale(1.05);
}

.click-button:active {
    transform: scale(0.95);
}

/* 计数器闪烁效果 - 故障风格 */
.counter-flash {
    animation: counterGlitch 0.3s ease-in-out;
}

@keyframes counterGlitch {

    0%,
    100% {
        color: #fd2d5c;
        text-shadow: 0 0 5px rgba(253, 45, 92, 0.5);
        transform: translateX(0);
    }

    20% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        transform: translateX(-2px);
    }

    40% {
        color: #fd2d5c;
        text-shadow: 0 0 8px rgba(253, 45, 92, 0.8);
        transform: translateX(2px);
    }

    60% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        transform: translateX(-1px);
    }

    80% {
        color: #fd2d5c;
        text-shadow: 0 0 5px rgba(253, 45, 92, 0.5);
        transform: translateX(1px);
    }
}

/* 干扰效果 */
.interference {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
    z-index: 99;
}

/* 响应式设计 - 不同屏幕尺寸的样式调整 */

/* 超大屏幕 - 桌面显示器和电视 (1600px+) */
@media (min-width: 1600px) {
    .container {
        max-width: 700px;
        margin: 0 auto;
        padding: 30px 30px;
    }

    .title-section h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1.1rem;
    }
}

/* 大屏幕 - 大屏幕桌面显示器 (1200px-1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
    .container {
        max-width: 650px;
        margin: 0 auto;
        padding: 25px 25px;
    }

    .title-section h1 {
        font-size: 2.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}

/* 中等屏幕 - 标准桌面显示器 (992px-1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 600px;
        margin: 0 auto;
        padding: 22px 22px;
    }

    .title-section h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}

/* 小屏幕 - 笔记本电脑和平板 (768px-991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 85%;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.75);
        padding: 20px 20px;
    }

    .title-section h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .separator-image {
        max-width: 70%;
    }
}

/* 直播状态样式 */
.title-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-status {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    font-family: 'Pixel', monospace;
    font-size: 0.9rem;
    z-index: 10;
}

/* 直播状态指示器 */
.live-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* 直播中状态 */
.live-indicator.live {
    background-color: #fd2d5c;
    animation: pulse 1.5s infinite;
}

.live-status.live .live-status-text {
    color: #fd2d5c;
    text-shadow: 0 0 5px rgba(253, 45, 92, 0.5);
}

/* 未开播状态 */
.live-indicator.offline {
    background-color: #666;
}

.live-status.offline .live-status-text {
    color: #999;
}

/* 错误状态 */
.live-status.error .live-status-text {
    color: #ff9900;
}

/* 脉冲动画 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 45, 92, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(253, 45, 92, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(253, 45, 92, 0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .live-status {
        /* Keep absolute positioning for all screen sizes */
        font-size: 0.8rem;
        padding: 4px 8px;
        right: -13px;
        top: -13px;
    }
}

/* 平板竖屏和大屏手机 (576px-767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 90%;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 18px 18px;
    }

    .title-section h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}

/* 标准手机 (376px-575px) */
@media (min-width: 376px) and (max-width: 575px) {
    .container {
        max-width: 95%;
        margin: 0 8px;
        background-color: rgba(0, 0, 0, 0.65);
        padding: 15px 15px;
        border: 1px solid #fd2d5c;
    }

    .title-section h1 {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 1.15rem;
    }

    p {
        font-size: 0.9rem;
    }
}

/* 小屏手机 (320px-375px) */
@media (min-width: 320px) and (max-width: 375px) {
    .container {
        max-width: 100%;
        margin: 0 5px;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 12px 12px;
        border: 1px solid #fd2d5c;
    }

    body {
        margin: 20px 0;
    }

    .title-section h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

    h2 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .separator-image {
        max-width: 70%;
    }
}