/* 像素风格Office界面样式 */

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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #63b3ed;
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: #63b3ed;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-text p {
    font-size: 14px;
    color: #a0aec0;
}

/* 办公室容器 */
.office-container {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(99, 179, 237, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 状态控制 */
.status-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.status-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.status-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 办公室场景 */
.office-scene {
    position: relative;
    height: 500px;
    background: #1a365d;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 4px solid #2d3748;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .office-scene {
        height: 400px;
    }
}