* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    margin-bottom: 40px;
    text-align: center;
}

.title-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.character-image {
    margin-bottom: 40px;
    text-align: center;
}

.character-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.description {
    max-width: 600px;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.description p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.link-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.link-button:hover {
    background-color: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.link-button:active {
    transform: translateY(0);
}

footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
}

footer p {
    color: #888;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .title-logo {
        max-width: 300px;
    }
    
    .character-image img {
        max-width: 100%;
    }
    
    .description p {
        font-size: 16px;
    }
    
    .links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .link-button {
        width: 100%;
        text-align: center;
    }
}
