/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

::selection {
    background-color: #fbb6ce;
    color: #ffffff;
}

body {
    background-color: #fdf2f4;
    color: #4a5568;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    position: relative;
    overflow-x: hidden;
}

.pink-btn {
    background: linear-gradient(135deg, #f687b3 0%, #ed64a6 100%);
    transition: all 0.3s ease;
}

.pink-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(237, 100, 166, 0.3);
}

.card-shadow {
    box-shadow: 0 10px 25px -5px rgba(246, 135, 179, 0.15), 0 8px 10px -6px rgba(246, 135, 179, 0.1);
}

/* 全屏樱花动画 Canvas */
#sakura-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

main, header, footer, section {
    position: relative;
    z-index: 10;
}

/* 玩家头像标签样式 */
.player-tag {
    background: #fff0f5;
    border: 1px solid #fbb6ce;
    color: #db2777;
    padding: 2px 10px;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.player-tag:hover {
    transform: scale(1.05);
}
