body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    background: black;
    color: #00ff00;
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 20vh;
}

#social-buttons button {
    background: transparent;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
}

#scrolling-text {
    font-size: 24px;
    margin-top: 50px;
}

#scrolling-text::after {
    content: '|';
    animation: blink 0.7s infinite;
}

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

/* 添加其他必要的样式 */

body {
    margin: 0;
    overflow: hidden;
    background: black;
}

#Matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    text-align: center;
    width: 80%;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    z-index: 2;
}

#centerImage {
    display: block;
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    border: 2px solid #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}