* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: text;
    -webkit-user-select: text;
}
html, body {
    height: 100%;
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
/* 加上no‑select后：页面+弹窗，全部禁止文字选中，弹窗内部也不会恢复 */
body.no-select,
body.no-select * {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}
body {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #333;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(173, 216, 230, 0.3) 0%, transparent 40%);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}
/* 添加背景图片容器 */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.dmoe.cc/random.php');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0.7;
    pointer-events: none;
}
.page-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}
.main-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 10;
}
/* ===== 副页样式 ===== */
.clock-page, .about-page, .schedule-page, .download-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
    animation: fadeIn 0.5s ease;
    pointer-events: auto;
}
/* 弹窗遮罩伪元素，用于点击空白关闭 */
.clock-page::before,
.about-page::before,
.schedule-page::before,
.download-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: -1;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.clock-display {
    text-align: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #ffd1dc;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.3);
}
.time {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    color: #ff69b4;
    margin-bottom: 10px;
    font-family: 'Arial Rounded MT Bold', 'Hiragino Sans GB', sans-serif;
}
.date {
    font-size: 1.4rem;
    opacity: 0.9;
    letter-spacing: 2px;
    color: #666;
}
.back-btn {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    font-weight: bold;
    border: 2px solid #ff9a9e;
    z-index: 101;
    margin-top: 20px;
}
.back-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}
/* ===== 特别：番剧页返回按钮下移 ===== */
.schedule-page .back-btn {
    margin-top: 20px;
}
.about-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    border: 2px solid #ffd1dc;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: hidden;
}
.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff69b4;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
}
.about-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}
/* ===== 番剧时间表页样式 ===== */
.schedule-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    width: 90%;
    border: 2px solid #ffd1dc;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.3);
    color: #333;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 80vh;
    max-height: 800px;
}
.schedule-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ff69b4;
    font-weight: bold;
}
.schedule-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    overflow-y: auto;
    padding: 10px;
    flex: 1;
}
.schedule-item {
    background: linear-gradient(135deg, #fff0f5, #ffd1dc);
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.2s;
    border: 1px solid #ffb6c1;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.1);
}
.schedule-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ffd1dc, #ffb6c1);
    box-shadow: 0 6px 12px rgba(255, 105, 180, 0.2);
}
.schedule-day {
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: 'Arial Rounded MT Bold', sans-serif;
    text-align: center;
    border-bottom: 2px solid #ffb6c1;
    padding-bottom: 5px;
}
.schedule-anime {
    font-size: 0.95rem;
    margin: 4px 0;
    color: #666;
    padding: 3px 0;
    border-bottom: 1px dashed #ffb6c1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.schedule-anime:last-child {
    border-bottom: none;
}
.anime-time {
    font-size: 0.8rem;
    color: #999;
}
.loading {
    text-align: center;
    font-size: 1.2rem;
    color: #ff69b4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.error-message {
    text-align: center;
    color: #ff69b4;
    padding: 20px;
    font-size: 1.1rem;
}
.refresh-btn {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.2);
    font-weight: bold;
    margin-top: 10px;
}
.refresh-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.4);
}
/* ===== 下载页面样式 ===== */
.download-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    border: 2px solid #ffd1dc;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: auto;
    max-height: 80vh;
}
.download-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff69b4;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
}
.download-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-family: 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}
.software-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.software-item {
    background: linear-gradient(135deg, #fff0f5, #ffd1dc);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #ffb6c1;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.1);
}
.software-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ffd1dc, #ffb6c1);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.3);
}
.software-icon {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 15px;
}
.software-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 10px;
}
.software-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}
.download-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #ff9a9e;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.2);
}
.download-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.4);
}
/* ===== 主卡片 ===== */
.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.3);
    border: 2px solid #ffd1dc;
    width: 100%;
    max-width: 800px;
    text-align: center;
    animation: fadeInCard 1s ease-out;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.1), rgba(173, 216, 230, 0.1));
    z-index: -1;
    border-radius: 25px;
}
@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.avatar-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    position: relative;
}
.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #ffb6c1;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    cursor: pointer;
    z-index: 20;
    user-select: none;
    -webkit-user-select: none;
}
.avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}
.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.5);
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(255, 105, 180, 0.3);
    color: #ff69b4;
    letter-spacing: 1px;
    font-family: 'Arial Rounded MT Bold', 'Hiragino Sans GB', sans-serif;
}
.quote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
    font-style: italic;
    padding: 0 20px;
    font-family: 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}
