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

body {
    font-family: 'Microsoft YaHei', '微软雅黑', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: #000000;
    background-color: #ffffff;
    padding: 40px;
}

/* 主容器 - 三栏布局 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
    display: grid;
    grid-template-columns: 300px 1fr 200px;
    gap: 30px;
    padding: 30px;
}

/* 左栏样式 */
.left-column {
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.personal-info h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
}

.personal-info .title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000000;
    line-height: 1.3;
}

.personal-info .description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-align: justify;
}

.contact-info h3,
.personal-tags h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 20px;
    color: #000000;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 3px;
    color: #000000;
    font-size: 15px;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
    font-size: 15px;
}

.contact-info a:hover {
    text-decoration: none;
    color: #0052a3;
}

/* 左栏独立游戏样式 */
.left-column .games {
    margin-top: 20px;
}

.left-column .games h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000000;
}

.left-column .game-entry {
    margin-bottom: 8px;
}

.left-column .game-entry h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.left-column .game-entry h4 a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.left-column .game-entry h4 a:hover {
    text-decoration: none;
    color: #0052a3;
}

.left-column .game-entry p {
    font-size: 14px;
    color: #000000;
}

/* 中栏样式 */
.middle-column {
    padding: 0 20px;
}

.middle-column section {
    margin-bottom: 25px;
}

.middle-column h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 3px;
}

.middle-column h2 a {
    color: #000000;
    text-decoration: none;
}

.middle-column h2 a:hover {
    color: #0066cc;
    text-decoration: none;
}

/* Invisible Rabbit 工作室样式 */
.studio {
    margin-bottom: 25px;
}

.studio-description {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.game-showcase {
    margin-top: 10px;
}

.game-image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.game-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 5px;
}

.game-image-container:hover .game-overlay {
    opacity: 1;
}

.game-title-link {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    padding: 10px;
}

.game-title-link:hover {
    color: #ccc;
    text-decoration: none;
}



/* 出版著作样式 */
.publications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.publications-column {
    display: flex;
    flex-direction: column;
}

.publication-entry {
    margin-bottom: 10px;
    display: block;
}

.pub-title {
    font-weight: bold;
    font-size: 15px;
    color: #000000;
    display: block;
    margin-bottom: 2px;
}

.pub-details {
    font-size: 14px;
    color: #000000;
    display: block;
    margin-bottom: 1px;
}



/* 文章发表样式 */
.article-entry {
    margin-bottom: 10px;
}

.article-title {
    font-weight: bold;
    font-size: 15px;
    color: #000000;
    display: block;
    margin-bottom: 2px;
}

.article-details {
    font-size: 14px;
    color: #000000;
    display: block;
    line-height: 1.3;
}

/* 右栏样式 */
.right-column {
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.right-column section {
    margin-bottom: 20px;
}

.right-column h2 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2px;
}

/* 游戏作品样式 */
.game-entry {
    margin-bottom: 8px;
}

.game-entry h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.game-entry h4 a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.game-entry h4 a:hover {
    text-decoration: none;
    color: #0052a3;
}

.game-entry p {
    font-size: 14px;
    color: #000000;
}

/* 策划作品样式 */
.planning-entry {
    margin-bottom: 8px;
    display: block;
}

.planning-title {
    font-weight: bold;
    font-size: 14px;
    color: #000000;
    display: block;
}

.planning-author {
    font-size: 14px;
    color: #000000;
    display: block;
}

.planning-publisher {
    font-size: 13px;
    color: #000000;
    display: block;
}

/* 漫画作品样式 */
.comic-entry {
    margin-bottom: 6px;
    display: block;
}

.comic-title {
    font-size: 14px;
    color: #000000;
    display: block;
    font-weight: bold;
}

.comic-publisher {
    font-size: 13px;
    color: #000000;
    display: block;
}



/* 页脚样式 */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 10px;
    color: #000000;
}

footer a {
    color: #000000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: none;
    color: #333333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .left-column,
    .right-column {
        border: none;
        padding: 0;
    }

    .middle-column {
        padding: 0;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
    }

    .personal-info h1 {
        font-size: 16px;
    }
}