/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    overflow: hidden;
}

/* 游戏容器 */
.game-container {
    width: 100vw;
    height: 100vh;
    background-color: #2c3e50;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 游戏标题栏 */
.game-header {
    background-color: #34495e;
    color: white;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.game-header h1 {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 角色属性面板 */
.stats-panel {
    background-color: #34495e;
    padding: 15px 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-label {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.stat-bar {
    width: 100%;
    height: 20px;
    background-color: #2c3e50;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.stat-fill {
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.stat-fill.like {
    background-color: #e74c3c;
}

.stat-fill.pleasure {
    background-color: #f39c12;
}

.stat-fill.collapse {
    background-color: #95a5a6;
}

.stat-fill.train {
    background-color: #3498db;
}

.stat-fill.stamina {
    background-color: #2ecc71;
}

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* 游戏主内容区 */
.game-main {
    flex: 1;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 20px;
    padding: 20px;
    overflow: hidden;
}

/* 左侧互动按钮区 */
.interaction-panel {
    background-color: #34495e;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.interaction-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.interaction-btn:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.interaction-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 20px;
}

.sex-btn {
    background-color: #e74c3c;
    margin-top: auto;
}

.sex-btn:hover {
    background-color: #c0392b;
}

/* 中间角色展示区 */
.character-panel {
    background-color: #34495e;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.character-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.character-image {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.character-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.relationship-status {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.relationship-text {
    color: #f39c12;
}

/* 右侧身体部位区 */
.body-parts-panel {
    background-color: #34495e;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.body-part {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.body-part:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.body-part-image {
    width: 100%;
    height: 100px;
    background-color: #2c3e50;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.body-part-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body-part-info h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
}

.body-part-info p {
    color: #bdc3c7;
    font-size: 12px;
    margin-bottom: 3px;
    text-align: center;
}

/* 对话面板 */
.dialogue-panel {
    background-color: #34495e;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.dialogue-character {
    color: #f39c12;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.dialogue-text {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    background-color: #2c3e50;
    padding: 15px;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dialogue-text:hover {
    background-color: #34495e;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.7);
}

/* 剧情选择容器 */
.choices-container {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 选择选项 */
.choice-option {
    background-color: #3498db;
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.choice-option:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.choice-option:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 剧情标题样式 */
.dialogue-text.story-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #f39c12;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2c3e50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* 游戏日历按钮样式 */
.game-calendar-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.game-calendar-btn:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* 功能按钮区 */
.function-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
}

.gallery-btn,
.save-btn,
.load-btn,
.view-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gallery-btn:hover,
.save-btn:hover,
.load-btn:hover,
.view-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.save-btn,
.view-btn {
    background-color: #3498db;
}

.save-btn:hover,
.view-btn:hover {
    background-color: #2980b9;
}

.load-btn {
    background-color: #2ecc71;
}

.load-btn:hover {
    background-color: #27ae60;
}

/* 存档读档模态框 */
.save-load-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.save-load-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.save-close,
.load-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.save-close:hover,
.save-close:focus,
.load-close:hover,
.load-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.save-title,
.load-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 存档输入容器 */
.save-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

#save-name {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background-color: #2c3e50;
    color: white;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

#save-name:focus {
    outline: none;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.5), 0 0 0 2px #3498db;
}

.save-button {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.save-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* 存档列表 */
.save-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.save-item {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.save-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.save-item-info {
    flex: 1;
}

.save-item-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.save-item-date {
    color: #bdc3c7;
    font-size: 12px;
    margin-bottom: 5px;
}

.save-item-stats {
    color: #7f8c8d;
    font-size: 12px;
    display: flex;
    gap: 15px;
}

.save-item-actions {
    display: flex;
    gap: 10px;
}

.load-button,
.delete-button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.load-button {
    background-color: #2ecc71;
    color: white;
}

.load-button:hover {
    background-color: #27ae60;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.delete-button {
    background-color: #e74c3c;
    color: white;
}

.delete-button:hover {
    background-color: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

/* 存档列表滚动条 */
.save-list::-webkit-scrollbar {
    width: 8px;
}

.save-list::-webkit-scrollbar-track {
    background: #2c3e50;
    border-radius: 4px;
}

.save-list::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

.save-list::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .function-buttons {
        flex-direction: column;
        top: 10px;
        right: 10px;
    }
    
    .save-input-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .save-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .save-item-actions {
        justify-content: center;
    }
}

/* CG模态框样式 */
.cg-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.cg-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.cg-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.cg-close:hover,
.cg-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.cg-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cg-image {
    width: 100%;
    height: 400px;
    background-color: #2c3e50;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #bdc3c7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cg-description {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #2c3e50;
    border-radius: 8px;
}

.cg-next {
    display: block;
    margin: 0 auto;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cg-next:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* 收集册模态框样式 */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.gallery-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.gallery-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.gallery-close:hover,
.gallery-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.gallery-title {
    color: #f39c12;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.gallery-item.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-item.locked:hover {
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.gallery-item-image {
    width: 100%;
    height: 120px;
    background-color: #34495e;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #bdc3c7;
}

.gallery-item-title {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.gallery-item-description {
    color: #bdc3c7;
    font-size: 12px;
    line-height: 1.3;
}

.gallery-item.locked::after {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.7;
}

/* 查看菜单模态框样式 */
.view-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.view-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.view-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.view-close:hover,
.view-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.view-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.view-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.view-menu-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-menu-btn:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* 日记模态框样式 */
.diary-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.diary-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    gap: 20px;
}

.diary-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.diary-close:hover,
.diary-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.diary-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.diary-list {
    flex: 1;
    max-width: 250px;
    overflow-y: auto;
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.diary-item {
    background-color: #34495e;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.diary-item:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.diary-item.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.diary-item.locked:hover {
    transform: none;
    background-color: #34495e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.diary-item-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.diary-item-date {
    color: #bdc3c7;
    font-size: 12px;
}

.diary-content {
    flex: 2;
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
}

.diary-content h3 {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.diary-content-date {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid #34495e;
    padding-bottom: 10px;
}

.diary-content-text {
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

/* 成就模态框样式 */
.achievements-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.achievements-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.achievements-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.achievements-close:hover,
.achievements-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.achievements-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.achievements-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.achievement-item {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 15px;
    align-items: center;
}

.achievement-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.achievement-item.locked {
    opacity: 0.5;
}

.achievement-item-icon {
    font-size: 48px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #34495e;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.achievement-item-info {
    flex: 1;
}

.achievement-item-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.achievement-item-description {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.4;
}

/* 结局模态框样式 */
.endings-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.endings-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.endings-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.endings-close:hover,
.endings-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.endings-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.endings-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.ending-item {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 15px;
    align-items: center;
}

.ending-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.ending-item.locked {
    opacity: 0.5;
}

.ending-item-icon {
    font-size: 48px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #34495e;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ending-item-info {
    flex: 1;
}

.ending-item-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.ending-item-description {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.4;
}

/* 日历模态框样式 */
.calendar-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.calendar-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.calendar-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.calendar-close:hover,
.calendar-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.calendar-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.calendar-content {
    color: white;
}

.calendar-current-date {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.calendar-current-date h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.calendar-holiday {
    color: #f39c12;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.calendar-holidays-list {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.calendar-holidays-list h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f39c12;
}

.calendar-holidays-list ul {
    list-style-type: none;
    padding: 0;
}

.calendar-holidays-list li {
    padding: 10px 0;
    border-bottom: 1px solid #34495e;
    color: #bdc3c7;
}

.calendar-holidays-list li:last-child {
    border-bottom: none;
}

/* 外出模态框样式 */
.outdoor-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.outdoor-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.outdoor-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.outdoor-close:hover,
.outdoor-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.outdoor-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.outdoor-locations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.location-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 25px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.location-btn:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* 售货店模态框样式 */
.store-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.store-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.store-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.store-close:hover,
.store-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.store-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.store-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.store-tab {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.store-tab:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.store-tab.active {
    background-color: #3498db;
}

.store-content {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.store-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.store-item {
    background-color: #34495e;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.store-item-name {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.store-item-price {
    color: #f39c12;
    font-size: 16px;
    margin-bottom: 10px;
}

.store-item-description {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.store-item-buy-btn {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.store-item-buy-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.store-item-buy-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* 道具模态框样式 */
.item-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.item-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.item-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.item-close:hover,
.item-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.item-title {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.item-content {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.item-inventory {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.item-inventory-item {
    background-color: #34495e;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.item-inventory-item-name {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.item-inventory-item-description {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.item-inventory-item-use-btn {
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.item-inventory-item-use-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* SEX界面样式 */
.sex-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.sex-modal-content {
    background-color: #34495e;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.sex-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1001;
}

.sex-close:hover,
.sex-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.sex-title {
    color: #f39c12;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* SEX状态条 */
.sex-stats-panel {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sex-stat-item {
    margin-bottom: 15px;
}

.sex-stat-item:last-child {
    margin-bottom: 0;
}

.sex-stat-label {
    display: block;
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}

.sex-stat-bar {
    width: 100%;
    height: 25px;
    background-color: #2c3e50;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    border: 2px solid #34495e;
}

.sex-stat-fill {
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.sex-stat-fill.player-stamina {
    background-color: #2ecc71;
}

.sex-stat-fill.player-pleasure {
    background-color: #e74c3c;
}

.sex-stat-fill.yujie-pleasure {
    background-color: #f39c12;
}

.sex-stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* SEX主内容区 */
.sex-main-content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 500px;
}

/* 左侧图片区域 */
.sex-image-area {
    flex: 1;
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sex-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #34495e;
    border-radius: 8px;
    overflow: hidden;
}

#sex-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sex-image-placeholder {
    display: none;
}

/* 右侧操作区域 */
.sex-right-panel {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* SEX操作按钮 */
.sex-actions {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    flex: 1;
}

.sex-action-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.sex-action-row:last-child {
    margin-bottom: 0;
}

.sex-action-btn {
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    justify-content: center;
    flex: 1;
    min-height: 50px;
}

.sex-action-btn:hover {
    background-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.sex-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sex-action-btn.insert-btn {
    background-color: #e74c3c;
}

.sex-action-btn.insert-btn:hover {
    background-color: #c0392b;
}

/* SEX对话面板 */
.sex-dialogue-panel {
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sex-dialogue-character {
    color: #f39c12;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sex-dialogue-text {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    background-color: #34495e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 结束SEX按钮 */
.sex-end-btn {
    display: block;
    margin: 0 auto;
    background-color: #95a5a6;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sex-end-btn:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .game-main {
        grid-template-columns: 150px 1fr 150px;
        gap: 15px;
        padding: 15px;
    }
    
    .character-image img {
        width: 250px;
    }
}

@media (max-width: 900px) {
    .game-main {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
    }
    
    .interaction-panel {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .interaction-btn {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 120px;
    }
    
    .body-parts-panel {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .body-part {
        flex: 1 1 calc(33.333% - 10px);
        min-width: 150px;
    }
    
    .cg-modal-content,
    .gallery-modal-content,
    .diary-modal-content,
    .achievements-modal-content,
    .endings-modal-content,
    .calendar-modal-content,
    .outdoor-modal-content,
    .store-modal-content,
    .sex-modal-content,
    .achievement-image-modal-content,
    .achievement-video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .gallery-content,
    .achievements-list,
    .endings-list,
    .store-items {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .diary-modal-content {
        flex-direction: column;
    }
    
    .diary-list {
        max-width: 100%;
    }
    
    .sex-action-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sex-action-btn {
        min-width: auto;
    }
}

/* 成就图片模态框 */
.achievement-image-modal {
    display: block;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.achievement-image-modal-content {
    background-color: #2c3e50;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    text-align: center;
    position: relative;
}

.achievement-image-close {
    color: #aaa;
    float: right;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1101;
}

.achievement-image-close:hover,
.achievement-image-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.achievement-image-title {
    text-align: center;
    margin-bottom: 20px;
    color: #e74c3c;
    font-size: 28px;
}

.achievement-image-container {
    margin: 20px 0;
}

.achievement-image-container img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* 成就视频模态框 */
.achievement-video-modal {
    display: block;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.achievement-video-modal-content {
    background-color: #2c3e50;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1200px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    text-align: center;
    position: relative;
}

.achievement-video-close {
    color: #aaa;
    float: right;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1101;
}

.achievement-video-close:hover,
.achievement-video-close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.achievement-video-title {
    text-align: center;
    margin-bottom: 20px;
    color: #e74c3c;
    font-size: 28px;
}

.achievement-video-container {
    margin: 20px 0;
}

.achievement-video-container video {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background-color: #000;
}