.extra-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.extra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    min-width: 180px;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ff9a9e;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.2);
}
.extra-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.4);
}
.qq-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.qq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #a2cfff, #b6d7ff);
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #a2cfff;
    box-shadow: 0 4px 10px rgba(162, 207, 255, 0.3);
}
.qq-btn:hover {
    background: linear-gradient(45deg, #7fbfff, #a2cfff);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(162, 207, 255, 0.4);
}
.qq-btn.primary {
    background: linear-gradient(45deg, #00aced, #00bff3);
    border: 2px solid #00aced;
}
.music-player {
    margin-top: 25px;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.8), rgba(255, 255, 255, 0.8));
    border-radius: 15px;
    padding: 15px;
    border: 1px solid #ffd1dc;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.1);
}
.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.music-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    border: 2px solid #ff9a9e;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.2);
}
.music-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(255, 105, 180, 0.3);
}
.music-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}
.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.volume-slider {
    width: 100px;
    height: 6px;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    border: 1px solid #ff9a9e;
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff69b4, #ff9a9e);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #ff9a9e;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.2);
}
.social-link:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff9a9e);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 105, 180, 0.3);
}
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}
.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    color: #ff69b4;
}
.floating-element:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; }
.floating-element:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; }
.floating-element:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 3s; }
.floating-element:nth-child(5) { top: 40%; left: 15%; animation-delay: 4s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}
@media (max-width: 768px) {
    .time {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .date {
        font-size: 1rem;
        word-break: break-all;
    }
    .card {
        padding: 25px 15px;
    }
    .name {
        font-size: 1.8rem;
    }
    .quote {
        font-size: 1rem;
        padding: 0 10px;
    }
    .avatar {
        width: 100px;
        height: 100px;
    }
    .qq-buttons, .extra-buttons {
        flex-direction: column;
        align-items: center;
    }
    .qq-btn, .extra-btn {
        width: 220px;
        justify-content: center;
    }
    .about-content {
        padding: 20px;
    }
    .about-content h2 {
        font-size: 1.6rem;
    }
    .about-content p {
        font-size: 1rem;
    }
    /* 移动端番剧时间表优化 */
    .schedule-content {
        width: 95%;
        padding: 20px 15px;
        height: 90vh;
    }
    .schedule-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .schedule-list {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 5px;
    }
    .schedule-item {
        padding: 12px;
    }
    .schedule-day {
        font-size: 1rem;
    }
    .schedule-anime {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .anime-time {
        margin-top: 5px;
    }
    .schedule-page .back-btn {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 1rem;
    }
    /* 移动端下载页面优化 */
    .download-content {
        padding: 20px;
        max-height: 85vh;
    }
    .download-content h2 {
        font-size: 1.6rem;
    }
    .download-content p {
        font-size: 1rem;
    }
    .software-list {
        grid-template-columns: 1fr;
    }
    .software-item {
        padding: 15px;
    }
    .software-name {
        font-size: 1.1rem;
    }
    .download-page .back-btn {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* ===== 页脚样式 ===== */
.site-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #ff69b4;
    padding: 20px 0;
    z-index: 200;
    font-weight: bold;
}
/* ===== 隐藏副页版权信息 ===== */
.clock-page ~ .site-footer,
.about-page ~ .site-footer,
.schedule-page ~ .site-footer,
.download-page ~ .site-footer {
    display: none;
}
/* ===== Live2D 样式 ===== */
#live2d-widget {
    position: fixed !important;
    right: 20px;
    bottom: 20px;
    z-index: 9999 !important;
    pointer-events: auto;
}
/* 二次元装饰元素 */
.kawaii-decoration {
    position: absolute;
    font-size: 1.5rem;
    color: #ff69b4;
    opacity: 0.3;
    z-index: 0;
}
.decoration-1 { top: 10%; left: 5%; }
.decoration-2 { top: 15%; right: 8%; }
.decoration-3 { bottom: 15%; left: 7%; }
.decoration-4 { bottom: 10%; right: 5%; }
.decoration-5 { top: 50%; left: 2%; }
.decoration-6 { top: 30%; left: 8%; }
.decoration-7 { bottom: 30%; right: 7%; }
.decoration-8 { top: 20%; right: 3%; }
/* ===== 启动界面样式 ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}
.loading-content {
    text-align: center;
    position: relative;
    width: 300px;
    height: 400px;
}
.loading-book {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}
.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd1dc, #ffb6c1);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    border: 3px solid #ff69b4;
    overflow: hidden;
}
.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23ff69b4" stroke-width="0.5" opacity="0.3"/><path d="M20,20 Q50,5 80,20 T95,50 T80,80 T50,95 T20,80 T5,50 T20,20" stroke="%23ff69b4" stroke-width="0.3" fill="none" opacity="0.2"/></svg>');
    opacity: 0.3;
}
.loading-logo {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
    animation: pulse 2s infinite;
}
.loading-title {
    font-size: 1.8rem;
    color: #ff69b4;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.loading-subtitle {
    font-size: 1.2rem;
    color: #ff69b4;
    margin-bottom: 25px;
    opacity: 0.8;
}
.loading-text {
    font-size: 1.1rem;
    color: #ff69b4;
    font-weight: bold;
    position: relative;
}
.loading-dots::after {
    content: '...';
    animation: dots 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}
.page-turn {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6));
    border-radius: 0 15px 15px 0;
    animation: pageTurn 3s infinite;
}
@keyframes pageTurn {
    0% { opacity: 0; transform: rotateY(0deg); }
    50% { opacity: 0.6; transform: rotateY(-20deg); }
    100% { opacity: 0; transform: rotateY(0deg); }
}
.loading-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.loading-decor {
    position: absolute;
    font-size: 1.5rem;
    color: #ff69b4;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}
.decor-1 { top: 10%; left: 15%; animation-delay: 0s; }
.decor-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.decor-3 { bottom: 15%; left: 20%; animation-delay: 1s; }
.decor-4 { bottom: 25%; right: 15%; animation-delay: 1.5s; }
.decor-5 { top: 40%; left: 5%; animation-delay: 2s; }
.loading-seal {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ff6b6b, #ff9a9e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}
.global-no-select,
.global-no-select *{
    user-select:none !important;
    -webkit-user-select:none !important;
    -moz-user-select:none !important;
    -ms-user-select:none !important;
}
