/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(27,29,30);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
}

/* Developer Name */
.developer-name {
    margin-bottom: 24px;
}

.developer-name h1 {
    font-size: 7vw;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    width: 100%;
    max-width: 800px;
    min-width: 300px;
    margin: 0 auto;
}

/* 主页介绍区样式 */
.introduction-home {
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding-left: 20px;
}
.introduction-home p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 10px;
}

/* Social Media Links */
.social-links {
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.social-button {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s cubic-bezier(.4,1.3,.6,1), filter 0.18s;
}

.social-button img {
    width: 40px;
    height: 40px;
    display: block;
    filter: brightness(0) invert(1);
}

.social-button:hover {
    transform: translateY(-6px) scale(1.18);
    filter: brightness(1.5) drop-shadow(0 2px 8px #fff2);
}

/* Game Section */
.game-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-link {
    display: inline-block;
    text-decoration: none;
}

.game-image {
    width: 135%;
    max-width: 2500px;
    min-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    margin-bottom: 2px;
    flex-shrink: 1;
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.header-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    margin-top: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .developer-name h1 {
        font-size: 10vw;
        width: 100%;
        min-width: 200px;
    }
    
    .introduction-home p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .game-image {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        margin-top: 2px;
        margin-bottom: 2px;
        margin-left: auto;
        margin-right: auto;
        transform: none;
    }
    
    .social-button {
        width: 40px;
        height: 40px;
    }
    
    .social-button img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .developer-name h1 {
        font-size: 8vw;
    }
    
    .social-button {
        width: 32px;
        height: 32px;
    }
    
    .social-button img {
        width: 24px;
        height: 24px;
    }
}

.developer-logo {
    display: block;
    max-width: 800px;
    width: 100%;
    min-width: 300px;
    margin: 0 auto 8px auto;
    height: auto;
}

.footer-copyright {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin: 20px 0 10px 0;
    letter-spacing: 1px;
}

/* contact页面介绍区样式 */
.introduction-contact {
    font-size: 1.25rem;
    color: #eee;
    margin-top: 40px;
    margin-bottom: 30px;
    max-width: 750px;
    width: 100%;
    text-align: center;
    align-self: center;
    margin-left: 30px;
}
.introduction-contact p {
    font-size: 1.65rem;
    color: #eee;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0px;
}
.introduction-contact .after-discord {
    margin-top: 80px;
} 