.team-container {
    position: relative;
}
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999;
}
/* team.html 独立样式 */
.team-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}
.team-photo {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.team-figure {
    margin: 0 0 30px 0;
}
.team-caption {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}
.team-members h2 {
    color: #6a009a;
    font-size: 2em;
    margin-bottom: 20px;
}
.member-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.member-grid li {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
}
.acknowledgements {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 40px 0 30px 0;
}
.ack-title {
	color: #5a2ca0;
	font-size: 2em;
	font-weight: bold;
	margin-bottom: 16px;
	letter-spacing: 2px;
}
.ack-content {
	color: #6a009a;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	line-height: 1.5em;
}
