.element {
    font-size: 32px;        /* 增大字体 */
    font-weight: bold;      /* 加粗文字 */
    color: #333;            /* 调整文字颜色 */
    line-height: 1.5;       /* 调整行高 */
}
.fa-quote-left, .fa-quote-right {
    color: #999;
    margin: 0 10px;
}
.typed-cursor {
    font-size: 24px;        /* 光标大小与文字一致 */
    font-weight: bold;      /* 光标加粗 */
    color: #333;            /* 光标颜色 */
    animation: blink 0.7s infinite; /* 保留闪烁动画 */
}
  
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.typing-effect {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    /* 添加闪烁光标效果 */
    position: relative;
}

.typing-effect::after {
    content: "|";
    position: absolute;
    right: -2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


.button-link {
    font-size: 18px;
    display: inline-block;
    padding: 8px 20px;
    background-color: powderblue;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.button-link:hover {
    background-color: black;
    color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

.scroll-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.page {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(100vh);
}

.page.active {
    opacity: 1;
    transform: translateY(0);
}

.page.prev {
    transform: translateY(-100vh);
}

.messages {
    width: 100%;
    height: 100%;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: translateY(50px);
    transition: all 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.page.active .messages {
    transform: translateY(0);
}

.main {
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.main h1, .main h2, .main h3 {
    margin-bottom: 20px;
    color: #333;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Page counter */
.page-counter {
    position: fixed;
    bottom: 20px;
    left: 95%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1em;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Mouse scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 100;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-10px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-5px); 
    }
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 16px; }
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional styles for full screen */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}