/* 游戏布局 */
.game-layout {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* 左侧侧边栏 */
.sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: var(--shadow);
}

.sidebar-header {
    padding: 25px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
    position: relative;
}

.sidebar-header h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.player-name-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: bold;
    margin-bottom: 15px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* 游戏状态 */
.game-status {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin: 0 15px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    font-size: 1rem;
}

.status-item .status-label {
    color: var(--text-light);
    font-weight: bold;
}

.status-item .status-value {
    font-size: 1.2rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 玩家属性 */
.player-attributes {
    padding: 20px;
    flex: 1;
}

.player-attributes h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color);
    margin: 20px 0 15px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 8px;
    position: relative;
}

.player-attributes h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-2);
    border-radius: 1px;
}

.attribute-item, .skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 10px 15px;
    background: rgba(245, 245, 245, 0.7);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.attribute-item:hover, .skill-item:hover {
    background: rgba(233, 233, 233, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.attribute-item .attribute-label, .skill-item .skill-label {
    color: var(--text-color);
    font-weight: bold;
}

.attribute-item .attribute-value, .skill-item .skill-value {
    color: var(--text-light);
    font-weight: bold;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 侧边栏按钮 */
.sidebar-buttons {
    padding: 20px;
    border-top: 1px solid var(--light-gray);
}

.sidebar-button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}