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

body {
    background: #dcd6cc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "STKaiti", "华文楷书", "楷体", serif;
    position: relative;
    overflow: hidden;
}

.landscape {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #f3ecd9;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.center-card {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 85%;
    background: rgba(250, 245, 235, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 48px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 200, 170, 0.6);
}

.lantern {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.6rem;
    opacity: 0.55;
}

.lantern-line {
    width: 1px;
    height: 16px;
    background: #8f7a5a;
}

.lantern-body {
    width: 20px;
    height: 26px;
    background: #dbbc8c;
    border-radius: 50% 50% 40% 40%;
}

.site-name {
    font-size: 2.2rem;
    font-weight: 400;
    color: #4d3e28;
    letter-spacing: 6px;
    margin: 0.2rem 0;
}

.poem {
    font-size: 0.7rem;
    color: #a6895f;
    font-style: italic;
    border-top: 0.5px solid #ddcfb5;
    display: inline-block;
    padding-top: 0.6rem;
    margin-top: 0.5rem;
}

.footer {
    margin-top: 1.8rem;
    font-size: 0.65rem;
    color: #b8a57e;
    line-height: 1.6;
}

.footer a {
    color: #8e7856;
    text-decoration: none;
    border-bottom: 0.5px dotted #cebc9b;
}

.footer a:hover {
    color: #5e4a30;
}

.beian-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 2px;
    opacity: 0.7;
}

.leaf-deco {
    position: fixed;
    bottom: 15px;
    right: 18px;
    font-size: 1.1rem;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

.bird-deco {
    position: fixed;
    top: 25px;
    left: 20px;
    font-size: 0.9rem;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 560px) {
    .site-name {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    .footer {
        font-size: 0.6rem;
    }
}