* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 60px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 400;
}

.bio {
    margin-bottom: 40px;
}

.bio-intro {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-chip {
    background: linear-gradient(135deg, #f0f2ff 0%, #e8eaff 100%);
    color: #5560cc;
    border: 1px solid #d0d4ff;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-container {
    margin-bottom: 30px;
}

.divider {
    height: 1px;
    background: #eee;
    margin: 30px 0;
}

.footer {
    color: #999;
    font-size: 14px;
    margin-top: 20px;
}

.app-icon {
    margin-right: 8px;
}

/* Language switcher */
.lang-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 24px;
}

.lang-btn {
    background: none;
    border: 1px solid #d0d4ff;
    border-radius: 6px;
    color: #aaa;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.lang-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

/* Games section */
.games-section h2 {
    margin-bottom: 24px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

.game-card {
    background: #f8f9ff;
    border: 1px solid #e8eaff;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.game-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
}

.game-card h3 {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.game-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.play-button {
    display: block;
    margin-top: 6px;
}

.play-badge {
    height: 40px;
    width: auto;
}

@media (max-width: 600px) {
    .container {
        padding: 40px 25px;
    }

    h1 {
        font-size: 26px;
    }

    .avatar {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .bio {
        font-size: 15px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}
