/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 引入自定义字体 */
@font-face {
    font-family: 'Savoye LET';
    src: url('../font/Savoye LET.ttc') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Zapfino';
    src: url('../font/Zapfino.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Songti 字体文件过大，已移除以提高加载性能 */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    min-height: 100vh;
    overflow-x: hidden;
    /* 禁用所有动画 */
    animation: none !important;
    transition: none !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

/* PC端提示遮罩 */
@media (min-width: 768px) {
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9998;
        backdrop-filter: blur(10px);
    }
    
    body::before {
        content: '';
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 500px;
        height: 650px;
        z-index: 9999;
        padding: 50px 40px;
        border-radius: 20px;
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
}

/* PC端提示内容容器 */
@media (min-width: 768px) {
    .pc-tip-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10000;
        color: #fff;
        text-align: center;
        width: 500px;
    }
    
    .pc-tip-photo {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 25px;
        border: 5px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .pc-tip-title {
        font-size: 26px;
        font-weight: 300;
        margin-bottom: 12px;
        letter-spacing: 3px;
    }
    
    .pc-tip-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
        opacity: 0.9;
        letter-spacing: 2px;
    }
    
    .pc-tip-names {
        font-size: 30px;
        font-weight: 400;
        margin-bottom: 18px;
        letter-spacing: 8px;
    }
    
    .pc-tip-date {
        font-size: 19px;
        margin-bottom: 12px;
        letter-spacing: 2px;
        font-weight: 300;
    }
    
    .pc-tip-location {
        font-size: 17px;
        opacity: 0.9;
        letter-spacing: 2px;
    }
    
    .pc-tip-message {
        font-size: 21px;
        margin-top: 45px;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        letter-spacing: 3px;
        font-weight: 300;
        opacity: 0.95;
    }
}

/* 手机端隐藏PC提示 */
@media (max-width: 767px) {
    .pc-tip-container {
        display: none !important;
    }
}

/* 主内容100%显示 */
.main-content {
    width: 100%;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* PC端主内容显示在提示层下方 */
@media (min-width: 768px) {
    .main-content {
        position: relative;
        z-index: 1;
        max-width: 414px;
        margin: 0 auto;
        opacity: 0.3;
        filter: blur(1px);
        pointer-events: none;
    }
}

/* 禁用所有动画 */
*,
*::before,
*::after {
    animation: none !important;
    transition: none !important;
}

/* 移除通用动画 */
.hidden {
    opacity: 1 !important;
    pointer-events: auto;
    visibility: visible;
}