/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: transparent;
    overflow: hidden;
}

.scene {
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* 背景样式 */
.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* 移除字段图标相关样式 */
.field-icons {
    display: none;
}

.field-icon {
    display: none;
}

/* 圆桌样式 */
.round-table {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: #1a237e;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* 小精灵基础样式 */
.spirit {
    position: absolute;
    width: 60px;
    height: 60px;
    transition: all 0.5s ease;
}

.spirit-body {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}

/* 文字标签样式 */
.spirit-label {
    position: absolute;
    white-space: nowrap;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* 防止标签影响鼠标事件 */
}

.spirit:hover .spirit-label {
    opacity: 1;
}

.spirit-label .name {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.spirit-label .description {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

/* LAMP小精灵 */
.lamp-spirit {
    top: 30%;
    left: 30%;
}

.lamp-spirit .spirit-body {
    background: #2196f3;
}

.lamp-spirit .spirit-label {
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
}

.glasses {
    position: absolute;
    width: 40px;
    height: 20px;
    border: 3px solid #333;
    border-radius: 10px;
    top: 20px;
    left: 10px;
}

/* APD3小精灵 */
.apd3-spirit {
    top: 30%;
    right: 30%;
}

.apd3-spirit .spirit-body {
    background: #e91e63;
    border-radius: 30px;
}

.apd3-spirit .spirit-label {
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

/* DRAMP小精灵 */
.dramp-spirit {
    bottom: 30%;
    left: 30%;
}

.dramp-spirit .spirit-body {
    background: #4caf50;
}

.dramp-spirit .spirit-label {
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
}

/* DBAASP小精灵 */
.dbaasp-spirit {
    bottom: 30%;
    right: 30%;
}

.dbaasp-spirit .spirit-body {
    background: #ff9800;
}

.dbaasp-spirit .spirit-label {
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

/* SPADE引导员 */
.spade-guide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.guide-body {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
    animation: pulse 2s ease-in-out infinite;
}

.spade-guide .spirit-label {
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    text-align: center;
    width: 200px;
}

/* 动画关键帧 */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 合体效果 */
.fusion-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0;
    transition: opacity 1s ease;
}

.data-gem {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2196f3, #e91e63, #4caf50, #ff9800);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 最终展示 */
.final-showcase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slogan {
    margin-top: 20px;
    font-size: 1.5em;
    color: #1976d2;
    font-weight: bold;
} 